Spaces:
Sleeping
Sleeping
render deploy commit
Browse files- .gitignore +4 -4
- Procfile +1 -0
- requirements.txt +2 -1
.gitignore
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
*.
|
4 |
-
|
|
|
1 |
+
*.pyc
|
2 |
+
__pycache__/
|
3 |
+
*.keras
|
4 |
+
.env
|
Procfile
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
web: gunicorn app:app
|
requirements.txt
CHANGED
@@ -2,4 +2,5 @@ flask==3.1.0
|
|
2 |
tensorflow==2.12.0
|
3 |
Pillow==10.2.0
|
4 |
numpy==1.23.5
|
5 |
-
keras
|
|
|
|
2 |
tensorflow==2.12.0
|
3 |
Pillow==10.2.0
|
4 |
numpy==1.23.5
|
5 |
+
keras
|
6 |
+
gunicorn
|