AndyZijianZhang commited on
Commit
9b1a89e
·
1 Parent(s): ef8fa9c

chore: update .gitattributes

Browse files
Files changed (1) hide show
  1. .gitattributes +135 -34
.gitattributes CHANGED
@@ -1,35 +1,136 @@
1
- *.7z filter=lfs diff=lfs merge=lfs -text
2
- *.arrow filter=lfs diff=lfs merge=lfs -text
3
- *.bin filter=lfs diff=lfs merge=lfs -text
4
- *.bz2 filter=lfs diff=lfs merge=lfs -text
5
- *.ckpt filter=lfs diff=lfs merge=lfs -text
6
- *.ftz filter=lfs diff=lfs merge=lfs -text
7
- *.gz filter=lfs diff=lfs merge=lfs -text
8
- *.h5 filter=lfs diff=lfs merge=lfs -text
9
- *.joblib filter=lfs diff=lfs merge=lfs -text
10
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
- *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
- *.model filter=lfs diff=lfs merge=lfs -text
13
- *.msgpack filter=lfs diff=lfs merge=lfs -text
14
- *.npy filter=lfs diff=lfs merge=lfs -text
15
- *.npz filter=lfs diff=lfs merge=lfs -text
16
- *.onnx filter=lfs diff=lfs merge=lfs -text
17
- *.ot filter=lfs diff=lfs merge=lfs -text
18
- *.parquet filter=lfs diff=lfs merge=lfs -text
19
- *.pb filter=lfs diff=lfs merge=lfs -text
20
- *.pickle filter=lfs diff=lfs merge=lfs -text
21
- *.pkl filter=lfs diff=lfs merge=lfs -text
22
- *.pt filter=lfs diff=lfs merge=lfs -text
23
- *.pth filter=lfs diff=lfs merge=lfs -text
24
- *.rar filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  *.safetensors filter=lfs diff=lfs merge=lfs -text
26
- saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
- *.tar.* filter=lfs diff=lfs merge=lfs -text
28
- *.tar filter=lfs diff=lfs merge=lfs -text
29
- *.tflite filter=lfs diff=lfs merge=lfs -text
30
- *.tgz filter=lfs diff=lfs merge=lfs -text
31
- *.wasm filter=lfs diff=lfs merge=lfs -text
32
- *.xz filter=lfs diff=lfs merge=lfs -text
33
- *.zip filter=lfs diff=lfs merge=lfs -text
34
- *.zst filter=lfs diff=lfs merge=lfs -text
35
- *tfevents* filter=lfs diff=lfs merge=lfs -text
 
1
+ # Common settings that generally should always be used with your language specific settings
2
+
3
+ # Auto detect text files and perform LF normalization
4
+ * text=auto
5
+
6
+ #
7
+ # The above will handle all files NOT found below
8
+ #
9
+
10
+ # Documents
11
+ *.bibtex text diff=bibtex
12
+ *.doc diff=astextplain
13
+ *.DOC diff=astextplain
14
+ *.docx diff=astextplain
15
+ *.DOCX diff=astextplain
16
+ *.dot diff=astextplain
17
+ *.DOT diff=astextplain
18
+ *.pdf diff=astextplain
19
+ *.PDF diff=astextplain
20
+ *.rtf diff=astextplain
21
+ *.RTF diff=astextplain
22
+ *.md text diff=markdown
23
+ *.mdx text diff=markdown
24
+ *.tex text diff=tex
25
+ *.adoc text
26
+ *.textile text
27
+ *.mustache text
28
+ *.csv text eol=crlf
29
+ *.tab text
30
+ *.tsv text
31
+ *.txt text
32
+ *.sql text
33
+ *.epub diff=astextplain
34
+
35
+ # Graphics
36
+ *.png binary
37
+ *.jpg binary
38
+ *.jpeg binary
39
+ *.gif binary
40
+ *.tif binary
41
+ *.tiff binary
42
+ *.ico binary
43
+ # SVG treated as text by default.
44
+ *.svg text
45
+ # If you want to treat it as binary,
46
+ # use the following line instead.
47
+ # *.svg binary
48
+ *.eps binary
49
+
50
+ # Scripts
51
+ *.bash text eol=lf
52
+ *.fish text eol=lf
53
+ *.ksh text eol=lf
54
+ *.sh text eol=lf
55
+ *.zsh text eol=lf
56
+ # These are explicitly windows files and should use crlf
57
+ *.bat text eol=crlf
58
+ *.cmd text eol=crlf
59
+ *.ps1 text eol=crlf
60
+
61
+ # Serialisation
62
+ *.json text
63
+ *.toml text
64
+ *.xml text
65
+ *.yaml text
66
+ *.yml text
67
+
68
+ # Archives
69
+ *.7z binary
70
+ *.bz binary
71
+ *.bz2 binary
72
+ *.bzip2 binary
73
+ *.gz binary
74
+ *.lz binary
75
+ *.lzma binary
76
+ *.rar binary
77
+ *.tar binary
78
+ *.taz binary
79
+ *.tbz binary
80
+ *.tbz2 binary
81
+ *.tgz binary
82
+ *.tlz binary
83
+ *.txz binary
84
+ *.xz binary
85
+ *.Z binary
86
+ *.zip binary
87
+ *.zst binary
88
+
89
+ # Text files where line endings should be preserved
90
+ *.patch -text
91
+
92
+ #
93
+ # Exclude files from exporting
94
+ #
95
+
96
+ .gitattributes export-ignore
97
+ .gitignore export-ignore
98
+ .gitkeep export-ignore
99
+
100
+
101
+
102
+ # Basic .gitattributes for a python repo.
103
+
104
+ # Source files
105
+ # ============
106
+ *.pxd text diff=python
107
+ *.py text diff=python
108
+ *.py3 text diff=python
109
+ *.pyw text diff=python
110
+ *.pyx text diff=python
111
+ *.pyz text diff=python
112
+ *.pyi text diff=python
113
+
114
+ # Binary files
115
+ # ============
116
+ *.db binary
117
+ *.p binary
118
+ *.pkl binary
119
+ *.pickle binary
120
+ *.pyc binary export-ignore
121
+ *.pyo binary export-ignore
122
+ *.pyd binary
123
+
124
+ # Jupyter notebook
125
+ *.ipynb text eol=lf
126
+
127
+ # Note: .db, .p, and .pkl files are associated
128
+ # with the python modules ``pickle``, ``dbm.*``,
129
+ # ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
130
+ # (among others).
131
+
132
+
133
+
134
  *.safetensors filter=lfs diff=lfs merge=lfs -text
135
+ llm/tokenizer.json filter=lfs diff=lfs merge=lfs -text
136
+ llm/vocab.json filter=lfs diff=lfs merge=lfs -text