Spaces:
Running
Running
Update .gitattributes
Browse files- .gitattributes +21 -1
.gitattributes
CHANGED
@@ -1,3 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
@@ -32,4 +52,4 @@ saved_model/**/* 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 |
+
# Auto detect text files and perform LF normalization
|
2 |
+
* text=auto
|
3 |
+
|
4 |
+
# Explicitly declare text files to normalize LF
|
5 |
+
*.py text
|
6 |
+
*.md text
|
7 |
+
*.json text
|
8 |
+
*.txt text
|
9 |
+
*.html text
|
10 |
+
*.css text
|
11 |
+
*.js text
|
12 |
+
|
13 |
+
# Binary files
|
14 |
+
*.png binary
|
15 |
+
*.jpg binary
|
16 |
+
*.jpeg binary
|
17 |
+
*.gif binary
|
18 |
+
*.ico binary
|
19 |
+
|
20 |
+
# LFS tracked files
|
21 |
*.7z filter=lfs diff=lfs merge=lfs -text
|
22 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
23 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
|
|
52 |
*.xz filter=lfs diff=lfs merge=lfs -text
|
53 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
54 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
55 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|