Trouter-Library commited on
Commit
3feb967
·
verified ·
1 Parent(s): e7778df

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +110 -0
.gitignore ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+ MANIFEST
23
+
24
+ # PyTorch
25
+ *.pth
26
+ *.pt
27
+ *.ckpt
28
+
29
+ # Virtual environments
30
+ venv/
31
+ ENV/
32
+ env/
33
+ .venv
34
+
35
+ # IDEs
36
+ .vscode/
37
+ .idea/
38
+ *.swp
39
+ *.swo
40
+ *~
41
+ .DS_Store
42
+
43
+ # Jupyter Notebook
44
+ .ipynb_checkpoints
45
+ *.ipynb
46
+
47
+ # Model files (too large for git)
48
+ *.safetensors
49
+ *.bin
50
+ *.h5
51
+ *.onnx
52
+
53
+ # Logs
54
+ logs/
55
+ *.log
56
+ wandb/
57
+ tensorboard/
58
+ *.tfevents*
59
+
60
+ # Evaluation results
61
+ evaluation_results/
62
+ benchmark_results/
63
+ outputs/
64
+
65
+ # Cache
66
+ .cache/
67
+ cache/
68
+ __pycache__/
69
+ *.pyc
70
+
71
+ # Hugging Face
72
+ .huggingface/
73
+ hf_cache/
74
+
75
+ # Offload
76
+ offload/
77
+
78
+ # Testing
79
+ .pytest_cache/
80
+ .coverage
81
+ htmlcov/
82
+
83
+ # Temporary files
84
+ tmp/
85
+ temp/
86
+ *.tmp
87
+
88
+ # Compiled files
89
+ *.o
90
+ *.a
91
+ *.lib
92
+ *.dll
93
+ *.exe
94
+
95
+ # Documentation builds
96
+ docs/_build/
97
+ site/
98
+
99
+ # Environment variables
100
+ .env
101
+ .env.local
102
+
103
+ # Large files
104
+ *.tar
105
+ *.tar.gz
106
+ *.zip
107
+ *.7z
108
+
109
+ # Safetensors shards (handled separately)
110
+ # model-*.safetensors