drichibquest commited on
Commit
c575a8c
1 Parent(s): 0bd02c4

Upload 7 files

Browse files
lufill/.gitattributes ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.lz4 filter=lfs diff=lfs merge=lfs -text
12
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
13
+ *.model filter=lfs diff=lfs merge=lfs -text
14
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
15
+ *.npy filter=lfs diff=lfs merge=lfs -text
16
+ *.npz filter=lfs diff=lfs merge=lfs -text
17
+ *.onnx filter=lfs diff=lfs merge=lfs -text
18
+ *.ot filter=lfs diff=lfs merge=lfs -text
19
+ *.parquet filter=lfs diff=lfs merge=lfs -text
20
+ *.pb filter=lfs diff=lfs merge=lfs -text
21
+ *.pickle filter=lfs diff=lfs merge=lfs -text
22
+ *.pkl filter=lfs diff=lfs merge=lfs -text
23
+ *.pt filter=lfs diff=lfs merge=lfs -text
24
+ *.pth filter=lfs diff=lfs merge=lfs -text
25
+ *.rar filter=lfs diff=lfs merge=lfs -text
26
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
27
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
28
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
29
+ *.tflite filter=lfs diff=lfs merge=lfs -text
30
+ *.tgz filter=lfs diff=lfs merge=lfs -text
31
+ *.wasm filter=lfs diff=lfs merge=lfs -text
32
+ *.xz filter=lfs diff=lfs merge=lfs -text
33
+ *.zip filter=lfs diff=lfs merge=lfs -text
34
+ *.zst filter=lfs diff=lfs merge=lfs -text
35
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ # Audio files - uncompressed
37
+ *.pcm filter=lfs diff=lfs merge=lfs -text
38
+ *.sam filter=lfs diff=lfs merge=lfs -text
39
+ *.raw filter=lfs diff=lfs merge=lfs -text
40
+ # Audio files - compressed
41
+ *.aac filter=lfs diff=lfs merge=lfs -text
42
+ *.flac filter=lfs diff=lfs merge=lfs -text
43
+ *.mp3 filter=lfs diff=lfs merge=lfs -text
44
+ *.ogg filter=lfs diff=lfs merge=lfs -text
45
+ *.wav filter=lfs diff=lfs merge=lfs -text
46
+ # Image files - uncompressed
47
+ *.bmp filter=lfs diff=lfs merge=lfs -text
48
+ *.gif filter=lfs diff=lfs merge=lfs -text
49
+ *.png filter=lfs diff=lfs merge=lfs -text
50
+ *.tiff filter=lfs diff=lfs merge=lfs -text
51
+ # Image files - compressed
52
+ *.jpg filter=lfs diff=lfs merge=lfs -text
53
+ *.jpeg filter=lfs diff=lfs merge=lfs -text
54
+ *.webp filter=lfs diff=lfs merge=lfs -text
lufill/fill50k.py ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+ from huggingface_hub import hf_hub_url
3
+ import datasets
4
+ import os
5
+
6
+ _VERSION = datasets.Version("0.0.2")
7
+
8
+ _DESCRIPTION = "TODO"
9
+ _HOMEPAGE = "TODO"
10
+ _LICENSE = "TODO"
11
+ _CITATION = "TODO"
12
+
13
+ _FEATURES = datasets.Features(
14
+ {
15
+ "image": datasets.Image(),
16
+ "conditioning_image": datasets.Image(),
17
+ "text": datasets.Value("string"),
18
+ },
19
+ )
20
+
21
+ METADATA_URL = hf_hub_url(
22
+ "fusing/fill50k",
23
+ filename="train.jsonl",
24
+ repo_type="dataset",
25
+ )
26
+
27
+ IMAGES_URL = hf_hub_url(
28
+ "fusing/fill50k",
29
+ filename="images.zip",
30
+ repo_type="dataset",
31
+ )
32
+
33
+ CONDITIONING_IMAGES_URL = hf_hub_url(
34
+ "fusing/fill50k",
35
+ filename="conditioning_images.zip",
36
+ repo_type="dataset",
37
+ )
38
+
39
+ _DEFAULT_CONFIG = datasets.BuilderConfig(name="default", version=_VERSION)
40
+
41
+
42
+ class Fill50k(datasets.GeneratorBasedBuilder):
43
+ BUILDER_CONFIGS = [_DEFAULT_CONFIG]
44
+ DEFAULT_CONFIG_NAME = "default"
45
+
46
+ def _info(self):
47
+ return datasets.DatasetInfo(
48
+ description=_DESCRIPTION,
49
+ features=_FEATURES,
50
+ supervised_keys=None,
51
+ homepage=_HOMEPAGE,
52
+ license=_LICENSE,
53
+ citation=_CITATION,
54
+ )
55
+
56
+ def _split_generators(self, dl_manager):
57
+ metadata_path = dl_manager.download(METADATA_URL)
58
+ images_dir = dl_manager.download_and_extract(IMAGES_URL)
59
+ conditioning_images_dir = dl_manager.download_and_extract(
60
+ CONDITIONING_IMAGES_URL
61
+ )
62
+
63
+ return [
64
+ datasets.SplitGenerator(
65
+ name=datasets.Split.TRAIN,
66
+ # These kwargs will be passed to _generate_examples
67
+ gen_kwargs={
68
+ "metadata_path": metadata_path,
69
+ "images_dir": images_dir,
70
+ "conditioning_images_dir": conditioning_images_dir,
71
+ },
72
+ ),
73
+ ]
74
+
75
+ def _generate_examples(self, metadata_path, images_dir, conditioning_images_dir):
76
+ metadata = pd.read_json(metadata_path, lines=True)
77
+
78
+ for _, row in metadata.iterrows():
79
+ text = row["text"]
80
+
81
+ image_path = row["image"]
82
+ image_path = os.path.join(images_dir, image_path)
83
+ image = open(image_path, "rb").read()
84
+
85
+ conditioning_image_path = row["conditioning_image"]
86
+ conditioning_image_path = os.path.join(
87
+ conditioning_images_dir, row["conditioning_image"]
88
+ )
89
+ conditioning_image = open(conditioning_image_path, "rb").read()
90
+
91
+ yield row["image"], {
92
+ "text": text,
93
+ "image": {
94
+ "path": image_path,
95
+ "bytes": image,
96
+ },
97
+ "conditioning_image": {
98
+ "path": conditioning_image_path,
99
+ "bytes": conditioning_image,
100
+ },
101
+ }
lufill/images.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdf52caa804adfb2e7a16948a98138b73277baffd0c29166e3e02fcef89bedfc
3
+ size 304846852
lufill/loaddata.py ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ import datasets
2
+ da = datasets.from_folder("fill50k")
lufill/segmentation.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10ba81821089056a243c912d01ff80e882ac77df8b6523ce34583f73d5968a97
3
+ size 8214693
lufill/train.jsonl ADDED
@@ -0,0 +1,200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, sakura flower trees, people", "image": "pictures/img01.png", "conditioning_image": "segmentation/seg01.jpg"}
2
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, sakura flower trees, people", "image": "pictures/img02.png", "conditioning_image": "segmentationseg/02.jpg"}
3
+ {"text": "Fuji mountain, sky, sea, trees and forests, some clouds", "image": "pictures/img03.png", "conditioning_image": "segmentation/seg03.jpg"}
4
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests, some clouds, sakura flower trees, people", "image": "pictures/img04.png", "conditioning_image": "segmentation/seg04.jpg"}
5
+ {"text": "Fuji mountain with ground, sky, trees and forests, Japanese traditional architecture", "image": "pictures/img05.png", "conditioning_image": "segmentation/seg05.jpg"}
6
+ {"text": "Fuji mountain with ground, sky, trees, some clouds", "image": "pictures/img06.png", "conditioning_image": "segmentation/seg06.jpg"}
7
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds,", "image": "pictures/img07.png", "conditioning_image": "segmentation/seg07.jpg"}
8
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, sakura flower trees, people ", "image": "pictures/img08.png", "conditioning_image": "segmentation/seg08.jpg"}
9
+ {"text": "Fuji mountain with ground, sky, grass trees and forests, some clouds", "image": "pictures/img09.png", "conditioning_image": "segmentation/seg09.jpg"}
10
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests, some clouds", "image": "pictures/img10.png", "conditioning_image": "segmentation/seg10.jpg"}
11
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds", "image": "pictures/img11.png", "conditioning_image": "segmentation/seg11.jpg"}
12
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, people", "image": "pictures/img12.png", "conditioning_image": "segmentation/seg12.jpg"}
13
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, people", "image": "pictures/img13.png", "conditioning_image": "segmentation/seg13.jpg"}
14
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, sakura flower trees", "image": "pictures/img14.png", "conditioning_image": "segmentation/seg14.jpg"}
15
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds", "image": "pictures/img15.png", "conditioning_image": "segmentation/seg15.jpg"}
16
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests, some clouds", "image": "pictures/img16.png", "conditioning_image": "segmentation/seg16.jpg"}
17
+ {"text": "Fuji mountain with ground, sky, trees and forests", "image": "pictures/img17.png", "conditioning_image": "segmentation/seg17.jpg"}
18
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests, some clouds", "image": "pictures/img18.png", "conditioning_image": "segmentation/seg18.jpg"}
19
+ {"text": "Fuji mountain with ground, sky, trees and forests", "image": "pictures/img19.png", "conditioning_image": "segmentation/seg19.jpg"}
20
+ {"text": "Fuji mountain with ground, sky, river, trees and forests, some clouds, people riding a boat", "image": "pictures/img20.png", "conditioning_image": "segmentation/seg20.jpg"}
21
+ {"text": "Fuji mountain, sky, trees and forests, some clouds", "image": "pictures/img21.png", "conditioning_image": "segmentation/seg21.jpg"}
22
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests", "image": "pictures/img22.png", "conditioning_image": "segmentation/seg22.jpg"}
23
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests", "image": "pictures/img23.png", "conditioning_image": "segmentation/seg23.jpg"}
24
+ {"text": "Fuji mountain, sky, sea, trees and forests, some clouds", "image": "pictures/img24.png", "conditioning_image": "segmentation/seg24.jpg"}
25
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, people", "image": "pictures/img25.png", "conditioning_image": "segmentation/seg25.jpg"}
26
+ {"text": "Fuji mountain, sky, trees and forests, some clouds", "image": "pictures/img26.png", "conditioning_image": "segmentation/seg26.jpg"}
27
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, sakura flower trees", "image": "pictures/img27.png", "conditioning_image": "segmentation/seg27.jpg"}
28
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests, some clouds", "image": "pictures/img28.png", "conditioning_image": "segmentation/seg28.jpg"}
29
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests, some clouds", "image": "pictures/img29.png", "conditioning_image": "segmentation/seg29.jpg"}
30
+ {"text": "Fuji mountain with ground, sky, waves, sea, grass trees and forests, some clouds", "image": "pictures/img30.png", "conditioning_image": "segmentation/seg30.jpg"}
31
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, sakura flower trees", "image": "pictures/img31.png", "conditioning_image": "segmentation/seg31.jpg"}
32
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds", "image": "pictures/img32.png", "conditioning_image": "segmentation/seg32.jpg"}
33
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds", "image": "pictures/img33.png", "conditioning_image": "segmentation/seg33.jpg"}
34
+ {"text": "Fuji mountain with ground, sky, sea, pine trees, trees and forests, some clouds", "image": "pictures/img34.png", "conditioning_image": "segmentation/seg34.jpg"}
35
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img35.png", "conditioning_image": "segmentation/seg35.jpg"}
36
+ {"text": "Fuji mountain, sky, some clouds", "image": "pictures/img36.png", "conditioning_image": "segmentation/seg36.jpg"}
37
+ {"text": "Fuji mountain with ground, sky, trees and forests, people, Japanese traditional architecture", "image": "pictures/img37.png", "conditioning_image": "segmentation/seg37.jpg"}
38
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests, some clouds", "image": "pictures/img38.png", "conditioning_image": "segmentation/seg38.jpg"}
39
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests", "image": "pictures/img39.png", "conditioning_image": "segmentation/seg39.jpg"}
40
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds", "image": "pictures/img40.png", "conditioning_image": "segmentation/seg40.jpg"}
41
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests, some clouds, Japanese traditional architecture", "image": "pictures/img41.png", "conditioning_image": "segmentation/seg41.jpg"}
42
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, Japanese traditional architecture", "image": "pictures/img42.png", "conditioning_image": "segmentation/seg42.jpg"}
43
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds", "image": "pictures/img43.png", "conditioning_image": "segmentation/seg43.jpg"}
44
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds", "image": "pictures/img44.png", "conditioning_image": "segmentation/seg44.jpg"}
45
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests, some clouds, boats", "image": "pictures/img45.png", "conditioning_image": "segmentation/seg45.jpg"}
46
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds", "image": "pictures/img46.png", "conditioning_image": "segmentation/seg46.jpg"}
47
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, Japanese traditional architecture", "image": "pictures/img47.png", "conditioning_image": "segmentation/seg47.jpg"}
48
+ {"text": "Fuji mountain, sky, sea, trees and forests, sakura flower trees, Japanese traditional architecture", "image": "pictures/img48.png", "conditioning_image": "segmentation/seg48.jpg"}
49
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds", "image": "pictures/img49.png", "conditioning_image": "segmentation/seg49.jpg"}
50
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests, some clouds, Japanese traditional architecture, people", "image": "pictures/img50.png", "conditioning_image": "segmentation/seg50.jpg"}
51
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests, some clouds, Japanese traditional architecture", "image": "pictures/img51.png", "conditioning_image": "segmentation/seg51.jpg"}
52
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, Japanese traditional architecture", "image": "pictures/img52.png", "conditioning_image": "segmentation/seg52.jpg"}
53
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, people", "image": "pictures/img53.png", "conditioning_image": "segmentation/seg53.jpg"}
54
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests, some clouds", "image": "pictures/img54.png", "conditioning_image": "segmentation/seg54.jpg"}
55
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, Japanese traditional architecture", "image": "pictures/img55.png", "conditioning_image": "segmentation/seg55.jpg"}
56
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, Japanese traditional architecture", "image": "pictures/img56.png", "conditioning_image": "segmentation/seg56.jpg"}
57
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests, some clouds, Japanese traditional architecture", "image": "pictures/img57.png", "conditioning_image": "segmentation/seg57.jpg"}
58
+ {"text": "Fuji mountain, sky, trees and forests, some clouds", "image": "pictures/img58.png", "conditioning_image": "segmentation/seg58.jpg"}
59
+ {"text": "Fuji mountain with ground, sky, sea, trees and forests, some clouds, people", "image": "pictures/img59.png", "conditioning_image": "segmentation/seg59.jpg"}
60
+ {"text": "Fuji mountain, sky, river, trees and forests, sakura flower trees, Japanese traditional architecture and villages", "image": "pictures/img60.png", "conditioning_image": "segmentation/seg60.jpg"}
61
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, sakura flower trees, people riding horses", "image": "pictures/img61.png", "conditioning_image": "segmentation/seg61.jpg"}
62
+ {"text": "Fuji mountain with ground, sky, trees and forests, some clouds, people, Japanese traditional architecture and streets", "image": "pictures/img62.png", "conditioning_image": "segmentation/seg62.jpg"}
63
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, boats", "image": "pictures/img63.png", "conditioning_image": "segmentation/seg63.jpg"}
64
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests", "image": "pictures/img64.png", "conditioning_image": "segmentation/seg64.jpg"}
65
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img65.png", "conditioning_image": "segmentation/seg65.jpg"}
66
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, people", "image": "pictures/img66.png", "conditioning_image": "segmentation/seg66.jpg"}
67
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img67.png", "conditioning_image": "segmentation/seg67.jpg"}
68
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img68.png", "conditioning_image": "segmentation/seg68.jpg"}
69
+ {"text": "Fuji mountain with ground, sky, waves, sea, some clouds, people", "image": "pictures/img69.png", "conditioning_image": "segmentation/seg69.jpg"}
70
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, people, Japanese traditional architecture and villages", "image": "pictures/img70.png", "conditioning_image": "segmentation/seg70.jpg"}
71
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img71.png", "conditioning_image": "segmentation/seg71.jpg"}
72
+ {"text": "Fuji mountain, sky, waves, sea", "image": "pictures/img72.png", "conditioning_image": "segmentation/seg72.jpg"}
73
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img73.png", "conditioning_image": "segmentation/seg73.jpg"}
74
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img74.png", "conditioning_image": "segmentation/seg74.jpg"}
75
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img75.png", "conditioning_image": "segmentation/seg75.jpg"}
76
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img76.png", "conditioning_image": "segmentation/seg76.jpg"}
77
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img77.png", "conditioning_image": "segmentation/seg77.jpg"}
78
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img78.png", "conditioning_image": "segmentation/seg78.jpg"}
79
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img79.png", "conditioning_image": "segmentation/seg79.jpg"}
80
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img80.png", "conditioning_image": "segmentation/seg80.jpg"}
81
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, Japanese traditional architecture and villages", "image": "pictures/img81.png", "conditioning_image": "segmentation/seg81.jpg"}
82
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img82.png", "conditioning_image": "segmentation/seg82.jpg"}
83
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img83.png", "conditioning_image": "segmentation/seg83.jpg"}
84
+ {"text": "Fuji mountain, sky, waves, sea, some clouds", "image": "pictures/img84.png", "conditioning_image": "segmentation/seg84.jpg"}
85
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img85.png", "conditioning_image": "segmentation/seg85.jpg"}
86
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img86.png", "conditioning_image": "segmentation/seg86.jpg"}
87
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img87.png", "conditioning_image": "segmentation/seg87.jpg"}
88
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img88.png", "conditioning_image": "segmentation/seg88.jpg"}
89
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img89.png", "conditioning_image": "segmentation/seg89.jpg"}
90
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img90.png", "conditioning_image": "segmentation/seg90.jpg"}
91
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img91.png", "conditioning_image": "segmentation/seg91.jpg"}
92
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img92.png", "conditioning_image": "segmentation/seg92.jpg"}
93
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img93.png", "conditioning_image": "segmentation/seg93.jpg"}
94
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img94.png", "conditioning_image": "segmentation/seg94.jpg"}
95
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, boats", "image": "pictures/img95.png", "conditioning_image": "segmentation/seg95.jpg"}
96
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img96.png", "conditioning_image": "segmentation/seg96.jpg"}
97
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img97.png", "conditioning_image": "segmentation/seg97.jpg"}
98
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img98.png", "conditioning_image": "segmentation/seg98.jpg"}
99
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img99.png", "conditioning_image": "segmentation/seg99.jpg"}
100
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, boats", "image": "pictures/img100.png", "conditioning_image": "segmentation/seg100.jpg"}
101
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages, boats", "image": "pictures/img101.png", "conditioning_image": "segmentation/seg101.jpg"}
102
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages, boats", "image": "pictures/img102.png", "conditioning_image": "segmentation/seg102.jpg"}
103
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, boats", "image": "pictures/img103.png", "conditioning_image": "segmentation/seg103.jpg"}
104
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img104.png", "conditioning_image": "segmentation/seg104.jpg"}
105
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests", "image": "pictures/img105.png", "conditioning_image": "segmentation/seg105.jpg"}
106
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img106.png", "conditioning_image": "segmentation/seg106.jpg"}
107
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees, some clouds", "image": "pictures/img107.png", "conditioning_image": "segmentation/seg107.jpg"}
108
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages, people, boats", "image": "pictures/img108.png", "conditioning_image": "segmentation/seg108.jpg"}
109
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, , Japanese traditional architecture and villages", "image": "pictures/img109.png", "conditioning_image": "segmentation/seg109.jpg"}
110
+ {"text": "Fuji mountain, sky, waves, sea, some clouds", "image": "pictures/img110.png", "conditioning_image": "segmentation/seg110.jpg"}
111
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img111.png", "conditioning_image": "segmentation/seg111.jpg"}
112
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img112.png", "conditioning_image": "segmentation/seg112.jpg"}
113
+ {"text": "Fuji mountain with ground, sky, waves, sea, some clouds", "image": "pictures/img113.png", "conditioning_image": "segmentation/seg113.jpg"}
114
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img114.png", "conditioning_image": "segmentation/seg114.jpg"}
115
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, Japanese traditional architecture and villages", "image": "pictures/img115.png", "conditioning_image": "segmentation/seg115.jpg"}
116
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img116.png", "conditioning_image": "segmentation/seg116.jpg"}
117
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests", "image": "pictures/img117.png", "conditioning_image": "segmentation/seg117.jpg"}
118
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, Japanese traditional architecture and villages", "image": "pictures/img118.png", "conditioning_image": "segmentation/seg118.jpg"}
119
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, boats", "image": "pictures/img119.png", "conditioning_image": "segmentation/seg119.jpg"}
120
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests", "image": "pictures/img120.png", "conditioning_image": "segmentation/seg120.jpg"}
121
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img121.png", "conditioning_image": "segmentation/seg121.jpg"}
122
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, boats", "image": "pictures/img122.png", "conditioning_image": "segmentation/seg122.jpg"}
123
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests", "image": "pictures/img123.png", "conditioning_image": "segmentation/seg123.jpg"}
124
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img124.png", "conditioning_image": "segmentation/seg124.jpg"}
125
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img125.png", "conditioning_image": "segmentation/seg125.jpg"}
126
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img126.png", "conditioning_image": "segmentation/seg126.jpg"}
127
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests", "image": "pictures/img127.png", "conditioning_image": "segmentation/seg127.jpg"}
128
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img128.png", "conditioning_image": "segmentation/seg128.jpg"}
129
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, Japanese traditional architecture and villages, boats", "image": "pictures/img129.png", "conditioning_image": "segmentation/seg129.jpg"}
130
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests", "image": "pictures/img130.png", "conditioning_image": "segmentation/seg130.jpg"}
131
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture", "image": "pictures/img131.png", "conditioning_image": "segmentation/seg131.jpg"}
132
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img132.png", "conditioning_image": "segmentation/seg132.jpg"}
133
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages, boats", "image": "pictures/img133.png", "conditioning_image": "segmentation/seg133.jpg"}
134
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img134.png", "conditioning_image": "segmentation/seg134.jpg"}
135
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages, sakura flower trees", "image": "pictures/img135.png", "conditioning_image": "segmentation/seg135.jpg"}
136
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests", "image": "pictures/img136.png", "conditioning_image": "segmentation/seg136.jpg"}
137
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, birds", "image": "pictures/img137.png", "conditioning_image": "segmentation/seg137.jpg"}
138
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, Japanese traditional architecture and villages, boats", "image": "pictures/img138.png", "conditioning_image": "segmentation/seg138.jpg"}
139
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture", "image": "pictures/img139.png", "conditioning_image": "segmentation/seg139.jpg"}
140
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img140.png", "conditioning_image": "segmentation/seg140.jpg"}
141
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img141.png", "conditioning_image": "segmentation/seg141.jpg"}
142
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, birds", "image": "pictures/img142.png", "conditioning_image": "segmentation/seg142.jpg"}
143
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img143.png", "conditioning_image": "segmentation/seg143.jpg"}
144
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests", "image": "pictures/img144.png", "conditioning_image": "segmentation/seg144.jpg"}
145
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img145.png", "conditioning_image": "segmentation/seg145.jpg"}
146
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img146.png", "conditioning_image": "segmentation/seg146.jpg"}
147
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img147.png", "conditioning_image": "segmentation/seg147.jpg"}
148
+ {"text": "Fuji mountain, sky, waves, sea", "image": "pictures/img148.png", "conditioning_image": "segmentation/seg148.jpg"}
149
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img149.png", "conditioning_image": "segmentation/seg149.jpg"}
150
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, boats", "image": "pictures/img150.png", "conditioning_image": "segmentation/seg150.jpg"}
151
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img151.png", "conditioning_image": "segmentation/seg151.jpg"}
152
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img152.png", "conditioning_image": "segmentation/seg152.jpg"}
153
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, boats", "image": "pictures/img153.png", "conditioning_image": "segmentation/seg153.jpg"}
154
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img154.png", "conditioning_image": "segmentation/seg154.jpg"}
155
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img155.png", "conditioning_image": "segmentation/seg155.jpg"}
156
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img156.png", "conditioning_image": "segmentation/seg156.jpg"}
157
+ {"text": "Fuji mountain, sky, waves, sea, some clouds, boats", "image": "pictures/img157.png", "conditioning_image": "segmentation/seg157.jpg"}
158
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img158.png", "conditioning_image": "segmentation/seg158.jpg"}
159
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture", "image": "pictures/img159.png", "conditioning_image": "segmentation/seg159.jpg"}
160
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img160.png", "conditioning_image": "segmentation/seg160.jpg"}
161
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img161.png", "conditioning_image": "segmentation/seg161.jpg"}
162
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, Japanese traditional architecture, boats", "image": "pictures/img162.png", "conditioning_image": "segmentation/seg162.jpg"}
163
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img163.png", "conditioning_image": "segmentation/seg163.jpg"}
164
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img164.png", "conditioning_image": "segmentation/seg164.jpg"}
165
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, boats", "image": "pictures/img165.png", "conditioning_image": "segmentation/seg165.jpg"}
166
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, sun", "image": "pictures/img166.png", "conditioning_image": "segmentation/seg166.jpg"}
167
+ {"text": "Fuji mountain with ground, sky, waves, sea, some clouds", "image": "pictures/img167.png", "conditioning_image": "segmentation/seg167.jpg"}
168
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture ", "image": "pictures/img168.png", "conditioning_image": "segmentation/seg168.jpg"}
169
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests", "image": "pictures/img169.png", "conditioning_image": "segmentation/seg169.jpg"}
170
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img170.png", "conditioning_image": "segmentation/seg170.jpg"}
171
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, Japanese traditional architecture and villages", "image": "pictures/img171.png", "conditioning_image": "segmentation/seg171.jpg"}
172
+ {"text": "Fuji mountain, sky, waves, sea, some clouds, boats", "image": "pictures/img172.png", "conditioning_image": "segmentation/seg172.jpg"}
173
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture", "image": "pictures/img173.png", "conditioning_image": "segmentation/seg173.jpg"}
174
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img174.png", "conditioning_image": "segmentation/seg174.jpg"}
175
+ {"text": "Fuji mountain, sky, waves, sea, some clouds, boats", "image": "pictures/img175.png", "conditioning_image": "segmentation/seg175.jpg"}
176
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img176.png", "conditioning_image": "segmentation/seg176.jpg"}
177
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img177.png", "conditioning_image": "segmentation/seg177.jpg"}
178
+ {"text": "Fuji mountain with ground, sky, waves, sea, some clouds", "image": "pictures/img178.png", "conditioning_image": "segmentation/seg178.jpg"}
179
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages, birds", "image": "pictures/img179.png", "conditioning_image": "segmentation/seg179.jpg"}
180
+ {"text": "Fuji mountain, sky, waves, sea, some clouds", "image": "pictures/img180.png", "conditioning_image": "segmentation/seg180.jpg"}
181
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, boats", "image": "pictures/img181.png", "conditioning_image": "segmentation/seg181.jpg"}
182
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img182.png", "conditioning_image": "segmentation/seg182.jpg"}
183
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img183.png", "conditioning_image": "segmentation/seg183.jpg"}
184
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests", "image": "pictures/img184.png", "conditioning_image": "segmentation/seg184.jpg"}
185
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img185.png", "conditioning_image": "segmentation/seg185.jpg"}
186
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, Japanese traditional architecture and villages", "image": "pictures/img186.png", "conditioning_image": "segmentation/seg186.jpg"}
187
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, Japanese traditional architecture and villages", "image": "pictures/img187.png", "conditioning_image": "segmentation/seg187.jpg"}
188
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture", "image": "pictures/img188.png", "conditioning_image": "segmentation/seg188.jpg"}
189
+ {"text": "Fuji mountain with ground, sky, waves, sea, some clouds", "image": "pictures/img189.png", "conditioning_image": "segmentation/seg189.jpg"}
190
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img190.png", "conditioning_image": "segmentation/seg190.jpg"}
191
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img191.png", "conditioning_image": "segmentation/seg191.jpg"}
192
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img192.png", "conditioning_image": "segmentation/seg192.jpg"}
193
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img193.png", "conditioning_image": "segmentation/seg193.jpg"}
194
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img194.png", "conditioning_image": "segmentation/seg194.jpg"}
195
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img195.png", "conditioning_image": "segmentation/seg195.jpg"}
196
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img196.png", "conditioning_image": "segmentation/seg196.jpg"}
197
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img197.png", "conditioning_image": "segmentation/seg197.jpg"}
198
+ {"text": "Fuji mountain, sky, waves, sea, trees and forests, some clouds, Japanese traditional architecture and villages", "image": "pictures/img198.png", "conditioning_image": "segmentation/seg198.jpg"}
199
+ {"text": "Fuji mountain, sky, waves, sea", "image": "pictures/img199.png", "conditioning_image": "segmentation/seg199.jpg"}
200
+ {"text": "Fuji mountain with ground, sky, waves, sea, trees and forests, some clouds", "image": "pictures/img200.png", "conditioning_image": "segmentation/seg200.jpg"}
lufill/train2.jsonl ADDED
The diff for this file is too large to render. See raw diff