Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
syCen
/
CameraBench
like
4
Modalities:
Image
Text
Video
Formats:
json
Size:
1K - 10K
ArXiv:
arxiv:
2504.15376
Tags:
video
camera-motion
cinematography
Libraries:
Datasets
pandas
Croissant
+ 1
License:
mit
Dataset card
Data Studio
Files
Files and versions
Community
1
main
CameraBench
/
tmp.py
syCen
nothing
edc9e77
5 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
276 Bytes
from
datasets
import
Dataset, Features, Value, Video
features = Features({
"video"
: Video(),
# ✅ 指定 video 字段是视频类型
"labels"
: [Value(
"string"
)],
"caption"
: Value(
"string"
)
})
dataset = Dataset.from_json(
"videos_test.jsonl"
, features=features)