File size: 1,055 Bytes
fb5acb4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: artistic-2.0
viewer: true
size_categories:
- n<1K
---

# ZebangCheng/test_hf_data

## Dataset Summary
A collection of short video clips annotated with emotions, stored efficiently using Parquet format with embedded video paths.

## Dataset Fields

| Field | Type | Description |
|------|------|-------------|
| video_path | string | Path to the video file (MP4 format) |
| label | string | Emotion label, e.g., happy, sad, angry, neutral, etc. |
| description | string | Short description of the video content |
| video_id | string | Unique video identifier |

## Example

| video_path | label | description | video_id |
|------------|------|-------------|----------|
| video/00019.mp4 | neutral | It's me. | 00019.mp4 |

## How to Use

```python
from datasets import load_dataset

dataset = load_dataset("ZebangCheng/test_hf_data", split='train')
print(dataset[0]['video_path'])  # Path to video
print(dataset[0]['label'])       # Emotion label
print(dataset[0]['description']) # Video description
print(dataset[0]['video_id'])    # Video ID