|
--- |
|
license: cc-by-nc-sa-4.0 |
|
extra_gated_prompt: >- |
|
To access the AnimeVid Dataset, please agree to the data usage license. We will send the dataset link to your educational email address. Due to server constraints, priority will be given to research institutions. |
|
extra_gated_fields: |
|
Applicant Name: text |
|
Education Email Address: text |
|
Institution Name: text |
|
|
|
I agree to use this dataset for non-commercial research ONLY: checkbox |
|
|
|
configs: |
|
- config_name: AnimeVid |
|
data_files: |
|
- split: train_full |
|
path: animevid_train_full_textguard.parquet |
|
- split: train_aes |
|
path: animevid_train_aesthetic_textguard.parquet |
|
- split: train_small |
|
path: animevid_train_small_textguard.parquet |
|
- split: val |
|
path: animevid_val_textguard.parquet |
|
- split: test |
|
path: animevid_test_textguard.parquet |
|
|
|
--- |
|
|
|
### How to use |
|
|
|
1. make sure your environment is set up |
|
```bash |
|
pip install datasets |
|
``` |
|
|
|
2. Run the following command to download&load your data |
|
|
|
```python |
|
from datasets import load_dataset |
|
dataset = load_dataset("aidenpan/s_clips-v1.0-textguard") |
|
``` |
|
|
|
3. Print it out |
|
```python |
|
print(dataset["val"]["identifier"]) |
|
``` |
|
|
|
```bash |
|
['137720:2', |
|
'221257:7', |
|
'159943:2', |
|
'124745:14', |
|
'179035:9' |
|
... |
|
] |
|
``` |