Spaces:
Running
Running
Update .gitignore
Browse files- .gitignore +9 -4
.gitignore
CHANGED
|
@@ -44,11 +44,12 @@ logs/
|
|
| 44 |
Thumbs.db
|
| 45 |
|
| 46 |
# Project specific
|
| 47 |
-
data
|
| 48 |
-
!data/.gitkeep
|
| 49 |
|
| 50 |
-
# Streamlit secrets
|
| 51 |
.streamlit/secrets.toml
|
|
|
|
|
|
|
| 52 |
|
| 53 |
# Jupyter Notebook
|
| 54 |
.ipynb_checkpoints
|
|
@@ -88,4 +89,8 @@ saved_model/**/*
|
|
| 88 |
*.xz
|
| 89 |
*.zip
|
| 90 |
*.zst
|
| 91 |
-
*tfevents*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
Thumbs.db
|
| 45 |
|
| 46 |
# Project specific
|
| 47 |
+
# No data folder
|
|
|
|
| 48 |
|
| 49 |
+
# Streamlit secrets - ignore the actual secrets file
|
| 50 |
.streamlit/secrets.toml
|
| 51 |
+
# Track the example file
|
| 52 |
+
!.streamlit/secrets.toml.example
|
| 53 |
|
| 54 |
# Jupyter Notebook
|
| 55 |
.ipynb_checkpoints
|
|
|
|
| 89 |
*.xz
|
| 90 |
*.zip
|
| 91 |
*.zst
|
| 92 |
+
*tfevents*
|
| 93 |
+
|
| 94 |
+
# Create results directory for performance evaluation outputs
|
| 95 |
+
results/*
|
| 96 |
+
!results/.gitkeep
|