Pawel_Mar commited on
Commit
adeeee1
1 Parent(s): d2ea47e

push model + required files

Browse files
.gitignore ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Created by .ignore support plugin (hsz.mobi)
2
+ ### Python template
3
+ # Byte-compiled / optimized / DLL files
4
+ __pycache__/
5
+ *.py[cod]
6
+ *$py.class
7
+
8
+ # C extensions
9
+ *.so
10
+
11
+ # Distribution / packaging
12
+ .Python
13
+ env/
14
+ build/
15
+ develop-eggs/
16
+ dist/
17
+ downloads/
18
+ eggs/
19
+ .eggs/
20
+ lib/
21
+ lib64/
22
+ parts/
23
+ sdist/
24
+ var/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .coverage
43
+ .coverage.*
44
+ .cache
45
+ nosetests.xml
46
+ coverage.xml
47
+ *,cover
48
+ .hypothesis/
49
+
50
+ # Translations
51
+ *.mo
52
+ *.pot
53
+
54
+ # Django stuff:
55
+ *.log
56
+ local_settings.py
57
+
58
+ # Flask stuff:
59
+ instance/
60
+ .webassets-cache
61
+
62
+ # Scrapy stuff:
63
+ .scrapy
64
+
65
+ # Sphinx documentation
66
+ docs/_build/
67
+
68
+ # PyBuilder
69
+ target/
70
+
71
+ # IPython Notebook
72
+ .ipynb_checkpoints
73
+
74
+ # pyenv
75
+ .python-version
76
+
77
+ # celery beat schedule file
78
+ celerybeat-schedule
79
+
80
+ # dotenv
81
+ .env
82
+
83
+ # virtualenv
84
+ venv/
85
+ ENV/
86
+
87
+ # Spyder project settings
88
+ .spyderproject
89
+
90
+ # Rope project settings
91
+ .ropeproject
92
+ ### VirtualEnv template
93
+ # Virtualenv
94
+ # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
95
+ [Bb]in
96
+ [Ii]nclude
97
+ [Ll]ib
98
+ [Ll]ib64
99
+ [Ll]ocal
100
+ [Ss]cripts
101
+ pyvenv.cfg
102
+ .venv
103
+ pip-selfcheck.json
104
+
105
+ ### JetBrains template
106
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
107
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
108
+
109
+ # User-specific stuff
110
+ .idea/**/workspace.xml
111
+ .idea/**/tasks.xml
112
+ .idea/**/usage.statistics.xml
113
+ .idea/**/dictionaries
114
+ .idea/**/shelf
115
+
116
+ # AWS User-specific
117
+ .idea/**/aws.xml
118
+
119
+ # Generated files
120
+ .idea/**/contentModel.xml
121
+
122
+ # Sensitive or high-churn files
123
+ .idea/**/dataSources/
124
+ .idea/**/dataSources.ids
125
+ .idea/**/dataSources.local.xml
126
+ .idea/**/sqlDataSources.xml
127
+ .idea/**/dynamic.xml
128
+ .idea/**/uiDesigner.xml
129
+ .idea/**/dbnavigator.xml
130
+
131
+ # Gradle
132
+ .idea/**/gradle.xml
133
+ .idea/**/libraries
134
+
135
+ # Gradle and Maven with auto-import
136
+ # When using Gradle or Maven with auto-import, you should exclude module files,
137
+ # since they will be recreated, and may cause churn. Uncomment if using
138
+ # auto-import.
139
+ # .idea/artifacts
140
+ # .idea/compiler.xml
141
+ # .idea/jarRepositories.xml
142
+ # .idea/modules.xml
143
+ # .idea/*.iml
144
+ # .idea/modules
145
+ # *.iml
146
+ # *.ipr
147
+
148
+ # CMake
149
+ cmake-build-*/
150
+
151
+ # Mongo Explorer plugin
152
+ .idea/**/mongoSettings.xml
153
+
154
+ # File-based project format
155
+ *.iws
156
+
157
+ # IntelliJ
158
+ out/
159
+
160
+ # mpeltonen/sbt-idea plugin
161
+ .idea_modules/
162
+
163
+ # JIRA plugin
164
+ atlassian-ide-plugin.xml
165
+
166
+ # Cursive Clojure plugin
167
+ .idea/replstate.xml
168
+
169
+ # SonarLint plugin
170
+ .idea/sonarlint/
171
+
172
+ # Crashlytics plugin (for Android Studio and IntelliJ)
173
+ com_crashlytics_export_strings.xml
174
+ crashlytics.properties
175
+ crashlytics-build.properties
176
+ fabric.properties
177
+
178
+ # Editor-based Rest Client
179
+ .idea/httpRequests
180
+
181
+ # Android studio 3.1+ serialized cache file
182
+ .idea/caches/build_file_checksums.ser
183
+
184
+ # idea folder, uncomment if you don't need it
185
+ .idea
186
+
187
+ venv
188
+ media-directory/uploaded_image.jpg
media-directory/example_input.png ADDED
models/last.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3bea9cd7f43cd20542054bfbfabe859f9bed3cfebe0aefe1aac69a8c21ebb60
3
+ size 6780963
requirements.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ opencv-python-headless
2
+ pandas
3
+ ultralytics
4
+ Pillow