Spaces:
Running
Running
File size: 762 Bytes
38fb4a1 076a83d e1645d7 38fb4a1 076a83d 38fb4a1 076a83d e1645d7 38fb4a1 076a83d e1645d7 5ae1418 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# Auto detect text files and perform LF normalization
# https://pablorsk.medium.com/be-a-git-ninja-the-gitattributes-file-e58c07c9e915
* text=auto
# Hide from GitHub's language detection
*.yaml linguist-documentation
*.toml linguist-documentation
*.json linguist-documentation
# Remove assets from github statistics
*.yaml linguist-vendored
*.toml linguist-vendored
# Set the language for these files to ensure GitHub doesn't show the comments as errors
.vscode/*.json linguist-language=JSON5
data/* binary
# Do not try and merge these files
poetry.lock -diff
*.pkl -diff
# LFS
models/** filter=lfs diff=lfs merge=lfs -text
|