Spaces:
Sleeping
Sleeping
Upload .gitignore
Browse files- .gitignore +15 -0
.gitignore
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Ignore personal vscode setting files
|
2 |
+
.vscode/*
|
3 |
+
# Ignore weight files because they are too large
|
4 |
+
weights/*
|
5 |
+
# Ignore gradio generated flag files
|
6 |
+
flagged/*
|
7 |
+
# Ignore runs from training / detecting
|
8 |
+
runs/*
|
9 |
+
ultralytics/*
|
10 |
+
# Ignore wandb files
|
11 |
+
wandb/*
|
12 |
+
|
13 |
+
# Other ignores
|
14 |
+
**/__pycache__/
|
15 |
+
Images/*
|