vumichien commited on
Commit
dbf451c
1 Parent(s): 3fd34f0

Add application file

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitignore +139 -0
  2. LICENSE +21 -0
  3. Procfile +1 -0
  4. Test_set/1003_1147_BAEq.jpg +0 -0
  5. Test_set/10041_15298_OsGv.jpg +0 -0
  6. Test_set/100_50_GefY.jpg +0 -0
  7. Test_set/10112_15456_HaMe.jpg +0 -0
  8. Test_set/10162_15574_lHow.jpg +0 -0
  9. Test_set/101_49_BpAa.jpg +0 -0
  10. Test_set/10265_15798_7juP.jpg +0 -0
  11. Test_set/1026_1169_u8rG.jpg +0 -0
  12. Test_set/10289_15861_uwzz.jpg +0 -0
  13. Test_set/1028_1174_2u5n.jpg +0 -0
  14. Test_set/10413_16169_MGVt.jpg +0 -0
  15. Test_set/1041_1191_5INo.jpg +0 -0
  16. Test_set/1042_1193_lBMj.jpg +0 -0
  17. Test_set/10441_16243_JhzR.jpg +0 -0
  18. Test_set/10450_16268_ojWA.jpg +0 -0
  19. Test_set/10463_16294_dnZE.jpg +0 -0
  20. Test_set/104_62_2ihR.jpg +0 -0
  21. Test_set/10547_16476_lWv1.jpg +0 -0
  22. Test_set/105_63_Ju85.jpg +0 -0
  23. Test_set/10656_16745_wtvM.jpg +0 -0
  24. Test_set/10676_16795_DGLU.jpg +0 -0
  25. Test_set/10677_16798_5Sia.jpg +0 -0
  26. Test_set/1068_1219_YeER.jpg +0 -0
  27. Test_set/1070_1222_p45F.jpg +0 -0
  28. Test_set/10715_16893_H7XO.jpg +0 -0
  29. Test_set/1071_1223_EO3m.jpg +0 -0
  30. Test_set/1074_1224_2CpV.jpg +0 -0
  31. Test_set/1078_1229_e6zM.jpg +0 -0
  32. Test_set/1079_1230_HeoH.jpg +0 -0
  33. Test_set/107_64_YjxR.jpg +0 -0
  34. Test_set/1082_1233_cwpv.jpg +0 -0
  35. Test_set/10835_17167_9mp4.jpg +0 -0
  36. Test_set/108_67_pg8J.jpg +0 -0
  37. Test_set/1098_1261_rzgY.jpg +0 -0
  38. Test_set/1102_1267_xE88.jpg +0 -0
  39. Test_set/11092_17665_8yJ4.jpg +0 -0
  40. Test_set/11168_17806_X0Tn.jpg +0 -0
  41. Test_set/1118_1288_gEHl.jpg +0 -0
  42. Test_set/111_68_gITt.jpg +0 -0
  43. Test_set/11219_17904_BZbd.jpg +0 -0
  44. Test_set/11256_17979_suGV.jpg +0 -0
  45. Test_set/1125_1298_YzrU.jpg +0 -0
  46. Test_set/1126_1299_jLJf.jpg +0 -0
  47. Test_set/11282_18032_7auS.jpg +0 -0
  48. Test_set/112_69_nmUK.jpg +0 -0
  49. Test_set/1135_1312_niUe.jpg +0 -0
  50. Test_set/11468_18377_S7h3.jpg +0 -0
.gitignore ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
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
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+ .ipynb
81
+
82
+ # IPython
83
+ profile_default/
84
+ ipython_config.py
85
+
86
+ # pyenv
87
+ # For a library or package, you might want to ignore these files since the code is
88
+ # intended to run in multiple environments; otherwise, check them in:
89
+ # .python-version
90
+
91
+ # pipenv
92
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
93
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
94
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
95
+ # install all needed dependencies.
96
+ #Pipfile.lock
97
+
98
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
99
+ __pypackages__/
100
+
101
+ # Celery stuff
102
+ celerybeat-schedule
103
+ celerybeat.pid
104
+
105
+ # SageMath parsed files
106
+ *.sage.py
107
+
108
+ # Environments
109
+ .env
110
+ .venv
111
+ env/
112
+ venv/
113
+ ENV/
114
+ env.bak/
115
+ venv.bak/
116
+
117
+ # Spyder project settings
118
+ .spyderproject
119
+ .spyproject
120
+
121
+ # Rope project settings
122
+ .ropeproject
123
+
124
+ # mkdocs documentation
125
+ /site
126
+
127
+ # mypy
128
+ .mypy_cache/
129
+ .dmypy.json
130
+ dmypy.json
131
+
132
+ # Pyre type checker
133
+ .pyre/
134
+
135
+ # pytype static type analyzer
136
+ .pytype/
137
+
138
+ # Cython debug symbols
139
+ cython_debug/
LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2021 vumichien
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
Procfile ADDED
@@ -0,0 +1 @@
 
1
+ web: sh setup.sh && streamlit run streamlit_app.py
Test_set/1003_1147_BAEq.jpg ADDED
Test_set/10041_15298_OsGv.jpg ADDED
Test_set/100_50_GefY.jpg ADDED
Test_set/10112_15456_HaMe.jpg ADDED
Test_set/10162_15574_lHow.jpg ADDED
Test_set/101_49_BpAa.jpg ADDED
Test_set/10265_15798_7juP.jpg ADDED
Test_set/1026_1169_u8rG.jpg ADDED
Test_set/10289_15861_uwzz.jpg ADDED
Test_set/1028_1174_2u5n.jpg ADDED
Test_set/10413_16169_MGVt.jpg ADDED
Test_set/1041_1191_5INo.jpg ADDED
Test_set/1042_1193_lBMj.jpg ADDED
Test_set/10441_16243_JhzR.jpg ADDED
Test_set/10450_16268_ojWA.jpg ADDED
Test_set/10463_16294_dnZE.jpg ADDED
Test_set/104_62_2ihR.jpg ADDED
Test_set/10547_16476_lWv1.jpg ADDED
Test_set/105_63_Ju85.jpg ADDED
Test_set/10656_16745_wtvM.jpg ADDED
Test_set/10676_16795_DGLU.jpg ADDED
Test_set/10677_16798_5Sia.jpg ADDED
Test_set/1068_1219_YeER.jpg ADDED
Test_set/1070_1222_p45F.jpg ADDED
Test_set/10715_16893_H7XO.jpg ADDED
Test_set/1071_1223_EO3m.jpg ADDED
Test_set/1074_1224_2CpV.jpg ADDED
Test_set/1078_1229_e6zM.jpg ADDED
Test_set/1079_1230_HeoH.jpg ADDED
Test_set/107_64_YjxR.jpg ADDED
Test_set/1082_1233_cwpv.jpg ADDED
Test_set/10835_17167_9mp4.jpg ADDED
Test_set/108_67_pg8J.jpg ADDED
Test_set/1098_1261_rzgY.jpg ADDED
Test_set/1102_1267_xE88.jpg ADDED
Test_set/11092_17665_8yJ4.jpg ADDED
Test_set/11168_17806_X0Tn.jpg ADDED
Test_set/1118_1288_gEHl.jpg ADDED
Test_set/111_68_gITt.jpg ADDED
Test_set/11219_17904_BZbd.jpg ADDED
Test_set/11256_17979_suGV.jpg ADDED
Test_set/1125_1298_YzrU.jpg ADDED
Test_set/1126_1299_jLJf.jpg ADDED
Test_set/11282_18032_7auS.jpg ADDED
Test_set/112_69_nmUK.jpg ADDED
Test_set/1135_1312_niUe.jpg ADDED
Test_set/11468_18377_S7h3.jpg ADDED