File size: 1,127 Bytes
3d8ce31 29f6309 3d8ce31 29f6309 94abfe1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
---
language:
- en
license: cc
size_categories:
- 10K<n<100K
task_categories:
- video-text-to-text
- video-classification
dataset_info:
features:
- name: mp4
dtype: binary
- name: json
struct:
- name: categories
dtype: string
- name: description
dtype: string
- name: file_name
dtype: string
- name: label
sequence: int32
---
# My Emotion Video Dataset
This dataset contains short video clips annotated with emotion categories. It is saved in `.parquet` format, with each row containing:
- a video (`mp4`) in binary
- a `json` object including:
- `file_name`: the name of the video
- `label`: list of integer emotion labels
- `categories`: emotion name (e.g., "happy", "neutral")
- `description`: short description of the clip
## Example usage
```python
from datasets import load_dataset
ds = load_dataset("ZebangCheng/test_hf_data_6", split="train")
print(ds[0]['json'])
# {'categories': 'neutral', 'description': "It's me.", 'file_name': '00019.mp4', 'label': [0]}
|