Upload folder using huggingface_hub
Browse files
README.md
CHANGED
|
@@ -53,6 +53,20 @@ Each entry has:
|
|
| 53 |
```
|
| 54 |
---
|
| 55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
### ⚖️ Disclaimers
|
| 57 |
|
| 58 |
- The Clip-CC dataset contains references (via YouTube links) to publicly available movie clips. No video files are hosted or redistributed through this dataset—only links to existing content on YouTube are included.
|
|
|
|
| 53 |
```
|
| 54 |
---
|
| 55 |
|
| 56 |
+
|
| 57 |
+
### 🚀 Usage
|
| 58 |
+
|
| 59 |
+
```code
|
| 60 |
+
from datasets import load_dataset
|
| 61 |
+
|
| 62 |
+
# Load the dataset
|
| 63 |
+
dataset = load_dataset("your-username/clip-cc")
|
| 64 |
+
|
| 65 |
+
# Access a sample entry
|
| 66 |
+
print(dataset["train"][0])
|
| 67 |
+
```
|
| 68 |
+
---
|
| 69 |
+
|
| 70 |
### ⚖️ Disclaimers
|
| 71 |
|
| 72 |
- The Clip-CC dataset contains references (via YouTube links) to publicly available movie clips. No video files are hosted or redistributed through this dataset—only links to existing content on YouTube are included.
|