--- 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: full path: animevid_nsfw.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") ``` 3. Print it out ```python print(dataset["full"]["identifier"]) ``` ```bash ['137720:2', '221257:7', '159943:2', '124745:14', '179035:9' ... ] ```