WenhaoWang
commited on
Commit
•
20eb853
1
Parent(s):
2e12a80
Update README.md
Browse files
README.md
CHANGED
@@ -50,6 +50,9 @@ tags:
|
|
50 |
- text-to-video
|
51 |
---
|
52 |
|
|
|
|
|
|
|
53 |
```python
|
54 |
# Full (text and compressed image) prompts: ~13.4G
|
55 |
from datasets import load_dataset
|
@@ -81,6 +84,8 @@ import pandas as pd
|
|
81 |
df = pd.DataFrame(ds)
|
82 |
```
|
83 |
|
|
|
|
|
84 |
```python
|
85 |
# Embeddings for full text prompts (~21G) and image prompts (~3.5G)
|
86 |
from huggingface_hub import hf_hub_download
|
@@ -102,6 +107,7 @@ hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Embedding/Eval_Text_Embe
|
|
102 |
hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Embedding/Eval_Image_Embedding.parquet", repo_type="dataset")
|
103 |
```
|
104 |
|
|
|
105 |
|
106 |
```python
|
107 |
# Full uncompressed image prompts: ~1T
|
@@ -123,6 +129,8 @@ from huggingface_hub import hf_hub_download
|
|
123 |
hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="eval_image_prompt_tar/eval_image_prompt.tar", repo_type="dataset")
|
124 |
```
|
125 |
|
|
|
|
|
126 |
```python
|
127 |
# Full videos generated by Pika: ~1T
|
128 |
from huggingface_hub import hf_hub_download
|
|
|
50 |
- text-to-video
|
51 |
---
|
52 |
|
53 |
+
# Download
|
54 |
+
## Download the text and (compressed) image prompts with related information
|
55 |
+
|
56 |
```python
|
57 |
# Full (text and compressed image) prompts: ~13.4G
|
58 |
from datasets import load_dataset
|
|
|
84 |
df = pd.DataFrame(ds)
|
85 |
```
|
86 |
|
87 |
+
## Download the embeddings for text and image prompts
|
88 |
+
|
89 |
```python
|
90 |
# Embeddings for full text prompts (~21G) and image prompts (~3.5G)
|
91 |
from huggingface_hub import hf_hub_download
|
|
|
107 |
hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Embedding/Eval_Image_Embedding.parquet", repo_type="dataset")
|
108 |
```
|
109 |
|
110 |
+
## Download uncompressed image prompts
|
111 |
|
112 |
```python
|
113 |
# Full uncompressed image prompts: ~1T
|
|
|
129 |
hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="eval_image_prompt_tar/eval_image_prompt.tar", repo_type="dataset")
|
130 |
```
|
131 |
|
132 |
+
## Download generated videos
|
133 |
+
|
134 |
```python
|
135 |
# Full videos generated by Pika: ~1T
|
136 |
from huggingface_hub import hf_hub_download
|