WenhaoWang
commited on
Commit
•
f0807b4
1
Parent(s):
419cef8
Update README.md
Browse files
README.md
CHANGED
@@ -46,7 +46,7 @@ tags:
|
|
46 |
---
|
47 |
|
48 |
```python
|
49 |
-
# Full text and image prompts: ~13.4G
|
50 |
from datasets import load_dataset
|
51 |
ds = load_dataset("WenhaoWang/TIP-I2V", split='Full', streaming=True)
|
52 |
|
@@ -57,7 +57,7 @@ df = pd.DataFrame(ds)
|
|
57 |
|
58 |
|
59 |
```python
|
60 |
-
# 100k subset text and image prompts: ~0.8G
|
61 |
from datasets import load_dataset
|
62 |
ds = load_dataset("WenhaoWang/TIP-I2V", split='Subset', streaming=True)
|
63 |
|
@@ -66,6 +66,15 @@ import pandas as pd
|
|
66 |
df = pd.DataFrame(ds)
|
67 |
```
|
68 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
```python
|
70 |
# Full videos generated by Pika: ~1T
|
71 |
from huggingface_hub import hf_hub_download
|
|
|
46 |
---
|
47 |
|
48 |
```python
|
49 |
+
# Full (text and compressed image) prompts: ~13.4G
|
50 |
from datasets import load_dataset
|
51 |
ds = load_dataset("WenhaoWang/TIP-I2V", split='Full', streaming=True)
|
52 |
|
|
|
57 |
|
58 |
|
59 |
```python
|
60 |
+
# 100k subset (text and compressed image) prompts: ~0.8G
|
61 |
from datasets import load_dataset
|
62 |
ds = load_dataset("WenhaoWang/TIP-I2V", split='Subset', streaming=True)
|
63 |
|
|
|
66 |
df = pd.DataFrame(ds)
|
67 |
```
|
68 |
|
69 |
+
```python
|
70 |
+
# Full uncompressed image prompts: ~1T
|
71 |
+
from huggingface_hub import hf_hub_download
|
72 |
+
for i in range(1,52):
|
73 |
+
hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="image_prompt_tar/image_prompt_%d.tar"%i, repo_type="dataset")
|
74 |
+
|
75 |
+
|
76 |
+
```
|
77 |
+
|
78 |
```python
|
79 |
# Full videos generated by Pika: ~1T
|
80 |
from huggingface_hub import hf_hub_download
|