We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b129a8 commit 264dea1Copy full SHA for 264dea1
2 files changed
.gitignore
@@ -0,0 +1,66 @@
1
+# Python
2
+__pycache__/
3
+*.py[cod]
4
+*.pyo
5
+*.pyd
6
+
7
+# Virtual environments
8
+.venv/
9
+venv/
10
+env/
11
+.env/
12
13
+# Conda
14
+.conda/
15
16
+# Jupyter
17
+.ipynb_checkpoints/
18
19
+# Build / packaging
20
+build/
21
+dist/
22
+*.egg-info/
23
24
+# Logs
25
+*.log
26
27
+# IDE
28
+.vscode/
29
+.idea/
30
31
+# OS files
32
+.DS_Store
33
+Thumbs.db
34
35
+# Data files
36
+data/*
37
+!data/README.md
38
+!data/.gitkeep
39
40
+# Model files
41
+models/*
42
+!models/README.md
43
+!models/.gitkeep
44
45
+# Database / exported metadata
46
+db/*
47
+!db/README.md
48
+!db/.gitkeep
49
50
+# Common large ML / model artifacts
51
+*.pth
52
+*.pt
53
+*.ckpt
54
+*.onnx
55
+*.bin
56
+*.safetensors
57
+*.sqlite
58
+*.db
59
+*.csv
60
+*.tsv
61
+*.parquet
62
+*.npy
63
+*.npz
64
+*.h5
65
+*.hdf5
66
.vscode/settings.json
0 commit comments