Spaces:
Running
Running
Ignore some files
Browse files- .gitignore +5 -1
- app.py +1 -1
.gitignore
CHANGED
@@ -2,4 +2,8 @@ venv/
|
|
2 |
*.jpg
|
3 |
*.jpeg
|
4 |
*.png
|
5 |
-
flagged/
|
|
|
|
|
|
|
|
|
|
2 |
*.jpg
|
3 |
*.jpeg
|
4 |
*.png
|
5 |
+
flagged/
|
6 |
+
*.DS_Store
|
7 |
+
*__pycache__/
|
8 |
+
*.vs/
|
9 |
+
*.idea/
|
app.py
CHANGED
@@ -42,7 +42,7 @@ def main():
|
|
42 |
labels = load_label_data()
|
43 |
examples=[
|
44 |
['https://github.com/andreped/INF1600-ai-workshop/releases/download/Examples/cat.jpg'],
|
45 |
-
['https://github.com/andreped/INF1600-ai-workshop/releases/download/Examples/dog.jpeg']
|
46 |
]
|
47 |
|
48 |
# define UI
|
|
|
42 |
labels = load_label_data()
|
43 |
examples=[
|
44 |
['https://github.com/andreped/INF1600-ai-workshop/releases/download/Examples/cat.jpg'],
|
45 |
+
['https://github.com/andreped/INF1600-ai-workshop/releases/download/Examples/dog.jpeg'],
|
46 |
]
|
47 |
|
48 |
# define UI
|