Spaces:
Sleeping
Sleeping
Add .gitignore file
Browse files- .gitattributes +1 -0
- .gitignore +54 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
plantvillage_model.keras filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
# Byte-compiled / optimized / DLL files
|
| 3 |
+
__pycache__/
|
| 4 |
+
*.py[cod]
|
| 5 |
+
*$py.class
|
| 6 |
+
|
| 7 |
+
# VS Code settings folder
|
| 8 |
+
.vscode/
|
| 9 |
+
|
| 10 |
+
# Jupyter Notebook checkpoints
|
| 11 |
+
.ipynb_checkpoints/
|
| 12 |
+
|
| 13 |
+
# Python virtual environment folders
|
| 14 |
+
venv/
|
| 15 |
+
env/
|
| 16 |
+
ENV/
|
| 17 |
+
|
| 18 |
+
# Distribution / packaging
|
| 19 |
+
build/
|
| 20 |
+
dist/
|
| 21 |
+
*.egg-info/
|
| 22 |
+
.eggs/
|
| 23 |
+
|
| 24 |
+
# Logs and databases
|
| 25 |
+
*.log
|
| 26 |
+
*.sqlite3
|
| 27 |
+
|
| 28 |
+
# Pytest cache
|
| 29 |
+
.pytest_cache/
|
| 30 |
+
|
| 31 |
+
# Coverage reports
|
| 32 |
+
.coverage
|
| 33 |
+
htmlcov/
|
| 34 |
+
|
| 35 |
+
# Model files (if you want to ignore large files, otherwise track your final models)
|
| 36 |
+
*.h5
|
| 37 |
+
*.keras
|
| 38 |
+
*.pt
|
| 39 |
+
*.pth
|
| 40 |
+
|
| 41 |
+
# MacOS system files
|
| 42 |
+
.DS_Store
|
| 43 |
+
|
| 44 |
+
# Ignore environment files with secrets or API keys
|
| 45 |
+
.env
|
| 46 |
+
*.env
|
| 47 |
+
|
| 48 |
+
# Ignore Hugging Face cache and checkpoints if any
|
| 49 |
+
.cache/
|
| 50 |
+
checkpoints/
|
| 51 |
+
|
| 52 |
+
# Ignore large datasets or generated data folders
|
| 53 |
+
data/
|
| 54 |
+
datasets/
|