We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84d8fae commit 4b39c9cCopy full SHA for 4b39c9c
.gitignore
@@ -0,0 +1,46 @@
1
+# Python virtual environments
2
+venv/
3
+env/
4
+.env/
5
+.venv/
6
+ENV/
7
+
8
+# PyTorch model files
9
+*.pt
10
+*.pth
11
+*.ckpt
12
13
+# Python cache
14
+__pycache__/
15
+*.py[cod]
16
+*$py.class
17
18
+# Distribution / packaging
19
+dist/
20
+build/
21
+*.egg-info/
22
23
+# IDE settings
24
+.vscode/
25
+.idea/
26
+*.swp
27
+*.swo
28
29
+# Jupyter Notebook
30
+.ipynb_checkpoints
31
32
+# Local development settings
33
+.env
34
+.env.local
35
36
+# Logs
37
+*.log
38
+logs/
39
40
+# Test coverage
41
+.coverage
42
+htmlcov/
43
44
+# System files
45
+.DS_Store
46
+Thumbs.db
0 commit comments