Dataset Preview
Duplicate
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
The dataset generation failed because of a cast error
Error code:   DatasetGenerationCastError
Exception:    DatasetGenerationCastError
Message:      An error occurred while generating the dataset

All the data files must have the same columns, but at some point there are 1 new columns ({'mos'}) and 2 missing columns ({'semantic', 'challenge'}).

This happened while the json dataset builder was generating data using

hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment/CADB_Dataset/metas/train_cadb_class_8.5k.json (at revision 1c6edb024518e23fe3e59f55947cb4a7222dc120), [/tmp/hf-datasets-cache/medium/datasets/99445082854213-config-parquet-and-info-zhiyuanyou-Datasets-Photo-5c710d14/hub/datasets--zhiyuanyou--Datasets-PhotoFramer-Assessment/snapshots/1c6edb024518e23fe3e59f55947cb4a7222dc120/AVA_dataset/metas/train_ava_sampled_43k.json (origin=hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/AVA_dataset/metas/train_ava_sampled_43k.json), /tmp/hf-datasets-cache/medium/datasets/99445082854213-config-parquet-and-info-zhiyuanyou-Datasets-Photo-5c710d14/hub/datasets--zhiyuanyou--Datasets-PhotoFramer-Assessment/snapshots/1c6edb024518e23fe3e59f55947cb4a7222dc120/CADB_Dataset/metas/train_cadb_class_8.5k.json (origin=hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/CADB_Dataset/metas/train_cadb_class_8.5k.json), /tmp/hf-datasets-cache/medium/datasets/99445082854213-config-parquet-and-info-zhiyuanyou-Datasets-Photo-5c710d14/hub/datasets--zhiyuanyou--Datasets-PhotoFramer-Assessment/snapshots/1c6edb024518e23fe3e59f55947cb4a7222dc120/CADB_Dataset/metas/train_cadb_score_8.5k.json (origin=hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/CADB_Dataset/metas/train_cadb_score_8.5k.json), /tmp/hf-datasets-cache/medium/datasets/99445082854213-config-parquet-and-info-zhiyuanyou-Datasets-Photo-5c710d14/hub/datasets--zhiyuanyou--Datasets-PhotoFramer-Assessment/snapshots/1c6edb024518e23fe3e59f55947cb4a7222dc120/GAIC/metas/train_gaic_48k_sampled.json (origin=hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/GAIC/metas/train_gaic_48k_sampled.json), /tmp/hf-datasets-cache/medium/datasets/99445082854213-config-parquet-and-info-zhiyuanyou-Datasets-Photo-5c710d14/hub/datasets--zhiyuanyou--Datasets-PhotoFramer-Assessment/snapshots/1c6edb024518e23fe3e59f55947cb4a7222dc120/KU_PCP_Dataset/metas/train_kupcp_class_3k_resize1024.json (origin=hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/KU_PCP_Dataset/metas/train_kupcp_class_3k_resize1024.json)], ['hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/AVA_dataset/metas/train_ava_sampled_43k.json', 'hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/CADB_Dataset/metas/train_cadb_class_8.5k.json', 'hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/CADB_Dataset/metas/train_cadb_score_8.5k.json', 'hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/GAIC/metas/train_gaic_48k_sampled.json', 'hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/KU_PCP_Dataset/metas/train_kupcp_class_3k_resize1024.json']

Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1893, in _prepare_split_single
                  writer.write_table(table)
                File "/usr/local/lib/python3.12/site-packages/datasets/arrow_writer.py", line 765, in write_table
                  self._write_table(pa_table, writer_batch_size=writer_batch_size)
                File "/usr/local/lib/python3.12/site-packages/datasets/arrow_writer.py", line 773, in _write_table
                  pa_table = table_cast(pa_table, self._schema)
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2281, in table_cast
                  return cast_table_to_schema(table, schema)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2227, in cast_table_to_schema
                  raise CastError(
              datasets.table.CastError: Couldn't cast
              image: string
              mos: double
              problem: string
              solution: list<item: string>
                child 0, item: string
              to
              {'image': Value('string'), 'semantic': List(Value('string')), 'challenge': Value('string'), 'problem': Value('string'), 'solution': Value('float64')}
              because column names don't match
              
              During handling of the above exception, another exception occurred:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1347, in compute_config_parquet_and_info_response
                  parquet_operations = convert_to_parquet(builder)
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 980, in convert_to_parquet
                  builder.download_and_prepare(
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 884, in download_and_prepare
                  self._download_and_prepare(
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 947, in _download_and_prepare
                  self._prepare_split(split_generator, **prepare_split_kwargs)
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1739, in _prepare_split
                  for job_id, done, content in self._prepare_split_single(
                                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1895, in _prepare_split_single
                  raise DatasetGenerationCastError.from_cast_error(
              datasets.exceptions.DatasetGenerationCastError: An error occurred while generating the dataset
              
              All the data files must have the same columns, but at some point there are 1 new columns ({'mos'}) and 2 missing columns ({'semantic', 'challenge'}).
              
              This happened while the json dataset builder was generating data using
              
              hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment/CADB_Dataset/metas/train_cadb_class_8.5k.json (at revision 1c6edb024518e23fe3e59f55947cb4a7222dc120), [/tmp/hf-datasets-cache/medium/datasets/99445082854213-config-parquet-and-info-zhiyuanyou-Datasets-Photo-5c710d14/hub/datasets--zhiyuanyou--Datasets-PhotoFramer-Assessment/snapshots/1c6edb024518e23fe3e59f55947cb4a7222dc120/AVA_dataset/metas/train_ava_sampled_43k.json (origin=hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/AVA_dataset/metas/train_ava_sampled_43k.json), /tmp/hf-datasets-cache/medium/datasets/99445082854213-config-parquet-and-info-zhiyuanyou-Datasets-Photo-5c710d14/hub/datasets--zhiyuanyou--Datasets-PhotoFramer-Assessment/snapshots/1c6edb024518e23fe3e59f55947cb4a7222dc120/CADB_Dataset/metas/train_cadb_class_8.5k.json (origin=hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/CADB_Dataset/metas/train_cadb_class_8.5k.json), /tmp/hf-datasets-cache/medium/datasets/99445082854213-config-parquet-and-info-zhiyuanyou-Datasets-Photo-5c710d14/hub/datasets--zhiyuanyou--Datasets-PhotoFramer-Assessment/snapshots/1c6edb024518e23fe3e59f55947cb4a7222dc120/CADB_Dataset/metas/train_cadb_score_8.5k.json (origin=hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/CADB_Dataset/metas/train_cadb_score_8.5k.json), /tmp/hf-datasets-cache/medium/datasets/99445082854213-config-parquet-and-info-zhiyuanyou-Datasets-Photo-5c710d14/hub/datasets--zhiyuanyou--Datasets-PhotoFramer-Assessment/snapshots/1c6edb024518e23fe3e59f55947cb4a7222dc120/GAIC/metas/train_gaic_48k_sampled.json (origin=hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/GAIC/metas/train_gaic_48k_sampled.json), /tmp/hf-datasets-cache/medium/datasets/99445082854213-config-parquet-and-info-zhiyuanyou-Datasets-Photo-5c710d14/hub/datasets--zhiyuanyou--Datasets-PhotoFramer-Assessment/snapshots/1c6edb024518e23fe3e59f55947cb4a7222dc120/KU_PCP_Dataset/metas/train_kupcp_class_3k_resize1024.json (origin=hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/KU_PCP_Dataset/metas/train_kupcp_class_3k_resize1024.json)], ['hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/AVA_dataset/metas/train_ava_sampled_43k.json', 'hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/CADB_Dataset/metas/train_cadb_class_8.5k.json', 'hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/CADB_Dataset/metas/train_cadb_score_8.5k.json', 'hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/GAIC/metas/train_gaic_48k_sampled.json', 'hf://datasets/zhiyuanyou/Datasets-PhotoFramer-Assessment@1c6edb024518e23fe3e59f55947cb4a7222dc120/KU_PCP_Dataset/metas/train_kupcp_class_3k_resize1024.json']
              
              Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

image
string
semantic
list
challenge
string
problem
string
solution
float64
AVA_dataset/ava_images/53.jpg
[]
Road_Signs
How do you assess the aesthetics of this image?
4.1192
AVA_dataset/ava_images/54.jpg
[]
Road_Signs
How do you assess the aesthetics of this image?
2.6056
AVA_dataset/ava_images/69.jpg
[]
Road_Signs
Can you rate the aesthetics of this picture?
2.7964
AVA_dataset/ava_images/71.jpg
[ "Urban", "Macro" ]
Road_Signs
How would you rate the aesthetics of this image?
4.673
AVA_dataset/ava_images/77.jpg
[]
Road_Signs
Can you rate the aesthetics of this picture?
4.032
AVA_dataset/ava_images/87.jpg
[]
Table_Shot
How do you assess the aesthetics of this image?
1.8375
AVA_dataset/ava_images/101.jpg
[]
Table_Shot
What's your opinion on the aesthetics of this picture?
1.946
AVA_dataset/ava_images/106.jpg
[ "Sports", "Macro" ]
Table_Shot
What's your opinion on the aesthetics of this picture?
5
AVA_dataset/ava_images/132.jpg
[]
Table_Shot
What's your opinion on the aesthetics of this picture?
4.1272
AVA_dataset/ava_images/137.jpg
[]
Table_Shot
Can you rate the aesthetics of this picture?
3.747
AVA_dataset/ava_images/140.jpg
[]
Table_Shot
Can you judge the aesthetics of this image?
3.3776
AVA_dataset/ava_images/150.jpg
[]
Outdoor_Macro_Shot
Could you evaluate the aesthetics of this image?
4.9513
AVA_dataset/ava_images/158.jpg
[ "Abstract", "Macro" ]
Outdoor_Macro_Shot
What's your opinion on the aesthetics of this picture?
3.7612
AVA_dataset/ava_images/162.jpg
[]
Outdoor_Macro_Shot
Can you rate the aesthetics of this picture?
4.7048
AVA_dataset/ava_images/166.jpg
[]
Outdoor_Macro_Shot
What's your opinion on the aesthetics of this picture?
3.0122
AVA_dataset/ava_images/170.jpg
[]
Outdoor_Macro_Shot
What's your opinion on the aesthetics of this picture?
3.9232
AVA_dataset/ava_images/179.jpg
[]
Outdoor_Macro_Shot
Can you judge the aesthetics of this image?
3.3184
AVA_dataset/ava_images/189.jpg
[]
Outdoor_Macro_Shot
What do you think about the aesthetics of this image?
3.8112
AVA_dataset/ava_images/201.jpg
[]
Outdoor_Macro_Shot
What is your aesthetics rating for this image?
1.946
AVA_dataset/ava_images/208.jpg
[ "Nature", "Macro" ]
Red
How do you assess the aesthetics of this image?
4.0352
AVA_dataset/ava_images/210.jpg
[]
Red
Could you evaluate the aesthetics of this image?
2.843
AVA_dataset/ava_images/217.jpg
[]
Red
How would you rate the aesthetics of this image?
2.5105
AVA_dataset/ava_images/225.jpg
[ "Abstract" ]
Red
How do you assess the aesthetics of this image?
4.1354
AVA_dataset/ava_images/227.jpg
[]
Red
Could you evaluate the aesthetics of this image?
1.649
AVA_dataset/ava_images/230.jpg
[]
Red
What do you think about the aesthetics of this image?
4.0152
AVA_dataset/ava_images/246.jpg
[]
Red
How do you assess the aesthetics of this image?
2.3767
AVA_dataset/ava_images/256.jpg
[]
Red
Can you judge the aesthetics of this image?
3.2933
AVA_dataset/ava_images/263.jpg
[]
Red
How would you judge the aesthetics of this image?
1.9561
AVA_dataset/ava_images/268.jpg
[]
Red
How do you assess the aesthetics of this image?
1.7471
AVA_dataset/ava_images/269.jpg
[]
Red
Can you rate the aesthetics of this picture?
1.7436
AVA_dataset/ava_images/281.jpg
[]
Red
What's your opinion on the aesthetics of this picture?
2.8324
AVA_dataset/ava_images/283.jpg
[]
Red
What do you think about the aesthetics of this image?
4.0807
AVA_dataset/ava_images/284.jpg
[ "Abstract", "Still Life" ]
Red
How would you judge the aesthetics of this image?
3.0759
AVA_dataset/ava_images/286.jpg
[]
Red
Could you evaluate the aesthetics of this image?
3.4175
AVA_dataset/ava_images/297.jpg
[]
Red
What's your opinion on the aesthetics of this picture?
2.9866
AVA_dataset/ava_images/299.jpg
[]
Red
What is your aesthetics rating for this image?
3.3862
AVA_dataset/ava_images/300.jpg
[]
Red
What's your opinion on the aesthetics of this picture?
2.7496
AVA_dataset/ava_images/305.jpg
[]
Red
What is your aesthetics rating for this image?
2.7464
AVA_dataset/ava_images/314.jpg
[]
Self-Portrait
Can you judge the aesthetics of this image?
1.9688
AVA_dataset/ava_images/333.jpg
[]
Self-Portrait
Can you rate the aesthetics of this picture?
2.3252
AVA_dataset/ava_images/355.jpg
[ "Humorous", "Portraiture" ]
Self-Portrait
Can you rate the aesthetics of this picture?
2.0338
AVA_dataset/ava_images/361.jpg
[]
Self-Portrait
Rate the aesthetics of this image.
1.751
AVA_dataset/ava_images/368.jpg
[ "Abstract", "Black and White" ]
Self-Portrait
Can you rate the aesthetics of this picture?
2.5139
AVA_dataset/ava_images/371.jpg
[]
Self-Portrait
Could you evaluate the aesthetics of this image?
2.5139
AVA_dataset/ava_images/372.jpg
[]
Self-Portrait
Can you judge the aesthetics of this image?
2.9303
AVA_dataset/ava_images/374.jpg
[]
Self-Portrait
How would you rate the aesthetics of this image?
1.8437
AVA_dataset/ava_images/376.jpg
[]
Self-Portrait
Can you rate the aesthetics of this picture?
4.3222
AVA_dataset/ava_images/377.jpg
[]
Self-Portrait
How do you assess the aesthetics of this image?
3.8663
AVA_dataset/ava_images/378.jpg
[]
Self-Portrait
How would you rate the aesthetics of this image?
2.4315
AVA_dataset/ava_images/381.jpg
[]
Self-Portrait
Can you judge the aesthetics of this image?
2.8944
AVA_dataset/ava_images/393.jpg
[]
Self-Portrait
How would you rate the aesthetics of this image?
2.6271
AVA_dataset/ava_images/394.jpg
[]
Self-Portrait
What's your opinion on the aesthetics of this picture?
2.8499
AVA_dataset/ava_images/398.jpg
[]
Self-Portrait
Can you judge the aesthetics of this image?
2.2757
AVA_dataset/ava_images/408.jpg
[]
Self-Portrait
Can you rate the aesthetics of this picture?
2.0331
AVA_dataset/ava_images/429.jpg
[ "Abstract" ]
Night_Shot
Could you evaluate the aesthetics of this image?
3.4346
AVA_dataset/ava_images/449.jpg
[]
Night_Shot
Can you rate the aesthetics of this picture?
4.0924
AVA_dataset/ava_images/487.jpg
[]
Night_Shot
How do you assess the aesthetics of this image?
2.6282
AVA_dataset/ava_images/488.jpg
[]
Night_Shot
Can you rate the aesthetics of this picture?
4.2097
AVA_dataset/ava_images/490.jpg
[ "Travel" ]
Night_Shot
How do you assess the aesthetics of this image?
3.568
AVA_dataset/ava_images/494.jpg
[]
Night_Shot
What do you think about the aesthetics of this image?
3.2462
AVA_dataset/ava_images/507.jpg
[]
Night_Shot
How would you rate the aesthetics of this image?
1.789
AVA_dataset/ava_images/519.jpg
[]
Architecture
What's your opinion on the aesthetics of this picture?
3.7049
AVA_dataset/ava_images/521.jpg
[]
Architecture
How do you assess the aesthetics of this image?
4.435
AVA_dataset/ava_images/525.jpg
[]
Architecture
Rate the aesthetics of this image.
2.7279
AVA_dataset/ava_images/528.jpg
[]
Architecture
How would you rate the aesthetics of this image?
1.8825
AVA_dataset/ava_images/530.jpg
[]
Architecture
Can you judge the aesthetics of this image?
2.1819
AVA_dataset/ava_images/584.jpg
[]
Architecture
What do you think about the aesthetics of this image?
3.6368
AVA_dataset/ava_images/588.jpg
[]
Architecture
Can you rate the aesthetics of this picture?
3.4086
AVA_dataset/ava_images/594.jpg
[ "Sky" ]
Architecture
Could you evaluate the aesthetics of this image?
1.7368
AVA_dataset/ava_images/596.jpg
[]
Architecture
What is your aesthetics rating for this image?
3.1294
AVA_dataset/ava_images/602.jpg
[]
Architecture
Could you evaluate the aesthetics of this image?
1.7297
AVA_dataset/ava_images/616.jpg
[]
Architecture
What is your aesthetics rating for this image?
1.3517
AVA_dataset/ava_images/621.jpg
[]
Architecture
How would you judge the aesthetics of this image?
3.9192
AVA_dataset/ava_images/622.jpg
[]
Architecture
What's your opinion on the aesthetics of this picture?
2.9683
AVA_dataset/ava_images/647.jpg
[]
Curves
Can you judge the aesthetics of this image?
3.6378
AVA_dataset/ava_images/658.jpg
[]
Curves
Can you rate the aesthetics of this picture?
2.513
AVA_dataset/ava_images/684.jpg
[]
Curves
Can you judge the aesthetics of this image?
4.2601
AVA_dataset/ava_images/690.jpg
[]
Curves
How would you rate the aesthetics of this image?
1.9584
AVA_dataset/ava_images/697.jpg
[]
Curves
What is your aesthetics rating for this image?
3.3884
AVA_dataset/ava_images/712.jpg
[]
Curves
How would you rate the aesthetics of this image?
3.8879
AVA_dataset/ava_images/715.jpg
[]
Curves
Rate the aesthetics of this image.
3.4097
AVA_dataset/ava_images/726.jpg
[]
Curves
What do you think about the aesthetics of this image?
3.1894
AVA_dataset/ava_images/729.jpg
[]
Curves
Could you evaluate the aesthetics of this image?
1.2973
AVA_dataset/ava_images/738.jpg
[]
Curves
Can you judge the aesthetics of this image?
4.5017
AVA_dataset/ava_images/759.jpg
[ "Black and White" ]
Curves
What do you think about the aesthetics of this image?
4.3999
AVA_dataset/ava_images/765.jpg
[]
Curves
Can you rate the aesthetics of this picture?
2.8206
AVA_dataset/ava_images/767.jpg
[]
Curves
What's your opinion on the aesthetics of this picture?
3.1693
AVA_dataset/ava_images/772.jpg
[]
Curves
What's your opinion on the aesthetics of this picture?
3.0946
AVA_dataset/ava_images/776.jpg
[]
Curves
What is your aesthetics rating for this image?
3.2374
AVA_dataset/ava_images/781.jpg
[]
Curves
How would you rate the aesthetics of this image?
3.1521
AVA_dataset/ava_images/803.jpg
[]
Stopped_Motion
Can you judge the aesthetics of this image?
2.0864
AVA_dataset/ava_images/823.jpg
[]
Stopped_Motion
How do you assess the aesthetics of this image?
3.4826
AVA_dataset/ava_images/833.jpg
[]
Stopped_Motion
Rate the aesthetics of this image.
2.8247
AVA_dataset/ava_images/835.jpg
[ "Action", "Water" ]
Stopped_Motion
What is your aesthetics rating for this image?
2.9758
AVA_dataset/ava_images/841.jpg
[ "Water" ]
Stopped_Motion
Can you rate the aesthetics of this picture?
4.3015
AVA_dataset/ava_images/843.jpg
[]
Stopped_Motion
What do you think about the aesthetics of this image?
4.2187
AVA_dataset/ava_images/845.jpg
[]
Stopped_Motion
How would you rate the aesthetics of this image?
4.5403
AVA_dataset/ava_images/858.jpg
[ "Action" ]
Stopped_Motion
What is your aesthetics rating for this image?
4.002
AVA_dataset/ava_images/862.jpg
[]
Stopped_Motion
How do you assess the aesthetics of this image?
4.2909
AVA_dataset/ava_images/877.jpg
[]
Stopped_Motion
Can you judge the aesthetics of this image?
1.4788
End of preview.

PhotoFramer Composition Assessment Datasets

Composition Assessment Datasets ( project page / codes / paper ) in our PhotoFramer project.

Dataset Construction

  • Download our meta files in this repo.

  • Download all source images from AVA, CADB, GAIC, and KUPCP datasets.

  • Arrange the folders as follows. Note that train_img_1024 and test_img_1024 folders (under KU_PCP_Dataset folder) are generated by running resize_img.py (under KU_PCP_Dataset folder).

|-- PhotoFramer-Assessment
  |-- Datasets
    |-- AVA_dataset
      |-- ava_images/*.jpg
      |-- metas
    |-- CADB_Dataset
      |-- images/*.jpg
      |-- metas
    |-- GAIC
      |-- images/train/*.jpg
      |-- images/test/*.jpg
      |-- metas
    |-- KU_PCP_Dataset
      |-- train_img/*.jpg
      |-- train_img_1024/*.jpg
      |-- test_img/*.jpg
      |-- test_img_1024/*.jpg
      |-- metas
      |-- resize_img.py

Citation

If you find our work useful for your research and applications, please cite using the BibTeX:

@inproceedings{photoframer,
    title={PhotoFramer: Multi-modal Image Composition Instruction},
    author={You, Zhiyuan and Wang, Ke and Zhang, He and Cai, Xin and Gu, Jinjin and Xue, Tianfan and Dong, Chao and Zhang, Zhoutong},
    booktitle={IEEE/CVF Conference on Computer Vision and Pattern Recognition},
    year={2026}
}
Downloads last month
55

Paper for zhiyuanyou/Datasets-PhotoFramer-Assessment