File size: 1,499 Bytes
b9dc0b4 feaf987 b9dc0b4 feaf987 b9dc0b4 46aff9a 3e423dc b9dc0b4 46aff9a 3e423dc b9dc0b4 feaf987 5db2163 7715fa7 5db2163 f4e7af1 8ad70fa 5db2163 7715fa7 f4e7af1 8ad70fa 7715fa7 5db2163 80a0047 3157372 80a0047 5db2163 |
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
---
language:
- en
license: cc-by-nc-4.0
size_categories:
- 1M<n<10M
task_categories:
- image-to-video
- text-to-video
dataset_info:
features:
- name: UUID
dtype: string
- name: Text_Prompt
dtype: string
- name: Image_Prompt
dtype: image
- name: Subject
dtype: string
- name: Timestamp
dtype: string
- name: Text_NSFW
dtype: float32
- name: Image_NSFW
dtype: string
splits:
- name: Full
num_bytes: 13440652664.125
num_examples: 1701935
- name: Subset
num_bytes: 790710630.0
num_examples: 100000
download_size: 27346257675
dataset_size: 27672015958.25
configs:
- config_name: default
data_files:
- split: Full
path: data/Full-*
- split: Subset
path: data/Subset-*
tags:
- prompt
- image-to-video
- text-to-video
---
```python
# Full text and image prompts: ~13.4G
from datasets import load_dataset
ds = load_dataset("WenhaoWang/TIP-I2V", split='Full', streaming=True)
# Convert to Pandas format
import pandas as pd
df = pd.DataFrame(ds)
```
```python
# 100k subset text and image prompts: ~0.8G
from datasets import load_dataset
ds = load_dataset("WenhaoWang/TIP-I2V", split='Subset', streaming=True)
# Convert to Pandas format
import pandas as pd
df = pd.DataFrame(ds)
```
```python
# Full videos generated by Pika: ~1T
from huggingface_hub import hf_hub_download
for i in range(1,52):
hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="pika_videos_tar/pika_videos_1.tar", repo_type="dataset")
```
|