Update .gitattributes
Browse files- .gitattributes +14 -0
.gitattributes
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Track large model files with Git LFS
|
| 2 |
+
*.pth filter=lfs diff=lfs merge=lfs
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs
|
| 4 |
+
*.h5 filter=lfs diff=lfs merge=lfs
|
| 5 |
+
*.keras filter=lfs diff=lfs merge=lfs
|
| 6 |
+
|
| 7 |
+
# Ensure config and metadata files are treated as text
|
| 8 |
+
config.json text eol=lf
|
| 9 |
+
README.md text eol=lf
|
| 10 |
+
*.yaml text eol=lf
|
| 11 |
+
|
| 12 |
+
# Ignore unnecessary files
|
| 13 |
+
*.log linguist-vendored
|
| 14 |
+
*.tmp linguist-vendored
|