ROSCOSMOS commited on
Commit
14c2a16
·
verified ·
1 Parent(s): 30e0887

Upload 11 files

Browse files
README.md CHANGED
@@ -1,3 +1,151 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ pretty_name: "Churches"
4
+ tags: ["image", "computer-vision", "buildings", "architecture"]
5
+ task_categories: ["image-classification"]
6
+ language: ["en"]
7
+ configs:
8
+ - config_name: default
9
+ data_files: "train/**/*.arrow"
10
+ features:
11
+ - name: image
12
+ dtype: image
13
+ - name: unique_id
14
+ dtype: string
15
+ - name: width
16
+ dtype: int32
17
+ - name: height
18
+ dtype: int32
19
+ - name: image_mode_on_disk
20
+ dtype: string
21
+ - name: original_file_format
22
+ dtype: string
23
+ - config_name: preview
24
+ data_files: "preview/**/*.arrow"
25
+ features:
26
+ - name: image
27
+ dtype: image
28
+ - name: unique_id
29
+ dtype: string
30
+ - name: width
31
+ dtype: int32
32
+ - name: height
33
+ dtype: int32
34
+ - name: original_file_format
35
+ dtype: string
36
+ - name: image_mode_on_disk
37
+ dtype: string
38
  ---
39
+
40
+ # Churches
41
+
42
+ High resolution image subset from the Aesthetic-Train-V2 dataset, a collection of facades, interior shots and landscapes.
43
+
44
+ ## Dataset Details
45
+
46
+ * **Curator:** Roscosmos
47
+ * **Version:** 1.0.0
48
+ * **Total Images:** 780
49
+ * **Average Image Size (on disk):** ~5.8 MB compressed
50
+ * **Primary Content:** Church buildings
51
+ * **Standardization:** All images are standardized to RGB mode and saved at 95% quality for consistency.
52
+
53
+ ## Dataset Creation & Provenance
54
+
55
+ ### 1. Original Master Dataset
56
+ This dataset is a subset derived from:
57
+ **`zhang0jhon/Aesthetic-Train-V2`**
58
+ * **Link:** https://huggingface.co/datasets/zhang0jhon/Aesthetic-Train-V2
59
+ * **Providence:** Large-scale, high-resolution image dataset, refer to its original dataset card for full details.
60
+ * **Original License:** MIT
61
+
62
+ ### 2. Iterative Curation Methodology
63
+
64
+ CLIP retrieval / manual curation.
65
+
66
+ ### Who are the source data producers?
67
+ * Original Dataset Creators: Refer to the original dataset card.
68
+ * Curator and Refiner: Roscosmos
69
+
70
+ ## Dataset Structure & Content
71
+
72
+ This dataset offers the following configurations/subsets:
73
+ * **Default (Full `train` data) configuration:** Contains the full, high-resolution image data and associated metadata. This is the recommended configuration for model training and full data analysis. The default split for this configuration is `train`.
74
+ * **`preview` configuration:** Contains a small, random subset of images from the `train` data. The images in this configuration are downsampled and re-compressed to be **viewer-compatible** on the Hugging Face Hub. The default split for this configuration is `train` (if no other split is specified).
75
+ Each example (row) in the dataset contains the following fields:
76
+
77
+ * `image`: The actual image data. In the default (full) configuration, this is full-resolution. In the preview configuration, this is a viewer-compatible version.
78
+ * `unique_id`: A unique identifier assigned to each image.
79
+ * `width`: The width of the image in pixels (from the full-resolution image).
80
+ * `height`: The height of the image in pixels (from the full-resolution image).
81
+
82
+ ## Usage
83
+
84
+ To download and load this dataset from the Hugging Face Hub:
85
+
86
+ ```python
87
+
88
+ from datasets import load_dataset, Dataset, DatasetDict
89
+
90
+ # Login using e.g. `huggingface-cli login` to access this dataset
91
+
92
+ # To load the full, high-resolution dataset (recommended for training):
93
+ # This will load the 'default' configuration's 'train' split.
94
+ ds_main = load_dataset("ROSCOSMOS/Churches", "default")
95
+
96
+ print("Main Dataset (default config) loaded successfully!")
97
+ print(ds_main)
98
+ print(f"Type of loaded object: {type(ds_main)}")
99
+
100
+ if isinstance(ds_main, Dataset):
101
+ print(f"Number of samples: {len(ds_main)}")
102
+ print(f"Features: {ds_main.features}")
103
+ elif isinstance(ds_main, DatasetDict):
104
+ print(f"Available splits: {list(ds_main.keys())}")
105
+ for split_name, dataset_obj in ds_main.items():
106
+ print(f" Split '{split_name}': {len(dataset_obj)} samples")
107
+ print(f" Features of '{split_name}': {dataset_obj.features}")
108
+
109
+ # To load the smaller, viewer-compatible preview data (if available):
110
+ # This will load the 'preview' configuration's default split (often also 'train').
111
+ # Check your dataset card for exact config and split names.
112
+ # try:
113
+ # ds_preview = load_dataset("{push_to_hub_id}", "preview")
114
+ # print("\nPreview Dataset (preview config):")
115
+ # print(ds_preview)
116
+ # print(f"Number of samples in the preview dataset: {len(ds_preview) if isinstance(ds_preview, Dataset) else 'N/A'}")
117
+ # except ValueError as e:
118
+ # print(f"\nPreview config not found or failed to load: {e}")
119
+
120
+ # To access specific splits from a DatasetDict:
121
+ # my_train_data = ds_main['train']
122
+ # my_preview_data = ds_preview['train'] # if preview loads as DatasetDict
123
+
124
+ # The 'image' column will contain PIL Image objects.
125
+
126
+ ```
127
+
128
+ ## Citation
129
+
130
+ ```bibtex
131
+ @inproceedings{zhang2025diffusion4k,
132
+ title={Diffusion-4K: Ultra-High-Resolution Image Synthesis with Latent Diffusion Models},
133
+ author={Zhang, Jinjin and Huang, Qiuyu and Liu, Junjie and Guo, Xiefan and Huang, Di},
134
+ year={2025},
135
+ booktitle={IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
136
+ }
137
+ @misc{zhang2025ultrahighresolutionimagesynthesis,
138
+ title={Ultra-High-Resolution Image Synthesis: Data, Method and Evaluation},
139
+ author={Zhang, Jinjin and Huang, Qiuyu and Liu, Junjie and Guo, Xiefan and Huang, Di},
140
+ year={2025},
141
+ note={arXiv:2506.01331},
142
+ }
143
+ ```
144
+
145
+ ## Disclaimer and Bias Considerations
146
+
147
+ Please consider any inherent biases from the original dataset and those potentially introduced by the automated filtering (e.g., CLIP's biases) and manual curation process.
148
+
149
+ ## Contact
150
+
151
+ N/A
train/data-00000-of-00010.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce68116d00e1f473e3d3293018c183bf0e27614a6397548a32c2ac0227eed0b6
3
+ size 571090128
train/data-00001-of-00010.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3175646079822c96a5eedfb3d659fe885d5447de3ccd8a4e4bdc468b09aa9b9e
3
+ size 540044344
train/data-00002-of-00010.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86e2343e57201e41cc05502be627f9f555e4b8cf3d1e0729d1b164d6fedf3c53
3
+ size 490788904
train/data-00003-of-00010.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8df6d50fe7428df84b6323ea29c1a26f64f22b1d213a418dd3703c86bd0c1041
3
+ size 503957040
train/data-00004-of-00010.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e26655a13945e43bcd27595cacd95b998eda8a0884a3adeb42c762cc92dfa5e
3
+ size 572400128
train/data-00005-of-00010.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2a02c34a9982cf52a35a5c734942e8a8bcb1565a09a2325c69bbf0c45799926
3
+ size 491312072
train/data-00006-of-00010.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17eefab76af1990014e343c7208c284c18ed0c016e115ad6f918a57ebcafa862
3
+ size 486738344
train/data-00007-of-00010.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4813607848b64cc4447c9534997e0bcf10085869adbcf13921962a0c2af3bf4
3
+ size 445579232
train/data-00008-of-00010.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9cade072f659a47aa31631dbbdc1ba87fac50bf8d79a8ab9f50162dd99efc6d
3
+ size 436552760
train/data-00009-of-00010.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:951bbdcec2d9e68e4c585ce55bb4de7e8413c785ab3534b69fda0f8a79e65337
3
+ size 395959336