Datasets:
ArXiv:
License:
Upload .gitignore with huggingface_hub
Browse files- .gitignore +39 -0
.gitignore
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Python
|
2 |
+
__pycache__/
|
3 |
+
*.py[cod]
|
4 |
+
*$py.class
|
5 |
+
*.so
|
6 |
+
.Python
|
7 |
+
env/
|
8 |
+
venv/
|
9 |
+
ENV/
|
10 |
+
.venv/
|
11 |
+
.env
|
12 |
+
|
13 |
+
# IDE
|
14 |
+
.vscode/
|
15 |
+
.idea/
|
16 |
+
*.swp
|
17 |
+
*.swo
|
18 |
+
*~
|
19 |
+
|
20 |
+
# OS
|
21 |
+
.DS_Store
|
22 |
+
.DS_Store?
|
23 |
+
._*
|
24 |
+
.Spotlight-V100
|
25 |
+
.Trashes
|
26 |
+
ehthumbs.db
|
27 |
+
Thumbs.db
|
28 |
+
|
29 |
+
# Logs
|
30 |
+
*.log
|
31 |
+
|
32 |
+
# Temporary files
|
33 |
+
*.tmp
|
34 |
+
*.temp
|
35 |
+
.cache/
|
36 |
+
|
37 |
+
# Large data files (optional - uncomment if you want to exclude large datasets)
|
38 |
+
# *.json
|
39 |
+
# Website/mcpso_*_cleaned.json
|