cyber-meow
commited on
Commit
•
48d1312
1
Parent(s):
ee3495c
quality metric evaluation
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- datasets/modify_npz.py +40 -0
- datasets/ref_features/.gitattributes +0 -1
- datasets/ref_features/anime/abukuma/none/image-features.npz +2 -2
- datasets/ref_features/anime/abukuma/none/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/anime/abukuma/none/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/anime/abukuma/onex outfit/image-features.npz +2 -2
- datasets/ref_features/anime/abukuma/onex outfit/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/anime/abukuma/onex outfit/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/anime/abukuma/toid outfit/image-features.npz +2 -2
- datasets/ref_features/anime/abukuma/toid outfit/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/anime/abukuma/toid outfit/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/anime/ikamusume/dca outfit/image-features.npz +2 -2
- datasets/ref_features/anime/ikamusume/dca outfit/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/anime/ikamusume/dca outfit/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/anime/ikamusume/none/image-features.npz +2 -2
- datasets/ref_features/anime/ikamusume/none/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/anime/ikamusume/none/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/anime/ikamusume/wafc outfit/image-features.npz +2 -2
- datasets/ref_features/anime/ikamusume/wafc outfit/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/anime/ikamusume/wafc outfit/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/anime/kotomine_kirei/image-features.npz +2 -2
- datasets/ref_features/anime/kotomine_kirei/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/anime/kotomine_kirei/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/anime/tsushima_yoshiko/image-features.npz +2 -2
- datasets/ref_features/anime/tsushima_yoshiko/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/anime/tsushima_yoshiko/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/anime/yuuki_makoto/image-features.npz +2 -2
- datasets/ref_features/anime/yuuki_makoto/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/anime/yuuki_makoto/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/fd-image-features.npz +2 -2
- datasets/ref_features/people/Admiral_Piett/figurine/image-features.npz +2 -2
- datasets/ref_features/people/Admiral_Piett/figurine/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/people/Admiral_Piett/figurine/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/people/Admiral_Piett/reaslitic/image-features.npz +2 -2
- datasets/ref_features/people/Admiral_Piett/reaslitic/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/people/Admiral_Piett/reaslitic/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/people/Bodhi_Rook/figurine/image-features.npz +2 -2
- datasets/ref_features/people/Bodhi_Rook/figurine/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/people/Bodhi_Rook/figurine/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/people/Bodhi_Rook/illustration/image-features.npz +2 -2
- datasets/ref_features/people/Bodhi_Rook/illustration/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/people/Bodhi_Rook/illustration/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/people/Bodhi_Rook/realistic/image-features.npz +2 -2
- datasets/ref_features/people/Bodhi_Rook/realistic/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/people/Bodhi_Rook/realistic/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/people/K-2SO/image-features.npz +2 -2
- datasets/ref_features/people/K-2SO/style_prompts-clip-text-features.npy +3 -0
- datasets/ref_features/people/K-2SO/triggeronly-clip-text-features.npy +3 -0
- datasets/ref_features/people/Rose_Tico/illustration/image-features.npz +2 -2
- datasets/ref_features/people/Rose_Tico/illustration/style_prompts-clip-text-features.npy +3 -0
datasets/modify_npz.py
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import numpy as np
|
3 |
+
|
4 |
+
|
5 |
+
def modify_string(s: str) -> str:
|
6 |
+
# Split the content inside parenthesis by '-'
|
7 |
+
parts = s.split('-')
|
8 |
+
|
9 |
+
# Check the last part
|
10 |
+
if parts[-1] not in ["padding", "resize", "crop"]:
|
11 |
+
parts.append("crop")
|
12 |
+
|
13 |
+
# Combine everything back to the original format
|
14 |
+
new_string = '-'.join(parts)
|
15 |
+
|
16 |
+
return new_string
|
17 |
+
|
18 |
+
|
19 |
+
def modify_npz_files(root_dir):
|
20 |
+
# Loop through the directory
|
21 |
+
for dirpath, dirnames, filenames in os.walk(root_dir):
|
22 |
+
for filename in filenames:
|
23 |
+
if filename.endswith('.npz'):
|
24 |
+
file_path = os.path.join(dirpath, filename)
|
25 |
+
data = np.load(file_path, allow_pickle=True)
|
26 |
+
|
27 |
+
modified_data = {}
|
28 |
+
|
29 |
+
# Check for fields containing the substring 'vgg'
|
30 |
+
for field in data.files:
|
31 |
+
|
32 |
+
field_new = modify_string(field)
|
33 |
+
modified_data[field_new] = data[field]
|
34 |
+
|
35 |
+
np.savez(file_path, **modified_data)
|
36 |
+
|
37 |
+
|
38 |
+
if __name__ == "__main__":
|
39 |
+
directory = input("Enter the directory path to start search from: ")
|
40 |
+
modify_npz_files(directory)
|
datasets/ref_features/.gitattributes
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
fd-image-features.npz filter=lfs diff=lfs merge=lfs -text
|
|
|
|
datasets/ref_features/anime/abukuma/none/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:620fd1abee5909c5985827bae930b00db7f87e1db7849268bf07bcca44526ae5
|
3 |
+
size 856926
|
datasets/ref_features/anime/abukuma/none/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e2e846f9d393ae9b9fa34343be2c45669bb4505119e770ff3e00ec84cc04e9ef
|
3 |
+
size 153728
|
datasets/ref_features/anime/abukuma/none/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ba5afa4ebdb2da77986f0fb1b2dd3fd15ae1149dede2c8f1d1f78f42f1518795
|
3 |
+
size 153728
|
datasets/ref_features/anime/abukuma/onex outfit/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5eb107d580c75939be8b237ff6eda86c23d10892c7527268cba1bf741f559814
|
3 |
+
size 1650654
|
datasets/ref_features/anime/abukuma/onex outfit/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2bb169667baa0eb08e7df7cb830f507a133846482961f7f5ef903feadd255b73
|
3 |
+
size 153728
|
datasets/ref_features/anime/abukuma/onex outfit/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:647f8e1527d02c01149d2aa3b137210886671c227eb6663a6a1fae1f60201ba9
|
3 |
+
size 153728
|
datasets/ref_features/anime/abukuma/toid outfit/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b220439c891dd16c98de24d81816af4191ec338a7f0972ef0f2fc2494d2eb210
|
3 |
+
size 1467486
|
datasets/ref_features/anime/abukuma/toid outfit/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2bb169667baa0eb08e7df7cb830f507a133846482961f7f5ef903feadd255b73
|
3 |
+
size 153728
|
datasets/ref_features/anime/abukuma/toid outfit/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:647f8e1527d02c01149d2aa3b137210886671c227eb6663a6a1fae1f60201ba9
|
3 |
+
size 153728
|
datasets/ref_features/anime/ikamusume/dca outfit/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7eeae9817d3fd124a365690acbb14003303956463a7ec054d1b2c366d0a9ca80
|
3 |
+
size 3604446
|
datasets/ref_features/anime/ikamusume/dca outfit/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2bb169667baa0eb08e7df7cb830f507a133846482961f7f5ef903feadd255b73
|
3 |
+
size 153728
|
datasets/ref_features/anime/ikamusume/dca outfit/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:647f8e1527d02c01149d2aa3b137210886671c227eb6663a6a1fae1f60201ba9
|
3 |
+
size 153728
|
datasets/ref_features/anime/ikamusume/none/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e850544a00eb11cc3b68b36a895e2c205294d7b67c8dd2ad4a80f99fc8003986
|
3 |
+
size 1040094
|
datasets/ref_features/anime/ikamusume/none/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e2e846f9d393ae9b9fa34343be2c45669bb4505119e770ff3e00ec84cc04e9ef
|
3 |
+
size 153728
|
datasets/ref_features/anime/ikamusume/none/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ba5afa4ebdb2da77986f0fb1b2dd3fd15ae1149dede2c8f1d1f78f42f1518795
|
3 |
+
size 153728
|
datasets/ref_features/anime/ikamusume/wafc outfit/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d66f00ffd3f69625171a835ec7d7b99e25b970ea6e45260cecb83b81798a341f
|
3 |
+
size 612702
|
datasets/ref_features/anime/ikamusume/wafc outfit/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2bb169667baa0eb08e7df7cb830f507a133846482961f7f5ef903feadd255b73
|
3 |
+
size 153728
|
datasets/ref_features/anime/ikamusume/wafc outfit/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:647f8e1527d02c01149d2aa3b137210886671c227eb6663a6a1fae1f60201ba9
|
3 |
+
size 153728
|
datasets/ref_features/anime/kotomine_kirei/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5e8d02b2f067e4b41070cd751b3db84779a1226d27f115fbb6d611a29b32b21d
|
3 |
+
size 1559070
|
datasets/ref_features/anime/kotomine_kirei/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a54adf50bbaf7c6a2d6139e33e3dba6f282638c69bd74f0cdfd775cf1c5424a9
|
3 |
+
size 153728
|
datasets/ref_features/anime/kotomine_kirei/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:68dc9cdab17c6d8d40a375d44c7ba4e9538221e003d45709824c8d723835365c
|
3 |
+
size 153728
|
datasets/ref_features/anime/tsushima_yoshiko/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:425c417d967a2dd5a1ce3c71ecfeadb5fcf182502aea907addb2e33e9a0724c3
|
3 |
+
size 3909726
|
datasets/ref_features/anime/tsushima_yoshiko/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e2e846f9d393ae9b9fa34343be2c45669bb4505119e770ff3e00ec84cc04e9ef
|
3 |
+
size 153728
|
datasets/ref_features/anime/tsushima_yoshiko/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ba5afa4ebdb2da77986f0fb1b2dd3fd15ae1149dede2c8f1d1f78f42f1518795
|
3 |
+
size 153728
|
datasets/ref_features/anime/yuuki_makoto/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7d66823357146b140f57ecb2a696199ba3b620f00de620816ee62be3376adfd9
|
3 |
+
size 2749662
|
datasets/ref_features/anime/yuuki_makoto/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a54adf50bbaf7c6a2d6139e33e3dba6f282638c69bd74f0cdfd775cf1c5424a9
|
3 |
+
size 153728
|
datasets/ref_features/anime/yuuki_makoto/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:68dc9cdab17c6d8d40a375d44c7ba4e9538221e003d45709824c8d723835365c
|
3 |
+
size 153728
|
datasets/ref_features/fd-image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3b7f0b4f45e6e97a3a2ceba0d1935ab2ed8b97144ee3a5f2a287cc41b0d4a1fc
|
3 |
+
size 170958942
|
datasets/ref_features/people/Admiral_Piett/figurine/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:628563bb67fe615f1ae86b7abac9b6b28a7a48f3b7671438d26afe93db9acb92
|
3 |
+
size 399006
|
datasets/ref_features/people/Admiral_Piett/figurine/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f8e6ece0f6e8f9ca74712a2c43c9fa3a7a1d10b46c4b6af4447b220d42b524ec
|
3 |
+
size 153728
|
datasets/ref_features/people/Admiral_Piett/figurine/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3e872bf490635f41436c41aa1036c136f1df1352ff69a3baaa92395712520ea6
|
3 |
+
size 153728
|
datasets/ref_features/people/Admiral_Piett/reaslitic/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:50210effed64a4a4e3e3e2dedf01bc4954c49154f5225b02ea5d9f39fa678dc0
|
3 |
+
size 1040094
|
datasets/ref_features/people/Admiral_Piett/reaslitic/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8b395ad6687c07adb3352bb38f2f26379170e57d17ba073e5f75db53780da1e4
|
3 |
+
size 153728
|
datasets/ref_features/people/Admiral_Piett/reaslitic/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:469ba799680505f399b0d0367283c1023989a39076137c2a0f2039edc0584297
|
3 |
+
size 153728
|
datasets/ref_features/people/Bodhi_Rook/figurine/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a4a43de0930fa606617374765138473dbf050c0f5329c9dbaecfbd737cb0458f
|
3 |
+
size 337950
|
datasets/ref_features/people/Bodhi_Rook/figurine/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f8e6ece0f6e8f9ca74712a2c43c9fa3a7a1d10b46c4b6af4447b220d42b524ec
|
3 |
+
size 153728
|
datasets/ref_features/people/Bodhi_Rook/figurine/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3e872bf490635f41436c41aa1036c136f1df1352ff69a3baaa92395712520ea6
|
3 |
+
size 153728
|
datasets/ref_features/people/Bodhi_Rook/illustration/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b168757bb4935f78459ea6e4292bb44ca00a5e0a80ee183f4423d8cf32ea4cb8
|
3 |
+
size 368478
|
datasets/ref_features/people/Bodhi_Rook/illustration/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6359b5ae8c46e450d80f1dcea19bb7297fd7bcaf0be9796889dee73af258e1be
|
3 |
+
size 153728
|
datasets/ref_features/people/Bodhi_Rook/illustration/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f70a0962671853639f6d71a7b8e843f85ea85648f246494dee5c373d12bc0c0a
|
3 |
+
size 153728
|
datasets/ref_features/people/Bodhi_Rook/realistic/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4b95e21a7b77700bfca82ef88b74aeaa53960e3526e1d59a175f628a184880fa
|
3 |
+
size 1040094
|
datasets/ref_features/people/Bodhi_Rook/realistic/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:836e28764bc1f2c2689b6ab2116abd68dd17e0a7f8f74b8a53e2cd11b7ba0515
|
3 |
+
size 153728
|
datasets/ref_features/people/Bodhi_Rook/realistic/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b75b7be72511a03036bdba2d55c3f036bf4d013bebea8fad6952912fdca4bbdf
|
3 |
+
size 153728
|
datasets/ref_features/people/K-2SO/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0f41e0100eb071e39711d4be92a68235b63f337edc840a10328601aa2d776c6e
|
3 |
+
size 1925406
|
datasets/ref_features/people/K-2SO/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9ba2fbe8140b4f297e4024cc9dbd70710d9d69fba9a3b7934d753830f01aa3e0
|
3 |
+
size 153728
|
datasets/ref_features/people/K-2SO/triggeronly-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fc6d9848a4a3ee10e5c98a7fe29ecac8d38efe175574de7ea801842ced0b3713
|
3 |
+
size 153728
|
datasets/ref_features/people/Rose_Tico/illustration/image-features.npz
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ab25ea87223e77ab2e01bc1a41662c6d13ccb57b5298d129c07ca210b2a4f8c0
|
3 |
+
size 307422
|
datasets/ref_features/people/Rose_Tico/illustration/style_prompts-clip-text-features.npy
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9b2055db0d7b25f64e401aa4497a0b206cdff1a5f0c22edf13d59bc5ed80c78a
|
3 |
+
size 153728
|