cyber-meow commited on
Commit
48d1312
1 Parent(s): ee3495c

quality metric evaluation

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. datasets/modify_npz.py +40 -0
  2. datasets/ref_features/.gitattributes +0 -1
  3. datasets/ref_features/anime/abukuma/none/image-features.npz +2 -2
  4. datasets/ref_features/anime/abukuma/none/style_prompts-clip-text-features.npy +3 -0
  5. datasets/ref_features/anime/abukuma/none/triggeronly-clip-text-features.npy +3 -0
  6. datasets/ref_features/anime/abukuma/onex outfit/image-features.npz +2 -2
  7. datasets/ref_features/anime/abukuma/onex outfit/style_prompts-clip-text-features.npy +3 -0
  8. datasets/ref_features/anime/abukuma/onex outfit/triggeronly-clip-text-features.npy +3 -0
  9. datasets/ref_features/anime/abukuma/toid outfit/image-features.npz +2 -2
  10. datasets/ref_features/anime/abukuma/toid outfit/style_prompts-clip-text-features.npy +3 -0
  11. datasets/ref_features/anime/abukuma/toid outfit/triggeronly-clip-text-features.npy +3 -0
  12. datasets/ref_features/anime/ikamusume/dca outfit/image-features.npz +2 -2
  13. datasets/ref_features/anime/ikamusume/dca outfit/style_prompts-clip-text-features.npy +3 -0
  14. datasets/ref_features/anime/ikamusume/dca outfit/triggeronly-clip-text-features.npy +3 -0
  15. datasets/ref_features/anime/ikamusume/none/image-features.npz +2 -2
  16. datasets/ref_features/anime/ikamusume/none/style_prompts-clip-text-features.npy +3 -0
  17. datasets/ref_features/anime/ikamusume/none/triggeronly-clip-text-features.npy +3 -0
  18. datasets/ref_features/anime/ikamusume/wafc outfit/image-features.npz +2 -2
  19. datasets/ref_features/anime/ikamusume/wafc outfit/style_prompts-clip-text-features.npy +3 -0
  20. datasets/ref_features/anime/ikamusume/wafc outfit/triggeronly-clip-text-features.npy +3 -0
  21. datasets/ref_features/anime/kotomine_kirei/image-features.npz +2 -2
  22. datasets/ref_features/anime/kotomine_kirei/style_prompts-clip-text-features.npy +3 -0
  23. datasets/ref_features/anime/kotomine_kirei/triggeronly-clip-text-features.npy +3 -0
  24. datasets/ref_features/anime/tsushima_yoshiko/image-features.npz +2 -2
  25. datasets/ref_features/anime/tsushima_yoshiko/style_prompts-clip-text-features.npy +3 -0
  26. datasets/ref_features/anime/tsushima_yoshiko/triggeronly-clip-text-features.npy +3 -0
  27. datasets/ref_features/anime/yuuki_makoto/image-features.npz +2 -2
  28. datasets/ref_features/anime/yuuki_makoto/style_prompts-clip-text-features.npy +3 -0
  29. datasets/ref_features/anime/yuuki_makoto/triggeronly-clip-text-features.npy +3 -0
  30. datasets/ref_features/fd-image-features.npz +2 -2
  31. datasets/ref_features/people/Admiral_Piett/figurine/image-features.npz +2 -2
  32. datasets/ref_features/people/Admiral_Piett/figurine/style_prompts-clip-text-features.npy +3 -0
  33. datasets/ref_features/people/Admiral_Piett/figurine/triggeronly-clip-text-features.npy +3 -0
  34. datasets/ref_features/people/Admiral_Piett/reaslitic/image-features.npz +2 -2
  35. datasets/ref_features/people/Admiral_Piett/reaslitic/style_prompts-clip-text-features.npy +3 -0
  36. datasets/ref_features/people/Admiral_Piett/reaslitic/triggeronly-clip-text-features.npy +3 -0
  37. datasets/ref_features/people/Bodhi_Rook/figurine/image-features.npz +2 -2
  38. datasets/ref_features/people/Bodhi_Rook/figurine/style_prompts-clip-text-features.npy +3 -0
  39. datasets/ref_features/people/Bodhi_Rook/figurine/triggeronly-clip-text-features.npy +3 -0
  40. datasets/ref_features/people/Bodhi_Rook/illustration/image-features.npz +2 -2
  41. datasets/ref_features/people/Bodhi_Rook/illustration/style_prompts-clip-text-features.npy +3 -0
  42. datasets/ref_features/people/Bodhi_Rook/illustration/triggeronly-clip-text-features.npy +3 -0
  43. datasets/ref_features/people/Bodhi_Rook/realistic/image-features.npz +2 -2
  44. datasets/ref_features/people/Bodhi_Rook/realistic/style_prompts-clip-text-features.npy +3 -0
  45. datasets/ref_features/people/Bodhi_Rook/realistic/triggeronly-clip-text-features.npy +3 -0
  46. datasets/ref_features/people/K-2SO/image-features.npz +2 -2
  47. datasets/ref_features/people/K-2SO/style_prompts-clip-text-features.npy +3 -0
  48. datasets/ref_features/people/K-2SO/triggeronly-clip-text-features.npy +3 -0
  49. datasets/ref_features/people/Rose_Tico/illustration/image-features.npz +2 -2
  50. 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:8c1b87a6fb3644d6b043d9b1f687292f8a6b14acbdda2087890fe548e64c5713
3
- size 856886
 
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:fd578d4cbc3875ecbedec7a0dc7045df0f9b00981e3db0359641e1a1d93849df
3
- size 1650614
 
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:6741670f3fa630ff9fb7fb18c23844b6cc8bfba457709309e779478dbe870a4f
3
- size 1467446
 
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:77de4ab8548749e1b1ebfaa63ae557cf1685264c25eb41cd8b22a839bcac15a8
3
- size 3604406
 
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:bb593e3418135bc3444f97809d3d13bf2cf3c9eb16b322ac0f420617d54c79a1
3
- size 1040054
 
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:f8a6116c6dfecc05e41955c820101d63ba9927078066e3f3af80c7bb62d3f3a2
3
- size 612662
 
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:5cf6a6cdd67099c168f2158164f1c2e1deb36dcc3a20d2ddcd97c97af914c3e8
3
- size 1559030
 
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:df15227f2088cfb65c10a82184040c04749f5a331b77a06722ca9cf63e3d1ddb
3
- size 3909686
 
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:5283f6ffbe056718afab04472a34e0bac11eb5991556420de38dbe593338d0be
3
- size 2749622
 
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:6d35088094b081baa6d47fbb8db4f799a6d577cb047da02deaa785a1d84e03c8
3
- size 170958902
 
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:9f9ade42f930a687e33d31a281c410c5519ec652675af17561614f7ef649f991
3
- size 398966
 
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:6b1d525dd04f4b6304aace627dc4e7e71ca5c41708936e5d495a40f98f1f511c
3
- size 1040054
 
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:453679c37a459c02abf922ffb33690ffc56170b0f7b0755ea79094fb475bbd81
3
- size 337910
 
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:f709a18a826d38c06656a76819e2f2facd00ba899c2e6bbcc94ca47551883aae
3
- size 368438
 
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:62e61c8fbb12316085354b9ba42acc8703e6bcc5db460ef0ed21917307e084c3
3
- size 1040054
 
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:a722b0f3e4934d0e1403b53df37cbb4c9e03d8c53e5479c4f71ae1a371e1926f
3
- size 1925366
 
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:23a723ed341102dba3e664368aebcf4d1e5a7f209b59b342a0f28f7fc6696207
3
- size 307382
 
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