RenzKa/simlingo
Robotics
•
Updated
•
3
Error code: StreamingRowsError
Exception: TypeError
Message: Couldn't cast array of type
struct<<DISTANCE>: string, <OBJECT>: string>
to
{'<OBJECT>': Value('string')}
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/utils.py", line 99, in get_rows_or_raise
return get_rows(
File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
return func(*args, **kwargs)
File "/src/services/worker/src/worker/utils.py", line 77, in get_rows
rows_plus_one = list(itertools.islice(ds, rows_max_number + 1))
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 2361, in __iter__
for key, example in ex_iterable:
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 1882, in __iter__
for key, pa_table in self._iter_arrow():
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 1914, in _iter_arrow
pa_table = cast_table_to_features(pa_table, self.features)
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2197, in cast_table_to_features
arrays = [cast_array_to_feature(table[name], feature) for name, feature in features.items()]
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2197, in <listcomp>
arrays = [cast_array_to_feature(table[name], feature) for name, feature in features.items()]
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 1795, in wrapper
return pa.chunked_array([func(chunk, *args, **kwargs) for chunk in array.chunks])
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 1795, in <listcomp>
return pa.chunked_array([func(chunk, *args, **kwargs) for chunk in array.chunks])
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2001, in cast_array_to_feature
arrays = [
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2002, in <listcomp>
_c(array.field(name) if name in array_fields else null_array, subfeature)
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 1797, in wrapper
return func(array, *args, **kwargs)
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2092, in cast_array_to_feature
raise TypeError(f"Couldn't cast array of type\n{_short_str(array.type)}\nto\n{_short_str(feature)}")
TypeError: Couldn't cast array of type
struct<<DISTANCE>: string, <OBJECT>: string>
to
{'<OBJECT>': Value('string')}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.
SimLingo-Data is a large-scale autonomous driving CARLA 2.0 dataset containing sensor data, action labels, a wide range of simulator state information, and language labels for VQA, commentary and instruction following. The driving data is collected with the privileged rule-based expert PDM-Lite.
The dataset is organized hierarchically with the following main components:
data/: Raw sensor data (RGB, LiDAR, measurements, bounding boxes)commentary/: Natural language descriptions of driving decisionsdreamer/: Instruction following data with multiple instruction/action pairs per sampledrivelm/: VQA data, based on DriveLMThis dataset is chunked into groups of multiple routes for efficient download and processing.
# Clone the repository
git clone https://huggingface.co/datasets/RenzKa/simlingo
# Navigate to the directory
cd simlingo
# Pull the LFS files
git lfs pull
# Download individual files (replace with actual file URLs from Hugging Face)
wget https://huggingface.co/datasets/RenzKa/simlingo/resolve/main/[filename].tar.gz
# Create output directory
mkdir -p database/simlingo
# Extract all archives to the same directory
for file in *.tar.gz; do
echo "Extracting $file to database/simlingo/..."
tar -xzf "$file" -C database/simlingo/
done
Please refer to the license file for usage terms and conditions.
If you use this dataset in your research, please cite:
@inproceedings{renz2025simlingo,
title={SimLingo: Vision-Only Closed-Loop Autonomous Driving with Language-Action Alignment},
author={Renz, Katrin and Chen, Long and Arani, Elahe and Sinavski, Oleg},
booktitle={Conference on Computer Vision and Pattern Recognition (CVPR)},
year={2025},
}
@inproceedings{sima2024drivelm,
title={DriveLM: Driving with Graph Visual Question Answering},
author={Chonghao Sima and Katrin Renz and Kashyap Chitta and Li Chen and Hanxue Zhang and Chengen Xie and Jens Beißwenger and Ping Luo and Andreas Geiger and Hongyang Li},
booktitle={European Conference on Computer Vision},
year={2024},
}