Romihi50/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.
04
🏆 MiniCar Competition Leaderboard
自動運転ミニカーコンペティションのリーダーボードデータ
データ構造
使い方
import pandas as pd
from huggingface_hub import hf_hub_download
path = hf_hub_download(
repo_id="Romihi50/minicar-leaderboard",
filename="leaderboard.csv",
repo_type="dataset"
)
df = pd.read_csv(path)
print(df)