Commit
·
452bc23
1
Parent(s):
4d91521
init
Browse files- .gitattributes +56 -35
- .gitignore +1 -0
.gitattributes
CHANGED
@@ -1,35 +1,56 @@
|
|
1 |
-
*.7z
|
2 |
-
*.arrow
|
3 |
-
*.bin
|
4 |
-
*.bz2
|
5 |
-
*.ckpt
|
6 |
-
*.ftz
|
7 |
-
*.gz
|
8 |
-
*.h5
|
9 |
-
*.joblib
|
10 |
-
*.lfs.*
|
11 |
-
*.
|
12 |
-
*.
|
13 |
-
*.
|
14 |
-
*.
|
15 |
-
*.
|
16 |
-
*.
|
17 |
-
*.
|
18 |
-
*.
|
19 |
-
*.
|
20 |
-
*.
|
21 |
-
*.
|
22 |
-
*.
|
23 |
-
*.
|
24 |
-
*.
|
25 |
-
*.
|
26 |
-
|
27 |
-
|
28 |
-
*.tar
|
29 |
-
*.
|
30 |
-
*.
|
31 |
-
*.
|
32 |
-
*.
|
33 |
-
*.
|
34 |
-
*.
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
*.7z -text
|
2 |
+
*.arrow -text
|
3 |
+
*.bin -text
|
4 |
+
*.bz2 -text
|
5 |
+
*.ckpt -text
|
6 |
+
*.ftz -text
|
7 |
+
*.gz -text
|
8 |
+
*.h5 -text
|
9 |
+
*.joblib -text
|
10 |
+
*.lfs.* -text
|
11 |
+
*.lz4 -text
|
12 |
+
*.mlmodel -text
|
13 |
+
*.model -text
|
14 |
+
*.msgpack -text
|
15 |
+
*.npy -text
|
16 |
+
*.npz -text
|
17 |
+
*.onnx -text
|
18 |
+
*.ot -text
|
19 |
+
*.parquet -text
|
20 |
+
*.pb -text
|
21 |
+
*.pickle -text
|
22 |
+
*.pkl -text
|
23 |
+
*.pt -text
|
24 |
+
*.pth -text
|
25 |
+
*.rar -text
|
26 |
+
*.safetensors -text
|
27 |
+
saved_model/**/* -text
|
28 |
+
*.tar.* -text
|
29 |
+
*.tar -text
|
30 |
+
*.tflite -text
|
31 |
+
*.tgz -text
|
32 |
+
*.wasm -text
|
33 |
+
*.xz -text
|
34 |
+
*.zip -text
|
35 |
+
*.zst -text
|
36 |
+
*tfevents* -text
|
37 |
+
# Audio files - uncompressed
|
38 |
+
*.pcm -text
|
39 |
+
*.sam -text
|
40 |
+
*.raw -text
|
41 |
+
# Audio files - compressed
|
42 |
+
*.aac -text
|
43 |
+
*.flac -text
|
44 |
+
*.mp3 -text
|
45 |
+
*.ogg -text
|
46 |
+
*.wav -text
|
47 |
+
# Image files - uncompressed
|
48 |
+
*.bmp -text
|
49 |
+
*.gif -text
|
50 |
+
*.png -text
|
51 |
+
*.tiff -text
|
52 |
+
# Image files - compressed
|
53 |
+
*.jpg -text
|
54 |
+
*.jpeg -text
|
55 |
+
*.webp -text
|
56 |
+
embeddings/sdxlVAE_sdxlVAE.safetensors filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
/venv
|