datasets
Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.
minicar-leaderboard
🏆 MiniCar Competition Leaderboard
自動運転ミニカーコンペティションのリーダーボードデータ
データ構造
カラム
説明
submission_id
提出ID
team_name
チーム名
model_name
モデル名
lap_time
ラップタイム(秒)
success_rate
成功率(%)
track_name
トラック名
video_url
動画URL
model_repo
モデルリポジトリ
notes
備考
submitted_at
提出日時
verified
検証済みフラグ
使い方
import pandas as pd
from huggingface_hub import hf_hub_download
path = hf_hub_download(
repo_id="Romihi50/minicar-leaderboard"… See the full description on the dataset page: https://huggingface.co/datasets/Romihi50/minicar-leaderboard.minicar-dataset
🏎️ MiniCar Autonomous Driving Dataset
自動運転ミニカー用のトレーニングデータセット
概要
このデータセットには以下が含まれます:
カメラ画像
センサーデータ(IMU等)
アノテーション(ステアリング角度、スロットル)
データ構造
minicar-dataset/
├── train/
│ ├── images/ # カメラ画像 (JPG/PNG)
│ ├── sensors/ # センサーデータ (CSV)
│ └── annotations.csv # ラベルデータ
├── test/
│ └── ...
└── README.md
使い方
from datasets import load_dataset
dataset = load_dataset("Romihi50/minicar-dataset")
# トレーニングデータ
for sample in… See the full description on the dataset page: https://huggingface.co/datasets/Romihi50/minicar-dataset.
