Spaces:
Runtime error
Runtime error
Upload .gitignore
Browse files- .gitignore +13 -0
.gitignore
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Python cache files
|
2 |
+
__pycache__/
|
3 |
+
*.pyc
|
4 |
+
|
5 |
+
# Environment variables
|
6 |
+
.env
|
7 |
+
|
8 |
+
# Model files (if you don't want to include them)
|
9 |
+
*.tflite
|
10 |
+
*.dat
|
11 |
+
|
12 |
+
# Other unnecessary files
|
13 |
+
*.log
|