Upload 4 files
Browse files- gnd_image.zip +3 -0
- sat_gnd.py +101 -0
- sat_image.zip +3 -0
- train.jsonl +701 -0
gnd_image.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:007b6470e2ba91c0414c036e46efdbdb25d2719617e38c207f891cbffaeefca3
|
3 |
+
size 32468504
|
sat_gnd.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 |
+
"Saail/sat_gnd",
|
23 |
+
filename="train.jsonl",
|
24 |
+
repo_type="dataset",
|
25 |
+
)
|
26 |
+
|
27 |
+
IMAGES_URL = hf_hub_url(
|
28 |
+
"Saail/sat_gnd",
|
29 |
+
filename="gnd_image.zip",
|
30 |
+
repo_type="dataset",
|
31 |
+
)
|
32 |
+
|
33 |
+
CONDITIONING_IMAGES_URL = hf_hub_url(
|
34 |
+
"Saail/sat_gnd",
|
35 |
+
filename="sat_image.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 |
+
}
|
sat_image.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:50fcf91305abe2200efe4f5d5cc96dad4f6b887d5f6d3801ce05fc1ee7e3b1f6
|
3 |
+
size 42730002
|
train.jsonl
ADDED
@@ -0,0 +1,701 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/1.jpg", "conditioning_image": "sat_image/1.jpg"}
|
2 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/2.jpg", "conditioning_image": "sat_image/2.jpg"}
|
3 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/3.jpg", "conditioning_image": "sat_image/3.jpg"}
|
4 |
+
{"text": "Street view of college", "image": "gnd_image/4.jpg", "conditioning_image": "sat_image/4.jpg"}
|
5 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/5.jpg", "conditioning_image": "sat_image/5.jpg"}
|
6 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/6.jpg", "conditioning_image": "sat_image/6.jpg"}
|
7 |
+
{"text": "View of college from ground", "image": "gnd_image/7.jpg", "conditioning_image": "sat_image/7.jpg"}
|
8 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/8.jpg", "conditioning_image": "sat_image/8.jpg"}
|
9 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/9.jpg", "conditioning_image": "sat_image/9.jpg"}
|
10 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/10.jpg", "conditioning_image": "sat_image/10.jpg"}
|
11 |
+
{"text": "Street view of college", "image": "gnd_image/11.jpg", "conditioning_image": "sat_image/11.jpg"}
|
12 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/12.jpg", "conditioning_image": "sat_image/12.jpg"}
|
13 |
+
{"text": "Street view of college", "image": "gnd_image/13.jpg", "conditioning_image": "sat_image/13.jpg"}
|
14 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/14.jpg", "conditioning_image": "sat_image/14.jpg"}
|
15 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/15.jpg", "conditioning_image": "sat_image/15.jpg"}
|
16 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/16.jpg", "conditioning_image": "sat_image/16.jpg"}
|
17 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/17.jpg", "conditioning_image": "sat_image/17.jpg"}
|
18 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/18.jpg", "conditioning_image": "sat_image/18.jpg"}
|
19 |
+
{"text": "Street view of college", "image": "gnd_image/19.jpg", "conditioning_image": "sat_image/19.jpg"}
|
20 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/20.jpg", "conditioning_image": "sat_image/20.jpg"}
|
21 |
+
{"text": "View of college from ground", "image": "gnd_image/21.jpg", "conditioning_image": "sat_image/21.jpg"}
|
22 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/22.jpg", "conditioning_image": "sat_image/22.jpg"}
|
23 |
+
{"text": "Ground view of university", "image": "gnd_image/23.jpg", "conditioning_image": "sat_image/23.jpg"}
|
24 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/24.jpg", "conditioning_image": "sat_image/24.jpg"}
|
25 |
+
{"text": "Ground view of university", "image": "gnd_image/25.jpg", "conditioning_image": "sat_image/25.jpg"}
|
26 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/26.jpg", "conditioning_image": "sat_image/26.jpg"}
|
27 |
+
{"text": "View of college from ground", "image": "gnd_image/27.jpg", "conditioning_image": "sat_image/27.jpg"}
|
28 |
+
{"text": "View of college from ground", "image": "gnd_image/28.jpg", "conditioning_image": "sat_image/28.jpg"}
|
29 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/29.jpg", "conditioning_image": "sat_image/29.jpg"}
|
30 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/30.jpg", "conditioning_image": "sat_image/30.jpg"}
|
31 |
+
{"text": "Street view of college", "image": "gnd_image/31.jpg", "conditioning_image": "sat_image/31.jpg"}
|
32 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/32.jpg", "conditioning_image": "sat_image/32.jpg"}
|
33 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/33.jpg", "conditioning_image": "sat_image/33.jpg"}
|
34 |
+
{"text": "Ground view of university", "image": "gnd_image/34.jpg", "conditioning_image": "sat_image/34.jpg"}
|
35 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/35.jpg", "conditioning_image": "sat_image/35.jpg"}
|
36 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/36.jpg", "conditioning_image": "sat_image/36.jpg"}
|
37 |
+
{"text": "Street view of college", "image": "gnd_image/37.jpg", "conditioning_image": "sat_image/37.jpg"}
|
38 |
+
{"text": "Ground view of university", "image": "gnd_image/38.jpg", "conditioning_image": "sat_image/38.jpg"}
|
39 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/39.jpg", "conditioning_image": "sat_image/39.jpg"}
|
40 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/40.jpg", "conditioning_image": "sat_image/40.jpg"}
|
41 |
+
{"text": "Ground view of university", "image": "gnd_image/41.jpg", "conditioning_image": "sat_image/41.jpg"}
|
42 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/42.jpg", "conditioning_image": "sat_image/42.jpg"}
|
43 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/43.jpg", "conditioning_image": "sat_image/43.jpg"}
|
44 |
+
{"text": "Street view of college", "image": "gnd_image/44.jpg", "conditioning_image": "sat_image/44.jpg"}
|
45 |
+
{"text": "Street view of college", "image": "gnd_image/45.jpg", "conditioning_image": "sat_image/45.jpg"}
|
46 |
+
{"text": "Street view of college", "image": "gnd_image/46.jpg", "conditioning_image": "sat_image/46.jpg"}
|
47 |
+
{"text": "View of college from ground", "image": "gnd_image/47.jpg", "conditioning_image": "sat_image/47.jpg"}
|
48 |
+
{"text": "Street view of college", "image": "gnd_image/48.jpg", "conditioning_image": "sat_image/48.jpg"}
|
49 |
+
{"text": "Street view of college", "image": "gnd_image/49.jpg", "conditioning_image": "sat_image/49.jpg"}
|
50 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/50.jpg", "conditioning_image": "sat_image/50.jpg"}
|
51 |
+
{"text": "Street view of college", "image": "gnd_image/51.jpg", "conditioning_image": "sat_image/51.jpg"}
|
52 |
+
{"text": "View of college from ground", "image": "gnd_image/52.jpg", "conditioning_image": "sat_image/52.jpg"}
|
53 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/53.jpg", "conditioning_image": "sat_image/53.jpg"}
|
54 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/54.jpg", "conditioning_image": "sat_image/54.jpg"}
|
55 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/55.jpg", "conditioning_image": "sat_image/55.jpg"}
|
56 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/56.jpg", "conditioning_image": "sat_image/56.jpg"}
|
57 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/57.jpg", "conditioning_image": "sat_image/57.jpg"}
|
58 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/58.jpg", "conditioning_image": "sat_image/58.jpg"}
|
59 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/59.jpg", "conditioning_image": "sat_image/59.jpg"}
|
60 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/60.jpg", "conditioning_image": "sat_image/60.jpg"}
|
61 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/61.jpg", "conditioning_image": "sat_image/61.jpg"}
|
62 |
+
{"text": "View of college from ground", "image": "gnd_image/62.jpg", "conditioning_image": "sat_image/62.jpg"}
|
63 |
+
{"text": "Ground view of university", "image": "gnd_image/63.jpg", "conditioning_image": "sat_image/63.jpg"}
|
64 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/64.jpg", "conditioning_image": "sat_image/64.jpg"}
|
65 |
+
{"text": "Ground view of university", "image": "gnd_image/65.jpg", "conditioning_image": "sat_image/65.jpg"}
|
66 |
+
{"text": "Ground view of university", "image": "gnd_image/66.jpg", "conditioning_image": "sat_image/66.jpg"}
|
67 |
+
{"text": "Street view of college", "image": "gnd_image/67.jpg", "conditioning_image": "sat_image/67.jpg"}
|
68 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/68.jpg", "conditioning_image": "sat_image/68.jpg"}
|
69 |
+
{"text": "View of college from ground", "image": "gnd_image/69.jpg", "conditioning_image": "sat_image/69.jpg"}
|
70 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/70.jpg", "conditioning_image": "sat_image/70.jpg"}
|
71 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/71.jpg", "conditioning_image": "sat_image/71.jpg"}
|
72 |
+
{"text": "View of college from ground", "image": "gnd_image/72.jpg", "conditioning_image": "sat_image/72.jpg"}
|
73 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/73.jpg", "conditioning_image": "sat_image/73.jpg"}
|
74 |
+
{"text": "Ground view of university", "image": "gnd_image/74.jpg", "conditioning_image": "sat_image/74.jpg"}
|
75 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/75.jpg", "conditioning_image": "sat_image/75.jpg"}
|
76 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/76.jpg", "conditioning_image": "sat_image/76.jpg"}
|
77 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/77.jpg", "conditioning_image": "sat_image/77.jpg"}
|
78 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/78.jpg", "conditioning_image": "sat_image/78.jpg"}
|
79 |
+
{"text": "Ground view of university", "image": "gnd_image/79.jpg", "conditioning_image": "sat_image/79.jpg"}
|
80 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/80.jpg", "conditioning_image": "sat_image/80.jpg"}
|
81 |
+
{"text": "Street view of college", "image": "gnd_image/81.jpg", "conditioning_image": "sat_image/81.jpg"}
|
82 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/82.jpg", "conditioning_image": "sat_image/82.jpg"}
|
83 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/83.jpg", "conditioning_image": "sat_image/83.jpg"}
|
84 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/84.jpg", "conditioning_image": "sat_image/84.jpg"}
|
85 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/85.jpg", "conditioning_image": "sat_image/85.jpg"}
|
86 |
+
{"text": "View of college from ground", "image": "gnd_image/86.jpg", "conditioning_image": "sat_image/86.jpg"}
|
87 |
+
{"text": "Ground view of university", "image": "gnd_image/87.jpg", "conditioning_image": "sat_image/87.jpg"}
|
88 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/88.jpg", "conditioning_image": "sat_image/88.jpg"}
|
89 |
+
{"text": "View of college from ground", "image": "gnd_image/89.jpg", "conditioning_image": "sat_image/89.jpg"}
|
90 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/90.jpg", "conditioning_image": "sat_image/90.jpg"}
|
91 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/91.jpg", "conditioning_image": "sat_image/91.jpg"}
|
92 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/92.jpg", "conditioning_image": "sat_image/92.jpg"}
|
93 |
+
{"text": "Ground view of university", "image": "gnd_image/93.jpg", "conditioning_image": "sat_image/93.jpg"}
|
94 |
+
{"text": "Street view of college", "image": "gnd_image/94.jpg", "conditioning_image": "sat_image/94.jpg"}
|
95 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/95.jpg", "conditioning_image": "sat_image/95.jpg"}
|
96 |
+
{"text": "View of college from ground", "image": "gnd_image/96.jpg", "conditioning_image": "sat_image/96.jpg"}
|
97 |
+
{"text": "View of college from ground", "image": "gnd_image/97.jpg", "conditioning_image": "sat_image/97.jpg"}
|
98 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/98.jpg", "conditioning_image": "sat_image/98.jpg"}
|
99 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/99.jpg", "conditioning_image": "sat_image/99.jpg"}
|
100 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/100.jpg", "conditioning_image": "sat_image/100.jpg"}
|
101 |
+
{"text": "Ground view of university", "image": "gnd_image/101.jpg", "conditioning_image": "sat_image/101.jpg"}
|
102 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/102.jpg", "conditioning_image": "sat_image/102.jpg"}
|
103 |
+
{"text": "View of college from ground", "image": "gnd_image/103.jpg", "conditioning_image": "sat_image/103.jpg"}
|
104 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/104.jpg", "conditioning_image": "sat_image/104.jpg"}
|
105 |
+
{"text": "Street view of college", "image": "gnd_image/105.jpg", "conditioning_image": "sat_image/105.jpg"}
|
106 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/106.jpg", "conditioning_image": "sat_image/106.jpg"}
|
107 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/107.jpg", "conditioning_image": "sat_image/107.jpg"}
|
108 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/108.jpg", "conditioning_image": "sat_image/108.jpg"}
|
109 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/109.jpg", "conditioning_image": "sat_image/109.jpg"}
|
110 |
+
{"text": "Street view of college", "image": "gnd_image/110.jpg", "conditioning_image": "sat_image/110.jpg"}
|
111 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/111.jpg", "conditioning_image": "sat_image/111.jpg"}
|
112 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/112.jpg", "conditioning_image": "sat_image/112.jpg"}
|
113 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/113.jpg", "conditioning_image": "sat_image/113.jpg"}
|
114 |
+
{"text": "View of college from ground", "image": "gnd_image/114.jpg", "conditioning_image": "sat_image/114.jpg"}
|
115 |
+
{"text": "View of college from ground", "image": "gnd_image/115.jpg", "conditioning_image": "sat_image/115.jpg"}
|
116 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/116.jpg", "conditioning_image": "sat_image/116.jpg"}
|
117 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/117.jpg", "conditioning_image": "sat_image/117.jpg"}
|
118 |
+
{"text": "View of college from ground", "image": "gnd_image/118.jpg", "conditioning_image": "sat_image/118.jpg"}
|
119 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/119.jpg", "conditioning_image": "sat_image/119.jpg"}
|
120 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/120.jpg", "conditioning_image": "sat_image/120.jpg"}
|
121 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/121.jpg", "conditioning_image": "sat_image/121.jpg"}
|
122 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/122.jpg", "conditioning_image": "sat_image/122.jpg"}
|
123 |
+
{"text": "Street view of college", "image": "gnd_image/123.jpg", "conditioning_image": "sat_image/123.jpg"}
|
124 |
+
{"text": "View of college from ground", "image": "gnd_image/124.jpg", "conditioning_image": "sat_image/124.jpg"}
|
125 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/125.jpg", "conditioning_image": "sat_image/125.jpg"}
|
126 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/126.jpg", "conditioning_image": "sat_image/126.jpg"}
|
127 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/127.jpg", "conditioning_image": "sat_image/127.jpg"}
|
128 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/128.jpg", "conditioning_image": "sat_image/128.jpg"}
|
129 |
+
{"text": "Ground view of university", "image": "gnd_image/129.jpg", "conditioning_image": "sat_image/129.jpg"}
|
130 |
+
{"text": "View of college from ground", "image": "gnd_image/130.jpg", "conditioning_image": "sat_image/130.jpg"}
|
131 |
+
{"text": "View of college from ground", "image": "gnd_image/131.jpg", "conditioning_image": "sat_image/131.jpg"}
|
132 |
+
{"text": "Ground view of university", "image": "gnd_image/132.jpg", "conditioning_image": "sat_image/132.jpg"}
|
133 |
+
{"text": "Street view of college", "image": "gnd_image/133.jpg", "conditioning_image": "sat_image/133.jpg"}
|
134 |
+
{"text": "Ground view of university", "image": "gnd_image/134.jpg", "conditioning_image": "sat_image/134.jpg"}
|
135 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/135.jpg", "conditioning_image": "sat_image/135.jpg"}
|
136 |
+
{"text": "Ground view of university", "image": "gnd_image/136.jpg", "conditioning_image": "sat_image/136.jpg"}
|
137 |
+
{"text": "View of college from ground", "image": "gnd_image/137.jpg", "conditioning_image": "sat_image/137.jpg"}
|
138 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/138.jpg", "conditioning_image": "sat_image/138.jpg"}
|
139 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/139.jpg", "conditioning_image": "sat_image/139.jpg"}
|
140 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/140.jpg", "conditioning_image": "sat_image/140.jpg"}
|
141 |
+
{"text": "Street view of college", "image": "gnd_image/141.jpg", "conditioning_image": "sat_image/141.jpg"}
|
142 |
+
{"text": "Ground view of university", "image": "gnd_image/142.jpg", "conditioning_image": "sat_image/142.jpg"}
|
143 |
+
{"text": "Street view of college", "image": "gnd_image/143.jpg", "conditioning_image": "sat_image/143.jpg"}
|
144 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/144.jpg", "conditioning_image": "sat_image/144.jpg"}
|
145 |
+
{"text": "View of college from ground", "image": "gnd_image/145.jpg", "conditioning_image": "sat_image/145.jpg"}
|
146 |
+
{"text": "View of college from ground", "image": "gnd_image/146.jpg", "conditioning_image": "sat_image/146.jpg"}
|
147 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/147.jpg", "conditioning_image": "sat_image/147.jpg"}
|
148 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/148.jpg", "conditioning_image": "sat_image/148.jpg"}
|
149 |
+
{"text": "Street view of college", "image": "gnd_image/149.jpg", "conditioning_image": "sat_image/149.jpg"}
|
150 |
+
{"text": "View of college from ground", "image": "gnd_image/150.jpg", "conditioning_image": "sat_image/150.jpg"}
|
151 |
+
{"text": "Street view of college", "image": "gnd_image/151.jpg", "conditioning_image": "sat_image/151.jpg"}
|
152 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/152.jpg", "conditioning_image": "sat_image/152.jpg"}
|
153 |
+
{"text": "View of college from ground", "image": "gnd_image/153.jpg", "conditioning_image": "sat_image/153.jpg"}
|
154 |
+
{"text": "Ground view of university", "image": "gnd_image/154.jpg", "conditioning_image": "sat_image/154.jpg"}
|
155 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/155.jpg", "conditioning_image": "sat_image/155.jpg"}
|
156 |
+
{"text": "Street view of college", "image": "gnd_image/156.jpg", "conditioning_image": "sat_image/156.jpg"}
|
157 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/157.jpg", "conditioning_image": "sat_image/157.jpg"}
|
158 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/158.jpg", "conditioning_image": "sat_image/158.jpg"}
|
159 |
+
{"text": "Ground view of university", "image": "gnd_image/159.jpg", "conditioning_image": "sat_image/159.jpg"}
|
160 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/160.jpg", "conditioning_image": "sat_image/160.jpg"}
|
161 |
+
{"text": "View of college from ground", "image": "gnd_image/161.jpg", "conditioning_image": "sat_image/161.jpg"}
|
162 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/162.jpg", "conditioning_image": "sat_image/162.jpg"}
|
163 |
+
{"text": "View of college from ground", "image": "gnd_image/163.jpg", "conditioning_image": "sat_image/163.jpg"}
|
164 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/164.jpg", "conditioning_image": "sat_image/164.jpg"}
|
165 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/165.jpg", "conditioning_image": "sat_image/165.jpg"}
|
166 |
+
{"text": "View of college from ground", "image": "gnd_image/166.jpg", "conditioning_image": "sat_image/166.jpg"}
|
167 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/167.jpg", "conditioning_image": "sat_image/167.jpg"}
|
168 |
+
{"text": "Street view of college", "image": "gnd_image/168.jpg", "conditioning_image": "sat_image/168.jpg"}
|
169 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/169.jpg", "conditioning_image": "sat_image/169.jpg"}
|
170 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/170.jpg", "conditioning_image": "sat_image/170.jpg"}
|
171 |
+
{"text": "Street view of college", "image": "gnd_image/171.jpg", "conditioning_image": "sat_image/171.jpg"}
|
172 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/172.jpg", "conditioning_image": "sat_image/172.jpg"}
|
173 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/173.jpg", "conditioning_image": "sat_image/173.jpg"}
|
174 |
+
{"text": "Ground view of university", "image": "gnd_image/174.jpg", "conditioning_image": "sat_image/174.jpg"}
|
175 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/175.jpg", "conditioning_image": "sat_image/175.jpg"}
|
176 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/176.jpg", "conditioning_image": "sat_image/176.jpg"}
|
177 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/177.jpg", "conditioning_image": "sat_image/177.jpg"}
|
178 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/178.jpg", "conditioning_image": "sat_image/178.jpg"}
|
179 |
+
{"text": "View of college from ground", "image": "gnd_image/179.jpg", "conditioning_image": "sat_image/179.jpg"}
|
180 |
+
{"text": "Street view of college", "image": "gnd_image/180.jpg", "conditioning_image": "sat_image/180.jpg"}
|
181 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/181.jpg", "conditioning_image": "sat_image/181.jpg"}
|
182 |
+
{"text": "Street view of college", "image": "gnd_image/182.jpg", "conditioning_image": "sat_image/182.jpg"}
|
183 |
+
{"text": "View of college from ground", "image": "gnd_image/183.jpg", "conditioning_image": "sat_image/183.jpg"}
|
184 |
+
{"text": "View of college from ground", "image": "gnd_image/184.jpg", "conditioning_image": "sat_image/184.jpg"}
|
185 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/185.jpg", "conditioning_image": "sat_image/185.jpg"}
|
186 |
+
{"text": "Ground view of university", "image": "gnd_image/186.jpg", "conditioning_image": "sat_image/186.jpg"}
|
187 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/187.jpg", "conditioning_image": "sat_image/187.jpg"}
|
188 |
+
{"text": "Street view of college", "image": "gnd_image/188.jpg", "conditioning_image": "sat_image/188.jpg"}
|
189 |
+
{"text": "View of college from ground", "image": "gnd_image/189.jpg", "conditioning_image": "sat_image/189.jpg"}
|
190 |
+
{"text": "View of college from ground", "image": "gnd_image/190.jpg", "conditioning_image": "sat_image/190.jpg"}
|
191 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/191.jpg", "conditioning_image": "sat_image/191.jpg"}
|
192 |
+
{"text": "Ground view of university", "image": "gnd_image/192.jpg", "conditioning_image": "sat_image/192.jpg"}
|
193 |
+
{"text": "View of college from ground", "image": "gnd_image/193.jpg", "conditioning_image": "sat_image/193.jpg"}
|
194 |
+
{"text": "Ground view of university", "image": "gnd_image/194.jpg", "conditioning_image": "sat_image/194.jpg"}
|
195 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/195.jpg", "conditioning_image": "sat_image/195.jpg"}
|
196 |
+
{"text": "View of college from ground", "image": "gnd_image/196.jpg", "conditioning_image": "sat_image/196.jpg"}
|
197 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/197.jpg", "conditioning_image": "sat_image/197.jpg"}
|
198 |
+
{"text": "Street view of college", "image": "gnd_image/198.jpg", "conditioning_image": "sat_image/198.jpg"}
|
199 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/199.jpg", "conditioning_image": "sat_image/199.jpg"}
|
200 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/200.jpg", "conditioning_image": "sat_image/200.jpg"}
|
201 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/201.jpg", "conditioning_image": "sat_image/201.jpg"}
|
202 |
+
{"text": "View of college from ground", "image": "gnd_image/202.jpg", "conditioning_image": "sat_image/202.jpg"}
|
203 |
+
{"text": "Street view of college", "image": "gnd_image/203.jpg", "conditioning_image": "sat_image/203.jpg"}
|
204 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/204.jpg", "conditioning_image": "sat_image/204.jpg"}
|
205 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/205.jpg", "conditioning_image": "sat_image/205.jpg"}
|
206 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/206.jpg", "conditioning_image": "sat_image/206.jpg"}
|
207 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/207.jpg", "conditioning_image": "sat_image/207.jpg"}
|
208 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/208.jpg", "conditioning_image": "sat_image/208.jpg"}
|
209 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/209.jpg", "conditioning_image": "sat_image/209.jpg"}
|
210 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/210.jpg", "conditioning_image": "sat_image/210.jpg"}
|
211 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/211.jpg", "conditioning_image": "sat_image/211.jpg"}
|
212 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/212.jpg", "conditioning_image": "sat_image/212.jpg"}
|
213 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/213.jpg", "conditioning_image": "sat_image/213.jpg"}
|
214 |
+
{"text": "Street view of college", "image": "gnd_image/214.jpg", "conditioning_image": "sat_image/214.jpg"}
|
215 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/215.jpg", "conditioning_image": "sat_image/215.jpg"}
|
216 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/216.jpg", "conditioning_image": "sat_image/216.jpg"}
|
217 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/217.jpg", "conditioning_image": "sat_image/217.jpg"}
|
218 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/218.jpg", "conditioning_image": "sat_image/218.jpg"}
|
219 |
+
{"text": "Ground view of university", "image": "gnd_image/219.jpg", "conditioning_image": "sat_image/219.jpg"}
|
220 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/220.jpg", "conditioning_image": "sat_image/220.jpg"}
|
221 |
+
{"text": "View of college from ground", "image": "gnd_image/221.jpg", "conditioning_image": "sat_image/221.jpg"}
|
222 |
+
{"text": "Street view of college", "image": "gnd_image/222.jpg", "conditioning_image": "sat_image/222.jpg"}
|
223 |
+
{"text": "Ground view of university", "image": "gnd_image/223.jpg", "conditioning_image": "sat_image/223.jpg"}
|
224 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/224.jpg", "conditioning_image": "sat_image/224.jpg"}
|
225 |
+
{"text": "Street view of college", "image": "gnd_image/225.jpg", "conditioning_image": "sat_image/225.jpg"}
|
226 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/226.jpg", "conditioning_image": "sat_image/226.jpg"}
|
227 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/227.jpg", "conditioning_image": "sat_image/227.jpg"}
|
228 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/228.jpg", "conditioning_image": "sat_image/228.jpg"}
|
229 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/229.jpg", "conditioning_image": "sat_image/229.jpg"}
|
230 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/230.jpg", "conditioning_image": "sat_image/230.jpg"}
|
231 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/231.jpg", "conditioning_image": "sat_image/231.jpg"}
|
232 |
+
{"text": "Ground view of university", "image": "gnd_image/232.jpg", "conditioning_image": "sat_image/232.jpg"}
|
233 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/233.jpg", "conditioning_image": "sat_image/233.jpg"}
|
234 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/234.jpg", "conditioning_image": "sat_image/234.jpg"}
|
235 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/235.jpg", "conditioning_image": "sat_image/235.jpg"}
|
236 |
+
{"text": "Ground view of university", "image": "gnd_image/236.jpg", "conditioning_image": "sat_image/236.jpg"}
|
237 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/237.jpg", "conditioning_image": "sat_image/237.jpg"}
|
238 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/238.jpg", "conditioning_image": "sat_image/238.jpg"}
|
239 |
+
{"text": "Ground view of university", "image": "gnd_image/239.jpg", "conditioning_image": "sat_image/239.jpg"}
|
240 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/240.jpg", "conditioning_image": "sat_image/240.jpg"}
|
241 |
+
{"text": "View of college from ground", "image": "gnd_image/241.jpg", "conditioning_image": "sat_image/241.jpg"}
|
242 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/242.jpg", "conditioning_image": "sat_image/242.jpg"}
|
243 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/243.jpg", "conditioning_image": "sat_image/243.jpg"}
|
244 |
+
{"text": "View of college from ground", "image": "gnd_image/244.jpg", "conditioning_image": "sat_image/244.jpg"}
|
245 |
+
{"text": "Ground view of university", "image": "gnd_image/245.jpg", "conditioning_image": "sat_image/245.jpg"}
|
246 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/246.jpg", "conditioning_image": "sat_image/246.jpg"}
|
247 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/247.jpg", "conditioning_image": "sat_image/247.jpg"}
|
248 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/248.jpg", "conditioning_image": "sat_image/248.jpg"}
|
249 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/249.jpg", "conditioning_image": "sat_image/249.jpg"}
|
250 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/250.jpg", "conditioning_image": "sat_image/250.jpg"}
|
251 |
+
{"text": "View of college from ground", "image": "gnd_image/251.jpg", "conditioning_image": "sat_image/251.jpg"}
|
252 |
+
{"text": "View of college from ground", "image": "gnd_image/252.jpg", "conditioning_image": "sat_image/252.jpg"}
|
253 |
+
{"text": "Street view of college", "image": "gnd_image/253.jpg", "conditioning_image": "sat_image/253.jpg"}
|
254 |
+
{"text": "View of college from ground", "image": "gnd_image/254.jpg", "conditioning_image": "sat_image/254.jpg"}
|
255 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/255.jpg", "conditioning_image": "sat_image/255.jpg"}
|
256 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/256.jpg", "conditioning_image": "sat_image/256.jpg"}
|
257 |
+
{"text": "Ground view of university", "image": "gnd_image/257.jpg", "conditioning_image": "sat_image/257.jpg"}
|
258 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/258.jpg", "conditioning_image": "sat_image/258.jpg"}
|
259 |
+
{"text": "View of college from ground", "image": "gnd_image/259.jpg", "conditioning_image": "sat_image/259.jpg"}
|
260 |
+
{"text": "Street view of college", "image": "gnd_image/260.jpg", "conditioning_image": "sat_image/260.jpg"}
|
261 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/261.jpg", "conditioning_image": "sat_image/261.jpg"}
|
262 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/262.jpg", "conditioning_image": "sat_image/262.jpg"}
|
263 |
+
{"text": "Street view of college", "image": "gnd_image/263.jpg", "conditioning_image": "sat_image/263.jpg"}
|
264 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/264.jpg", "conditioning_image": "sat_image/264.jpg"}
|
265 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/265.jpg", "conditioning_image": "sat_image/265.jpg"}
|
266 |
+
{"text": "Street view of college", "image": "gnd_image/266.jpg", "conditioning_image": "sat_image/266.jpg"}
|
267 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/267.jpg", "conditioning_image": "sat_image/267.jpg"}
|
268 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/268.jpg", "conditioning_image": "sat_image/268.jpg"}
|
269 |
+
{"text": "Street view of college", "image": "gnd_image/269.jpg", "conditioning_image": "sat_image/269.jpg"}
|
270 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/270.jpg", "conditioning_image": "sat_image/270.jpg"}
|
271 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/271.jpg", "conditioning_image": "sat_image/271.jpg"}
|
272 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/272.jpg", "conditioning_image": "sat_image/272.jpg"}
|
273 |
+
{"text": "Ground view of university", "image": "gnd_image/273.jpg", "conditioning_image": "sat_image/273.jpg"}
|
274 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/274.jpg", "conditioning_image": "sat_image/274.jpg"}
|
275 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/275.jpg", "conditioning_image": "sat_image/275.jpg"}
|
276 |
+
{"text": "View of college from ground", "image": "gnd_image/276.jpg", "conditioning_image": "sat_image/276.jpg"}
|
277 |
+
{"text": "Ground view of university", "image": "gnd_image/277.jpg", "conditioning_image": "sat_image/277.jpg"}
|
278 |
+
{"text": "Ground view of university", "image": "gnd_image/278.jpg", "conditioning_image": "sat_image/278.jpg"}
|
279 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/279.jpg", "conditioning_image": "sat_image/279.jpg"}
|
280 |
+
{"text": "Ground view of university", "image": "gnd_image/280.jpg", "conditioning_image": "sat_image/280.jpg"}
|
281 |
+
{"text": "Ground view of university", "image": "gnd_image/281.jpg", "conditioning_image": "sat_image/281.jpg"}
|
282 |
+
{"text": "View of college from ground", "image": "gnd_image/282.jpg", "conditioning_image": "sat_image/282.jpg"}
|
283 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/283.jpg", "conditioning_image": "sat_image/283.jpg"}
|
284 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/284.jpg", "conditioning_image": "sat_image/284.jpg"}
|
285 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/285.jpg", "conditioning_image": "sat_image/285.jpg"}
|
286 |
+
{"text": "View of college from ground", "image": "gnd_image/286.jpg", "conditioning_image": "sat_image/286.jpg"}
|
287 |
+
{"text": "Street view of college", "image": "gnd_image/287.jpg", "conditioning_image": "sat_image/287.jpg"}
|
288 |
+
{"text": "Ground view of university", "image": "gnd_image/288.jpg", "conditioning_image": "sat_image/288.jpg"}
|
289 |
+
{"text": "Street view of college", "image": "gnd_image/289.jpg", "conditioning_image": "sat_image/289.jpg"}
|
290 |
+
{"text": "Street view of college", "image": "gnd_image/290.jpg", "conditioning_image": "sat_image/290.jpg"}
|
291 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/291.jpg", "conditioning_image": "sat_image/291.jpg"}
|
292 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/292.jpg", "conditioning_image": "sat_image/292.jpg"}
|
293 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/293.jpg", "conditioning_image": "sat_image/293.jpg"}
|
294 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/294.jpg", "conditioning_image": "sat_image/294.jpg"}
|
295 |
+
{"text": "Street view of college", "image": "gnd_image/295.jpg", "conditioning_image": "sat_image/295.jpg"}
|
296 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/296.jpg", "conditioning_image": "sat_image/296.jpg"}
|
297 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/297.jpg", "conditioning_image": "sat_image/297.jpg"}
|
298 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/298.jpg", "conditioning_image": "sat_image/298.jpg"}
|
299 |
+
{"text": "View of college from ground", "image": "gnd_image/299.jpg", "conditioning_image": "sat_image/299.jpg"}
|
300 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/300.jpg", "conditioning_image": "sat_image/300.jpg"}
|
301 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/301.jpg", "conditioning_image": "sat_image/301.jpg"}
|
302 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/302.jpg", "conditioning_image": "sat_image/302.jpg"}
|
303 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/303.jpg", "conditioning_image": "sat_image/303.jpg"}
|
304 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/304.jpg", "conditioning_image": "sat_image/304.jpg"}
|
305 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/305.jpg", "conditioning_image": "sat_image/305.jpg"}
|
306 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/306.jpg", "conditioning_image": "sat_image/306.jpg"}
|
307 |
+
{"text": "Ground view of university", "image": "gnd_image/307.jpg", "conditioning_image": "sat_image/307.jpg"}
|
308 |
+
{"text": "View of college from ground", "image": "gnd_image/308.jpg", "conditioning_image": "sat_image/308.jpg"}
|
309 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/309.jpg", "conditioning_image": "sat_image/309.jpg"}
|
310 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/310.jpg", "conditioning_image": "sat_image/310.jpg"}
|
311 |
+
{"text": "View of college from ground", "image": "gnd_image/311.jpg", "conditioning_image": "sat_image/311.jpg"}
|
312 |
+
{"text": "Ground view of university", "image": "gnd_image/312.jpg", "conditioning_image": "sat_image/312.jpg"}
|
313 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/313.jpg", "conditioning_image": "sat_image/313.jpg"}
|
314 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/314.jpg", "conditioning_image": "sat_image/314.jpg"}
|
315 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/315.jpg", "conditioning_image": "sat_image/315.jpg"}
|
316 |
+
{"text": "Street view of college", "image": "gnd_image/316.jpg", "conditioning_image": "sat_image/316.jpg"}
|
317 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/317.jpg", "conditioning_image": "sat_image/317.jpg"}
|
318 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/318.jpg", "conditioning_image": "sat_image/318.jpg"}
|
319 |
+
{"text": "View of college from ground", "image": "gnd_image/319.jpg", "conditioning_image": "sat_image/319.jpg"}
|
320 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/320.jpg", "conditioning_image": "sat_image/320.jpg"}
|
321 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/321.jpg", "conditioning_image": "sat_image/321.jpg"}
|
322 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/322.jpg", "conditioning_image": "sat_image/322.jpg"}
|
323 |
+
{"text": "Ground view of university", "image": "gnd_image/323.jpg", "conditioning_image": "sat_image/323.jpg"}
|
324 |
+
{"text": "Ground view of university", "image": "gnd_image/324.jpg", "conditioning_image": "sat_image/324.jpg"}
|
325 |
+
{"text": "Ground view of university", "image": "gnd_image/325.jpg", "conditioning_image": "sat_image/325.jpg"}
|
326 |
+
{"text": "View of college from ground", "image": "gnd_image/326.jpg", "conditioning_image": "sat_image/326.jpg"}
|
327 |
+
{"text": "Street view of college", "image": "gnd_image/327.jpg", "conditioning_image": "sat_image/327.jpg"}
|
328 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/328.jpg", "conditioning_image": "sat_image/328.jpg"}
|
329 |
+
{"text": "Ground view of university", "image": "gnd_image/329.jpg", "conditioning_image": "sat_image/329.jpg"}
|
330 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/330.jpg", "conditioning_image": "sat_image/330.jpg"}
|
331 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/331.jpg", "conditioning_image": "sat_image/331.jpg"}
|
332 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/332.jpg", "conditioning_image": "sat_image/332.jpg"}
|
333 |
+
{"text": "View of college from ground", "image": "gnd_image/333.jpg", "conditioning_image": "sat_image/333.jpg"}
|
334 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/334.jpg", "conditioning_image": "sat_image/334.jpg"}
|
335 |
+
{"text": "View of college from ground", "image": "gnd_image/335.jpg", "conditioning_image": "sat_image/335.jpg"}
|
336 |
+
{"text": "Street view of college", "image": "gnd_image/336.jpg", "conditioning_image": "sat_image/336.jpg"}
|
337 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/337.jpg", "conditioning_image": "sat_image/337.jpg"}
|
338 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/338.jpg", "conditioning_image": "sat_image/338.jpg"}
|
339 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/339.jpg", "conditioning_image": "sat_image/339.jpg"}
|
340 |
+
{"text": "Ground view of university", "image": "gnd_image/340.jpg", "conditioning_image": "sat_image/340.jpg"}
|
341 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/341.jpg", "conditioning_image": "sat_image/341.jpg"}
|
342 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/342.jpg", "conditioning_image": "sat_image/342.jpg"}
|
343 |
+
{"text": "Ground view of university", "image": "gnd_image/343.jpg", "conditioning_image": "sat_image/343.jpg"}
|
344 |
+
{"text": "Street view of college", "image": "gnd_image/344.jpg", "conditioning_image": "sat_image/344.jpg"}
|
345 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/345.jpg", "conditioning_image": "sat_image/345.jpg"}
|
346 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/346.jpg", "conditioning_image": "sat_image/346.jpg"}
|
347 |
+
{"text": "Ground view of university", "image": "gnd_image/347.jpg", "conditioning_image": "sat_image/347.jpg"}
|
348 |
+
{"text": "Ground view of university", "image": "gnd_image/348.jpg", "conditioning_image": "sat_image/348.jpg"}
|
349 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/349.jpg", "conditioning_image": "sat_image/349.jpg"}
|
350 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/350.jpg", "conditioning_image": "sat_image/350.jpg"}
|
351 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/351.jpg", "conditioning_image": "sat_image/351.jpg"}
|
352 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/352.jpg", "conditioning_image": "sat_image/352.jpg"}
|
353 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/353.jpg", "conditioning_image": "sat_image/353.jpg"}
|
354 |
+
{"text": "Street view of college", "image": "gnd_image/354.jpg", "conditioning_image": "sat_image/354.jpg"}
|
355 |
+
{"text": "View of college from ground", "image": "gnd_image/355.jpg", "conditioning_image": "sat_image/355.jpg"}
|
356 |
+
{"text": "View of college from ground", "image": "gnd_image/356.jpg", "conditioning_image": "sat_image/356.jpg"}
|
357 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/357.jpg", "conditioning_image": "sat_image/357.jpg"}
|
358 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/358.jpg", "conditioning_image": "sat_image/358.jpg"}
|
359 |
+
{"text": "View of college from ground", "image": "gnd_image/359.jpg", "conditioning_image": "sat_image/359.jpg"}
|
360 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/360.jpg", "conditioning_image": "sat_image/360.jpg"}
|
361 |
+
{"text": "Street view of college", "image": "gnd_image/361.jpg", "conditioning_image": "sat_image/361.jpg"}
|
362 |
+
{"text": "View of college from ground", "image": "gnd_image/362.jpg", "conditioning_image": "sat_image/362.jpg"}
|
363 |
+
{"text": "Ground view of university", "image": "gnd_image/363.jpg", "conditioning_image": "sat_image/363.jpg"}
|
364 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/364.jpg", "conditioning_image": "sat_image/364.jpg"}
|
365 |
+
{"text": "Ground view of university", "image": "gnd_image/365.jpg", "conditioning_image": "sat_image/365.jpg"}
|
366 |
+
{"text": "Street view of college", "image": "gnd_image/366.jpg", "conditioning_image": "sat_image/366.jpg"}
|
367 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/367.jpg", "conditioning_image": "sat_image/367.jpg"}
|
368 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/368.jpg", "conditioning_image": "sat_image/368.jpg"}
|
369 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/369.jpg", "conditioning_image": "sat_image/369.jpg"}
|
370 |
+
{"text": "Street view of college", "image": "gnd_image/370.jpg", "conditioning_image": "sat_image/370.jpg"}
|
371 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/371.jpg", "conditioning_image": "sat_image/371.jpg"}
|
372 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/372.jpg", "conditioning_image": "sat_image/372.jpg"}
|
373 |
+
{"text": "View of college from ground", "image": "gnd_image/373.jpg", "conditioning_image": "sat_image/373.jpg"}
|
374 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/374.jpg", "conditioning_image": "sat_image/374.jpg"}
|
375 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/375.jpg", "conditioning_image": "sat_image/375.jpg"}
|
376 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/376.jpg", "conditioning_image": "sat_image/376.jpg"}
|
377 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/377.jpg", "conditioning_image": "sat_image/377.jpg"}
|
378 |
+
{"text": "Street view of college", "image": "gnd_image/378.jpg", "conditioning_image": "sat_image/378.jpg"}
|
379 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/379.jpg", "conditioning_image": "sat_image/379.jpg"}
|
380 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/380.jpg", "conditioning_image": "sat_image/380.jpg"}
|
381 |
+
{"text": "Ground view of university", "image": "gnd_image/381.jpg", "conditioning_image": "sat_image/381.jpg"}
|
382 |
+
{"text": "View of college from ground", "image": "gnd_image/382.jpg", "conditioning_image": "sat_image/382.jpg"}
|
383 |
+
{"text": "Street view of college", "image": "gnd_image/383.jpg", "conditioning_image": "sat_image/383.jpg"}
|
384 |
+
{"text": "View of college from ground", "image": "gnd_image/384.jpg", "conditioning_image": "sat_image/384.jpg"}
|
385 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/385.jpg", "conditioning_image": "sat_image/385.jpg"}
|
386 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/386.jpg", "conditioning_image": "sat_image/386.jpg"}
|
387 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/387.jpg", "conditioning_image": "sat_image/387.jpg"}
|
388 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/388.jpg", "conditioning_image": "sat_image/388.jpg"}
|
389 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/389.jpg", "conditioning_image": "sat_image/389.jpg"}
|
390 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/390.jpg", "conditioning_image": "sat_image/390.jpg"}
|
391 |
+
{"text": "Ground view of university", "image": "gnd_image/391.jpg", "conditioning_image": "sat_image/391.jpg"}
|
392 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/392.jpg", "conditioning_image": "sat_image/392.jpg"}
|
393 |
+
{"text": "Street view of college", "image": "gnd_image/393.jpg", "conditioning_image": "sat_image/393.jpg"}
|
394 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/394.jpg", "conditioning_image": "sat_image/394.jpg"}
|
395 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/395.jpg", "conditioning_image": "sat_image/395.jpg"}
|
396 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/396.jpg", "conditioning_image": "sat_image/396.jpg"}
|
397 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/397.jpg", "conditioning_image": "sat_image/397.jpg"}
|
398 |
+
{"text": "Ground view of university", "image": "gnd_image/398.jpg", "conditioning_image": "sat_image/398.jpg"}
|
399 |
+
{"text": "View of college from ground", "image": "gnd_image/399.jpg", "conditioning_image": "sat_image/399.jpg"}
|
400 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/400.jpg", "conditioning_image": "sat_image/400.jpg"}
|
401 |
+
{"text": "View of college from ground", "image": "gnd_image/401.jpg", "conditioning_image": "sat_image/401.jpg"}
|
402 |
+
{"text": "Street view of college", "image": "gnd_image/402.jpg", "conditioning_image": "sat_image/402.jpg"}
|
403 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/403.jpg", "conditioning_image": "sat_image/403.jpg"}
|
404 |
+
{"text": "Street view of college", "image": "gnd_image/404.jpg", "conditioning_image": "sat_image/404.jpg"}
|
405 |
+
{"text": "Ground view of university", "image": "gnd_image/405.jpg", "conditioning_image": "sat_image/405.jpg"}
|
406 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/406.jpg", "conditioning_image": "sat_image/406.jpg"}
|
407 |
+
{"text": "View of college from ground", "image": "gnd_image/407.jpg", "conditioning_image": "sat_image/407.jpg"}
|
408 |
+
{"text": "Street view of college", "image": "gnd_image/408.jpg", "conditioning_image": "sat_image/408.jpg"}
|
409 |
+
{"text": "View of college from ground", "image": "gnd_image/409.jpg", "conditioning_image": "sat_image/409.jpg"}
|
410 |
+
{"text": "View of college from ground", "image": "gnd_image/410.jpg", "conditioning_image": "sat_image/410.jpg"}
|
411 |
+
{"text": "Street view of college", "image": "gnd_image/411.jpg", "conditioning_image": "sat_image/411.jpg"}
|
412 |
+
{"text": "View of college from ground", "image": "gnd_image/412.jpg", "conditioning_image": "sat_image/412.jpg"}
|
413 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/413.jpg", "conditioning_image": "sat_image/413.jpg"}
|
414 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/414.jpg", "conditioning_image": "sat_image/414.jpg"}
|
415 |
+
{"text": "Street view of college", "image": "gnd_image/415.jpg", "conditioning_image": "sat_image/415.jpg"}
|
416 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/416.jpg", "conditioning_image": "sat_image/416.jpg"}
|
417 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/417.jpg", "conditioning_image": "sat_image/417.jpg"}
|
418 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/418.jpg", "conditioning_image": "sat_image/418.jpg"}
|
419 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/419.jpg", "conditioning_image": "sat_image/419.jpg"}
|
420 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/420.jpg", "conditioning_image": "sat_image/420.jpg"}
|
421 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/421.jpg", "conditioning_image": "sat_image/421.jpg"}
|
422 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/422.jpg", "conditioning_image": "sat_image/422.jpg"}
|
423 |
+
{"text": "Ground view of university", "image": "gnd_image/423.jpg", "conditioning_image": "sat_image/423.jpg"}
|
424 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/424.jpg", "conditioning_image": "sat_image/424.jpg"}
|
425 |
+
{"text": "Ground view of university", "image": "gnd_image/425.jpg", "conditioning_image": "sat_image/425.jpg"}
|
426 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/426.jpg", "conditioning_image": "sat_image/426.jpg"}
|
427 |
+
{"text": "View of college from ground", "image": "gnd_image/427.jpg", "conditioning_image": "sat_image/427.jpg"}
|
428 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/428.jpg", "conditioning_image": "sat_image/428.jpg"}
|
429 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/429.jpg", "conditioning_image": "sat_image/429.jpg"}
|
430 |
+
{"text": "Ground view of university", "image": "gnd_image/430.jpg", "conditioning_image": "sat_image/430.jpg"}
|
431 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/431.jpg", "conditioning_image": "sat_image/431.jpg"}
|
432 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/432.jpg", "conditioning_image": "sat_image/432.jpg"}
|
433 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/433.jpg", "conditioning_image": "sat_image/433.jpg"}
|
434 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/434.jpg", "conditioning_image": "sat_image/434.jpg"}
|
435 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/435.jpg", "conditioning_image": "sat_image/435.jpg"}
|
436 |
+
{"text": "Street view of college", "image": "gnd_image/436.jpg", "conditioning_image": "sat_image/436.jpg"}
|
437 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/437.jpg", "conditioning_image": "sat_image/437.jpg"}
|
438 |
+
{"text": "Street view of college", "image": "gnd_image/438.jpg", "conditioning_image": "sat_image/438.jpg"}
|
439 |
+
{"text": "Street view of college", "image": "gnd_image/439.jpg", "conditioning_image": "sat_image/439.jpg"}
|
440 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/440.jpg", "conditioning_image": "sat_image/440.jpg"}
|
441 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/441.jpg", "conditioning_image": "sat_image/441.jpg"}
|
442 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/442.jpg", "conditioning_image": "sat_image/442.jpg"}
|
443 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/443.jpg", "conditioning_image": "sat_image/443.jpg"}
|
444 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/444.jpg", "conditioning_image": "sat_image/444.jpg"}
|
445 |
+
{"text": "Street view of college", "image": "gnd_image/445.jpg", "conditioning_image": "sat_image/445.jpg"}
|
446 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/446.jpg", "conditioning_image": "sat_image/446.jpg"}
|
447 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/447.jpg", "conditioning_image": "sat_image/447.jpg"}
|
448 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/448.jpg", "conditioning_image": "sat_image/448.jpg"}
|
449 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/449.jpg", "conditioning_image": "sat_image/449.jpg"}
|
450 |
+
{"text": "Street view of college", "image": "gnd_image/450.jpg", "conditioning_image": "sat_image/450.jpg"}
|
451 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/451.jpg", "conditioning_image": "sat_image/451.jpg"}
|
452 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/452.jpg", "conditioning_image": "sat_image/452.jpg"}
|
453 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/453.jpg", "conditioning_image": "sat_image/453.jpg"}
|
454 |
+
{"text": "View of college from ground", "image": "gnd_image/454.jpg", "conditioning_image": "sat_image/454.jpg"}
|
455 |
+
{"text": "View of college from ground", "image": "gnd_image/455.jpg", "conditioning_image": "sat_image/455.jpg"}
|
456 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/456.jpg", "conditioning_image": "sat_image/456.jpg"}
|
457 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/457.jpg", "conditioning_image": "sat_image/457.jpg"}
|
458 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/458.jpg", "conditioning_image": "sat_image/458.jpg"}
|
459 |
+
{"text": "Ground view of university", "image": "gnd_image/459.jpg", "conditioning_image": "sat_image/459.jpg"}
|
460 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/460.jpg", "conditioning_image": "sat_image/460.jpg"}
|
461 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/461.jpg", "conditioning_image": "sat_image/461.jpg"}
|
462 |
+
{"text": "Ground view of university", "image": "gnd_image/462.jpg", "conditioning_image": "sat_image/462.jpg"}
|
463 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/463.jpg", "conditioning_image": "sat_image/463.jpg"}
|
464 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/464.jpg", "conditioning_image": "sat_image/464.jpg"}
|
465 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/465.jpg", "conditioning_image": "sat_image/465.jpg"}
|
466 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/466.jpg", "conditioning_image": "sat_image/466.jpg"}
|
467 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/467.jpg", "conditioning_image": "sat_image/467.jpg"}
|
468 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/468.jpg", "conditioning_image": "sat_image/468.jpg"}
|
469 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/469.jpg", "conditioning_image": "sat_image/469.jpg"}
|
470 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/470.jpg", "conditioning_image": "sat_image/470.jpg"}
|
471 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/471.jpg", "conditioning_image": "sat_image/471.jpg"}
|
472 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/472.jpg", "conditioning_image": "sat_image/472.jpg"}
|
473 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/473.jpg", "conditioning_image": "sat_image/473.jpg"}
|
474 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/474.jpg", "conditioning_image": "sat_image/474.jpg"}
|
475 |
+
{"text": "Ground view of university", "image": "gnd_image/475.jpg", "conditioning_image": "sat_image/475.jpg"}
|
476 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/476.jpg", "conditioning_image": "sat_image/476.jpg"}
|
477 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/477.jpg", "conditioning_image": "sat_image/477.jpg"}
|
478 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/478.jpg", "conditioning_image": "sat_image/478.jpg"}
|
479 |
+
{"text": "Street view of college", "image": "gnd_image/479.jpg", "conditioning_image": "sat_image/479.jpg"}
|
480 |
+
{"text": "Street view of college", "image": "gnd_image/480.jpg", "conditioning_image": "sat_image/480.jpg"}
|
481 |
+
{"text": "Street view of college", "image": "gnd_image/481.jpg", "conditioning_image": "sat_image/481.jpg"}
|
482 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/482.jpg", "conditioning_image": "sat_image/482.jpg"}
|
483 |
+
{"text": "Ground view of university", "image": "gnd_image/483.jpg", "conditioning_image": "sat_image/483.jpg"}
|
484 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/484.jpg", "conditioning_image": "sat_image/484.jpg"}
|
485 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/485.jpg", "conditioning_image": "sat_image/485.jpg"}
|
486 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/486.jpg", "conditioning_image": "sat_image/486.jpg"}
|
487 |
+
{"text": "Ground view of university", "image": "gnd_image/487.jpg", "conditioning_image": "sat_image/487.jpg"}
|
488 |
+
{"text": "Street view of college", "image": "gnd_image/488.jpg", "conditioning_image": "sat_image/488.jpg"}
|
489 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/489.jpg", "conditioning_image": "sat_image/489.jpg"}
|
490 |
+
{"text": "Ground view of university", "image": "gnd_image/490.jpg", "conditioning_image": "sat_image/490.jpg"}
|
491 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/491.jpg", "conditioning_image": "sat_image/491.jpg"}
|
492 |
+
{"text": "Ground view of university", "image": "gnd_image/492.jpg", "conditioning_image": "sat_image/492.jpg"}
|
493 |
+
{"text": "Ground view of university", "image": "gnd_image/493.jpg", "conditioning_image": "sat_image/493.jpg"}
|
494 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/494.jpg", "conditioning_image": "sat_image/494.jpg"}
|
495 |
+
{"text": "View of college from ground", "image": "gnd_image/495.jpg", "conditioning_image": "sat_image/495.jpg"}
|
496 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/496.jpg", "conditioning_image": "sat_image/496.jpg"}
|
497 |
+
{"text": "Ground view of university", "image": "gnd_image/497.jpg", "conditioning_image": "sat_image/497.jpg"}
|
498 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/498.jpg", "conditioning_image": "sat_image/498.jpg"}
|
499 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/499.jpg", "conditioning_image": "sat_image/499.jpg"}
|
500 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/500.jpg", "conditioning_image": "sat_image/500.jpg"}
|
501 |
+
{"text": "View of college from ground", "image": "gnd_image/501.jpg", "conditioning_image": "sat_image/501.jpg"}
|
502 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/502.jpg", "conditioning_image": "sat_image/502.jpg"}
|
503 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/503.jpg", "conditioning_image": "sat_image/503.jpg"}
|
504 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/504.jpg", "conditioning_image": "sat_image/504.jpg"}
|
505 |
+
{"text": "Street view of college", "image": "gnd_image/505.jpg", "conditioning_image": "sat_image/505.jpg"}
|
506 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/506.jpg", "conditioning_image": "sat_image/506.jpg"}
|
507 |
+
{"text": "Ground view of university", "image": "gnd_image/507.jpg", "conditioning_image": "sat_image/507.jpg"}
|
508 |
+
{"text": "Street view of college", "image": "gnd_image/508.jpg", "conditioning_image": "sat_image/508.jpg"}
|
509 |
+
{"text": "Ground view of university", "image": "gnd_image/509.jpg", "conditioning_image": "sat_image/509.jpg"}
|
510 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/510.jpg", "conditioning_image": "sat_image/510.jpg"}
|
511 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/511.jpg", "conditioning_image": "sat_image/511.jpg"}
|
512 |
+
{"text": "Street view of college", "image": "gnd_image/512.jpg", "conditioning_image": "sat_image/512.jpg"}
|
513 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/513.jpg", "conditioning_image": "sat_image/513.jpg"}
|
514 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/514.jpg", "conditioning_image": "sat_image/514.jpg"}
|
515 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/515.jpg", "conditioning_image": "sat_image/515.jpg"}
|
516 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/516.jpg", "conditioning_image": "sat_image/516.jpg"}
|
517 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/517.jpg", "conditioning_image": "sat_image/517.jpg"}
|
518 |
+
{"text": "Street view of college", "image": "gnd_image/518.jpg", "conditioning_image": "sat_image/518.jpg"}
|
519 |
+
{"text": "Street view of college", "image": "gnd_image/519.jpg", "conditioning_image": "sat_image/519.jpg"}
|
520 |
+
{"text": "Street view of college", "image": "gnd_image/520.jpg", "conditioning_image": "sat_image/520.jpg"}
|
521 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/521.jpg", "conditioning_image": "sat_image/521.jpg"}
|
522 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/522.jpg", "conditioning_image": "sat_image/522.jpg"}
|
523 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/523.jpg", "conditioning_image": "sat_image/523.jpg"}
|
524 |
+
{"text": "View of college from ground", "image": "gnd_image/524.jpg", "conditioning_image": "sat_image/524.jpg"}
|
525 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/525.jpg", "conditioning_image": "sat_image/525.jpg"}
|
526 |
+
{"text": "Street view of college", "image": "gnd_image/526.jpg", "conditioning_image": "sat_image/526.jpg"}
|
527 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/527.jpg", "conditioning_image": "sat_image/527.jpg"}
|
528 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/528.jpg", "conditioning_image": "sat_image/528.jpg"}
|
529 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/529.jpg", "conditioning_image": "sat_image/529.jpg"}
|
530 |
+
{"text": "View of college from ground", "image": "gnd_image/530.jpg", "conditioning_image": "sat_image/530.jpg"}
|
531 |
+
{"text": "View of college from ground", "image": "gnd_image/531.jpg", "conditioning_image": "sat_image/531.jpg"}
|
532 |
+
{"text": "View of college from ground", "image": "gnd_image/532.jpg", "conditioning_image": "sat_image/532.jpg"}
|
533 |
+
{"text": "Street view of college", "image": "gnd_image/533.jpg", "conditioning_image": "sat_image/533.jpg"}
|
534 |
+
{"text": "Ground view of university", "image": "gnd_image/534.jpg", "conditioning_image": "sat_image/534.jpg"}
|
535 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/535.jpg", "conditioning_image": "sat_image/535.jpg"}
|
536 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/536.jpg", "conditioning_image": "sat_image/536.jpg"}
|
537 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/537.jpg", "conditioning_image": "sat_image/537.jpg"}
|
538 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/538.jpg", "conditioning_image": "sat_image/538.jpg"}
|
539 |
+
{"text": "Ground view of university", "image": "gnd_image/539.jpg", "conditioning_image": "sat_image/539.jpg"}
|
540 |
+
{"text": "View of college from ground", "image": "gnd_image/540.jpg", "conditioning_image": "sat_image/540.jpg"}
|
541 |
+
{"text": "Street view of college", "image": "gnd_image/541.jpg", "conditioning_image": "sat_image/541.jpg"}
|
542 |
+
{"text": "Ground view of university", "image": "gnd_image/542.jpg", "conditioning_image": "sat_image/542.jpg"}
|
543 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/543.jpg", "conditioning_image": "sat_image/543.jpg"}
|
544 |
+
{"text": "View of college from ground", "image": "gnd_image/544.jpg", "conditioning_image": "sat_image/544.jpg"}
|
545 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/545.jpg", "conditioning_image": "sat_image/545.jpg"}
|
546 |
+
{"text": "Street view of college", "image": "gnd_image/546.jpg", "conditioning_image": "sat_image/546.jpg"}
|
547 |
+
{"text": "Ground view of university", "image": "gnd_image/547.jpg", "conditioning_image": "sat_image/547.jpg"}
|
548 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/548.jpg", "conditioning_image": "sat_image/548.jpg"}
|
549 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/549.jpg", "conditioning_image": "sat_image/549.jpg"}
|
550 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/550.jpg", "conditioning_image": "sat_image/550.jpg"}
|
551 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/551.jpg", "conditioning_image": "sat_image/551.jpg"}
|
552 |
+
{"text": "Street view of college", "image": "gnd_image/552.jpg", "conditioning_image": "sat_image/552.jpg"}
|
553 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/553.jpg", "conditioning_image": "sat_image/553.jpg"}
|
554 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/554.jpg", "conditioning_image": "sat_image/554.jpg"}
|
555 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/555.jpg", "conditioning_image": "sat_image/555.jpg"}
|
556 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/556.jpg", "conditioning_image": "sat_image/556.jpg"}
|
557 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/557.jpg", "conditioning_image": "sat_image/557.jpg"}
|
558 |
+
{"text": "Street view of college", "image": "gnd_image/558.jpg", "conditioning_image": "sat_image/558.jpg"}
|
559 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/559.jpg", "conditioning_image": "sat_image/559.jpg"}
|
560 |
+
{"text": "Street view of college", "image": "gnd_image/560.jpg", "conditioning_image": "sat_image/560.jpg"}
|
561 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/561.jpg", "conditioning_image": "sat_image/561.jpg"}
|
562 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/562.jpg", "conditioning_image": "sat_image/562.jpg"}
|
563 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/563.jpg", "conditioning_image": "sat_image/563.jpg"}
|
564 |
+
{"text": "Street view of college", "image": "gnd_image/564.jpg", "conditioning_image": "sat_image/564.jpg"}
|
565 |
+
{"text": "Street view of college", "image": "gnd_image/565.jpg", "conditioning_image": "sat_image/565.jpg"}
|
566 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/566.jpg", "conditioning_image": "sat_image/566.jpg"}
|
567 |
+
{"text": "Street view of college", "image": "gnd_image/567.jpg", "conditioning_image": "sat_image/567.jpg"}
|
568 |
+
{"text": "Street view of college", "image": "gnd_image/568.jpg", "conditioning_image": "sat_image/568.jpg"}
|
569 |
+
{"text": "View of college from ground", "image": "gnd_image/569.jpg", "conditioning_image": "sat_image/569.jpg"}
|
570 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/570.jpg", "conditioning_image": "sat_image/570.jpg"}
|
571 |
+
{"text": "Ground view of university", "image": "gnd_image/571.jpg", "conditioning_image": "sat_image/571.jpg"}
|
572 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/572.jpg", "conditioning_image": "sat_image/572.jpg"}
|
573 |
+
{"text": "Ground view of university", "image": "gnd_image/573.jpg", "conditioning_image": "sat_image/573.jpg"}
|
574 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/574.jpg", "conditioning_image": "sat_image/574.jpg"}
|
575 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/575.jpg", "conditioning_image": "sat_image/575.jpg"}
|
576 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/576.jpg", "conditioning_image": "sat_image/576.jpg"}
|
577 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/577.jpg", "conditioning_image": "sat_image/577.jpg"}
|
578 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/578.jpg", "conditioning_image": "sat_image/578.jpg"}
|
579 |
+
{"text": "Ground view of university", "image": "gnd_image/579.jpg", "conditioning_image": "sat_image/579.jpg"}
|
580 |
+
{"text": "View of college from ground", "image": "gnd_image/580.jpg", "conditioning_image": "sat_image/580.jpg"}
|
581 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/581.jpg", "conditioning_image": "sat_image/581.jpg"}
|
582 |
+
{"text": "Ground view of university", "image": "gnd_image/582.jpg", "conditioning_image": "sat_image/582.jpg"}
|
583 |
+
{"text": "View of college from ground", "image": "gnd_image/583.jpg", "conditioning_image": "sat_image/583.jpg"}
|
584 |
+
{"text": "Street view of college", "image": "gnd_image/584.jpg", "conditioning_image": "sat_image/584.jpg"}
|
585 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/585.jpg", "conditioning_image": "sat_image/585.jpg"}
|
586 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/586.jpg", "conditioning_image": "sat_image/586.jpg"}
|
587 |
+
{"text": "Ground view of university", "image": "gnd_image/587.jpg", "conditioning_image": "sat_image/587.jpg"}
|
588 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/588.jpg", "conditioning_image": "sat_image/588.jpg"}
|
589 |
+
{"text": "View of college from ground", "image": "gnd_image/589.jpg", "conditioning_image": "sat_image/589.jpg"}
|
590 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/590.jpg", "conditioning_image": "sat_image/590.jpg"}
|
591 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/591.jpg", "conditioning_image": "sat_image/591.jpg"}
|
592 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/592.jpg", "conditioning_image": "sat_image/592.jpg"}
|
593 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/593.jpg", "conditioning_image": "sat_image/593.jpg"}
|
594 |
+
{"text": "Ground view of university", "image": "gnd_image/594.jpg", "conditioning_image": "sat_image/594.jpg"}
|
595 |
+
{"text": "Ground view of university", "image": "gnd_image/595.jpg", "conditioning_image": "sat_image/595.jpg"}
|
596 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/596.jpg", "conditioning_image": "sat_image/596.jpg"}
|
597 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/597.jpg", "conditioning_image": "sat_image/597.jpg"}
|
598 |
+
{"text": "Ground view of university", "image": "gnd_image/598.jpg", "conditioning_image": "sat_image/598.jpg"}
|
599 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/599.jpg", "conditioning_image": "sat_image/599.jpg"}
|
600 |
+
{"text": "Ground view of university", "image": "gnd_image/600.jpg", "conditioning_image": "sat_image/600.jpg"}
|
601 |
+
{"text": "Ground view of university", "image": "gnd_image/601.jpg", "conditioning_image": "sat_image/601.jpg"}
|
602 |
+
{"text": "Ground view of university", "image": "gnd_image/602.jpg", "conditioning_image": "sat_image/602.jpg"}
|
603 |
+
{"text": "View of college from ground", "image": "gnd_image/603.jpg", "conditioning_image": "sat_image/603.jpg"}
|
604 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/604.jpg", "conditioning_image": "sat_image/604.jpg"}
|
605 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/605.jpg", "conditioning_image": "sat_image/605.jpg"}
|
606 |
+
{"text": "View of college from ground", "image": "gnd_image/606.jpg", "conditioning_image": "sat_image/606.jpg"}
|
607 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/607.jpg", "conditioning_image": "sat_image/607.jpg"}
|
608 |
+
{"text": "Street view of college", "image": "gnd_image/608.jpg", "conditioning_image": "sat_image/608.jpg"}
|
609 |
+
{"text": "Street view of college", "image": "gnd_image/609.jpg", "conditioning_image": "sat_image/609.jpg"}
|
610 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/610.jpg", "conditioning_image": "sat_image/610.jpg"}
|
611 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/611.jpg", "conditioning_image": "sat_image/611.jpg"}
|
612 |
+
{"text": "View of college from ground", "image": "gnd_image/612.jpg", "conditioning_image": "sat_image/612.jpg"}
|
613 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/613.jpg", "conditioning_image": "sat_image/613.jpg"}
|
614 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/614.jpg", "conditioning_image": "sat_image/614.jpg"}
|
615 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/615.jpg", "conditioning_image": "sat_image/615.jpg"}
|
616 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/616.jpg", "conditioning_image": "sat_image/616.jpg"}
|
617 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/617.jpg", "conditioning_image": "sat_image/617.jpg"}
|
618 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/618.jpg", "conditioning_image": "sat_image/618.jpg"}
|
619 |
+
{"text": "View of college from ground", "image": "gnd_image/619.jpg", "conditioning_image": "sat_image/619.jpg"}
|
620 |
+
{"text": "Street view of college", "image": "gnd_image/620.jpg", "conditioning_image": "sat_image/620.jpg"}
|
621 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/621.jpg", "conditioning_image": "sat_image/621.jpg"}
|
622 |
+
{"text": "Street view of college", "image": "gnd_image/622.jpg", "conditioning_image": "sat_image/622.jpg"}
|
623 |
+
{"text": "Ground view of university", "image": "gnd_image/623.jpg", "conditioning_image": "sat_image/623.jpg"}
|
624 |
+
{"text": "Street view of college", "image": "gnd_image/624.jpg", "conditioning_image": "sat_image/624.jpg"}
|
625 |
+
{"text": "Street view of college", "image": "gnd_image/625.jpg", "conditioning_image": "sat_image/625.jpg"}
|
626 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/626.jpg", "conditioning_image": "sat_image/626.jpg"}
|
627 |
+
{"text": "View of college from ground", "image": "gnd_image/627.jpg", "conditioning_image": "sat_image/627.jpg"}
|
628 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/628.jpg", "conditioning_image": "sat_image/628.jpg"}
|
629 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/629.jpg", "conditioning_image": "sat_image/629.jpg"}
|
630 |
+
{"text": "Ground view of university", "image": "gnd_image/630.jpg", "conditioning_image": "sat_image/630.jpg"}
|
631 |
+
{"text": "Street view of college", "image": "gnd_image/631.jpg", "conditioning_image": "sat_image/631.jpg"}
|
632 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/632.jpg", "conditioning_image": "sat_image/632.jpg"}
|
633 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/633.jpg", "conditioning_image": "sat_image/633.jpg"}
|
634 |
+
{"text": "View of college from ground", "image": "gnd_image/634.jpg", "conditioning_image": "sat_image/634.jpg"}
|
635 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/635.jpg", "conditioning_image": "sat_image/635.jpg"}
|
636 |
+
{"text": "Ground view of university", "image": "gnd_image/636.jpg", "conditioning_image": "sat_image/636.jpg"}
|
637 |
+
{"text": "Street view of college", "image": "gnd_image/637.jpg", "conditioning_image": "sat_image/637.jpg"}
|
638 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/638.jpg", "conditioning_image": "sat_image/638.jpg"}
|
639 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/639.jpg", "conditioning_image": "sat_image/639.jpg"}
|
640 |
+
{"text": "Street view of college", "image": "gnd_image/640.jpg", "conditioning_image": "sat_image/640.jpg"}
|
641 |
+
{"text": "Street view of college", "image": "gnd_image/641.jpg", "conditioning_image": "sat_image/641.jpg"}
|
642 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/642.jpg", "conditioning_image": "sat_image/642.jpg"}
|
643 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/643.jpg", "conditioning_image": "sat_image/643.jpg"}
|
644 |
+
{"text": "Street view of college", "image": "gnd_image/644.jpg", "conditioning_image": "sat_image/644.jpg"}
|
645 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/645.jpg", "conditioning_image": "sat_image/645.jpg"}
|
646 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/646.jpg", "conditioning_image": "sat_image/646.jpg"}
|
647 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/647.jpg", "conditioning_image": "sat_image/647.jpg"}
|
648 |
+
{"text": "Ground view of university", "image": "gnd_image/648.jpg", "conditioning_image": "sat_image/648.jpg"}
|
649 |
+
{"text": "Ground view of university", "image": "gnd_image/649.jpg", "conditioning_image": "sat_image/649.jpg"}
|
650 |
+
{"text": "Street view of college", "image": "gnd_image/650.jpg", "conditioning_image": "sat_image/650.jpg"}
|
651 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/651.jpg", "conditioning_image": "sat_image/651.jpg"}
|
652 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/652.jpg", "conditioning_image": "sat_image/652.jpg"}
|
653 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/653.jpg", "conditioning_image": "sat_image/653.jpg"}
|
654 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/654.jpg", "conditioning_image": "sat_image/654.jpg"}
|
655 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/655.jpg", "conditioning_image": "sat_image/655.jpg"}
|
656 |
+
{"text": "Street view of college", "image": "gnd_image/656.jpg", "conditioning_image": "sat_image/656.jpg"}
|
657 |
+
{"text": "Street view of college", "image": "gnd_image/657.jpg", "conditioning_image": "sat_image/657.jpg"}
|
658 |
+
{"text": "View of college from ground", "image": "gnd_image/658.jpg", "conditioning_image": "sat_image/658.jpg"}
|
659 |
+
{"text": "Street view of college", "image": "gnd_image/659.jpg", "conditioning_image": "sat_image/659.jpg"}
|
660 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/660.jpg", "conditioning_image": "sat_image/660.jpg"}
|
661 |
+
{"text": "View of college from ground", "image": "gnd_image/661.jpg", "conditioning_image": "sat_image/661.jpg"}
|
662 |
+
{"text": "View of college from ground", "image": "gnd_image/662.jpg", "conditioning_image": "sat_image/662.jpg"}
|
663 |
+
{"text": "View of college from ground", "image": "gnd_image/663.jpg", "conditioning_image": "sat_image/663.jpg"}
|
664 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/664.jpg", "conditioning_image": "sat_image/664.jpg"}
|
665 |
+
{"text": "View of college from ground", "image": "gnd_image/665.jpg", "conditioning_image": "sat_image/665.jpg"}
|
666 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/666.jpg", "conditioning_image": "sat_image/666.jpg"}
|
667 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/667.jpg", "conditioning_image": "sat_image/667.jpg"}
|
668 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/668.jpg", "conditioning_image": "sat_image/668.jpg"}
|
669 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/669.jpg", "conditioning_image": "sat_image/669.jpg"}
|
670 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/670.jpg", "conditioning_image": "sat_image/670.jpg"}
|
671 |
+
{"text": "Ground view of university", "image": "gnd_image/671.jpg", "conditioning_image": "sat_image/671.jpg"}
|
672 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/672.jpg", "conditioning_image": "sat_image/672.jpg"}
|
673 |
+
{"text": "Ground view of university", "image": "gnd_image/673.jpg", "conditioning_image": "sat_image/673.jpg"}
|
674 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/674.jpg", "conditioning_image": "sat_image/674.jpg"}
|
675 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/675.jpg", "conditioning_image": "sat_image/675.jpg"}
|
676 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/676.jpg", "conditioning_image": "sat_image/676.jpg"}
|
677 |
+
{"text": "Street view of college", "image": "gnd_image/677.jpg", "conditioning_image": "sat_image/677.jpg"}
|
678 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/678.jpg", "conditioning_image": "sat_image/678.jpg"}
|
679 |
+
{"text": "Ground view of university", "image": "gnd_image/679.jpg", "conditioning_image": "sat_image/679.jpg"}
|
680 |
+
{"text": "Ground view of university", "image": "gnd_image/680.jpg", "conditioning_image": "sat_image/680.jpg"}
|
681 |
+
{"text": "Street view of college", "image": "gnd_image/681.jpg", "conditioning_image": "sat_image/681.jpg"}
|
682 |
+
{"text": "Ground view of university", "image": "gnd_image/682.jpg", "conditioning_image": "sat_image/682.jpg"}
|
683 |
+
{"text": "Street view of college", "image": "gnd_image/683.jpg", "conditioning_image": "sat_image/683.jpg"}
|
684 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/684.jpg", "conditioning_image": "sat_image/684.jpg"}
|
685 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/685.jpg", "conditioning_image": "sat_image/685.jpg"}
|
686 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/686.jpg", "conditioning_image": "sat_image/686.jpg"}
|
687 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/687.jpg", "conditioning_image": "sat_image/687.jpg"}
|
688 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/688.jpg", "conditioning_image": "sat_image/688.jpg"}
|
689 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/689.jpg", "conditioning_image": "sat_image/689.jpg"}
|
690 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/690.jpg", "conditioning_image": "sat_image/690.jpg"}
|
691 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/691.jpg", "conditioning_image": "sat_image/691.jpg"}
|
692 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/692.jpg", "conditioning_image": "sat_image/692.jpg"}
|
693 |
+
{"text": "View of college from ground", "image": "gnd_image/693.jpg", "conditioning_image": "sat_image/693.jpg"}
|
694 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/694.jpg", "conditioning_image": "sat_image/694.jpg"}
|
695 |
+
{"text": "Get the grund view of a university building", "image": "gnd_image/695.jpg", "conditioning_image": "sat_image/695.jpg"}
|
696 |
+
{"text": "Get the view of college from ground", "image": "gnd_image/696.jpg", "conditioning_image": "sat_image/696.jpg"}
|
697 |
+
{"text": "View of college from ground", "image": "gnd_image/697.jpg", "conditioning_image": "sat_image/697.jpg"}
|
698 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/698.jpg", "conditioning_image": "sat_image/698.jpg"}
|
699 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/699.jpg", "conditioning_image": "sat_image/699.jpg"}
|
700 |
+
{"text": "Get the ground view of the satellite image", "image": "gnd_image/700.jpg", "conditioning_image": "sat_image/700.jpg"}
|
701 |
+
{"text": "Hallucinate ground image from the satellite image", "image": "gnd_image/701.jpg", "conditioning_image": "sat_image/701.jpg"}
|