The dataset viewer is not available for this split.
Error code: FeaturesError
Exception: ArrowInvalid
Message: JSON parse error: Invalid value. in row 0
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 280, in _generate_tables
df = pandas_read_json(f)
^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 34, in pandas_read_json
return pd.read_json(path_or_buf, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/pandas/io/json/_json.py", line 791, in read_json
json_reader = JsonReader(
^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/pandas/io/json/_json.py", line 905, in __init__
self.data = self._preprocess_data(data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/pandas/io/json/_json.py", line 917, in _preprocess_data
data = data.read()
^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/utils/file_utils.py", line 844, in read_with_retries
out = read(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "<frozen codecs>", line 322, in decode
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x89 in position 0: invalid start byte
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/split/first_rows.py", line 246, in compute_first_rows_from_streaming_response
iterable_dataset = iterable_dataset._resolve_features()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 4196, in _resolve_features
features = _infer_features_from_batch(self.with_format(None)._head())
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2533, in _head
return next(iter(self.iter(batch_size=n)))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2711, in iter
for key, pa_table in ex_iterable.iter_arrow():
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2249, in _iter_arrow
yield from self.ex_iterable._iter_arrow()
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 494, in _iter_arrow
for key, pa_table in iterator:
^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 384, in _iter_arrow
for key, pa_table in self.generate_tables_fn(**gen_kwags):
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 283, in _generate_tables
raise e
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 246, in _generate_tables
pa_table = paj.read_json(
^^^^^^^^^^^^^^
File "pyarrow/_json.pyx", line 342, in pyarrow._json.read_json
File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
pyarrow.lib.ArrowInvalid: JSON parse error: Invalid value. in row 0Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
LDCTiqa_png: Low-dose CT Image Quality Assessment Dataset
Dataset Description
This dataset, MikaJesse/LDCTiqa_png, contains 1000 PNG images of low-dose computed tomography (CT) slices, each paired with an expert-provided perceptual image quality score. The data originates from the Low-dose Computed Tomography Perceptual Image Quality Assessment (LDCT-IQAC) 2023 Grand Challenge.
This resource is designed to facilitate research and development in No-Reference Image Quality Assessment (NR-IQA) for medical imaging, particularly for low-dose CT scans.
Background and Motivation
Image quality assessment (IQA) is extremely important in CT imaging, as it facilitates radiation dose optimization and the development of novel algorithms like image restoration. While widely used metrics like PSNR and SSIM exist, their correlation with radiologists’ opinions is often insufficient, and they require pristine reference images which are unavailable in real clinical settings.
This dataset was created to address the lack of open-source datasets for CT IQA and to provide a standardized benchmark. The images in this challenge specifically deal with a combination of two major artifacts common in low-dose CT: sparse view streak artifacts and noise. The goal is to develop and evaluate NR-IQA models that correlate well with the perceptual scores from expert radiologists.
Dataset Contents
- Images: 1000 CT slices, originally from the challenge's training set, converted to PNG format for ease of use.
- Scores: A JSON file mapping each image filename to its corresponding quality score.
Image Scoring Criteria
The image quality scores were obtained from five experienced radiologists using abdominal soft-tissue windows (width/level: 350/40). The final human perceptual score for each image is the average of the scores assigned by the five radiologists. The scores range from 0 (very poor) to 4 (excellent).
How to Use
The dataset can be easily loaded using the Hugging Face datasets library.
from datasets import load_dataset
from PIL import Image
# Load the dataset
dataset = load_dataset("MikaJesse/LDCTiqa_png")
# Access an example
example = dataset['train']
image: Image.Image = example['image']
score: float = example['score']
filename: str = example['image'].filename # You can get the filename like this
print(f"Image Filename: {os.path.basename(filename)}")
print(f"Image Size: {image.size}")
print(f"Expert Score: {score}")
# To display the image (e.g., in a Jupyter notebook)
# display(image)
Data Fields
Each example in the dataset consists of two main fields:
image: APIL.Image.Imageobject containing the 2D CT slice.score: Afloat32value representing the average perceptual quality score from radiologists (0-4).
Data Splits
The dataset contains a single split, train, which includes all 1000 images and their corresponding scores.
Source Data
This dataset is a reformatted version of the data provided for the LDCT-IQAC 2023 Grand Challenge.
- Original Challenge Website: https://ldctiqac2023.grand-challenge.org/
Citation Information
If you use this dataset in your research, please be sure to cite the original paper that introduced the challenge and dataset:
@article{lee2025low,
title={Low-dose computed tomography perceptual image quality assessment},
author={Lee, Wonkyeong and Wagner, Fabian and Galdran, Adrian and Shi, Yongyi and Xia, Wenjun and Wang, Ge and Mou, Xuanqin and Ahamed, Md Atik and Imran, Abdullah Al Zubaer and Oh, Ji Eun and others},
journal={Medical Image Analysis},
volume={99},
pages={103343},
year={2025},
publisher={Elsevier}
}
Licensing
The license for this dataset is not explicitly specified on the Hugging Face Hub. Please refer to the original data source at the LDCT-IQAC 2023 Grand Challenge website to determine the usage rights and licensing terms. It is the user's responsibility to ensure compliance with the original license.
- Downloads last month
- 12