WenhaoWang
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -67,15 +67,20 @@ df = pd.DataFrame(ds)
|
|
67 |
```
|
68 |
|
69 |
```python
|
70 |
-
# Embeddings for full text prompts
|
71 |
-
|
|
|
|
|
72 |
```
|
73 |
|
74 |
```python
|
75 |
-
# Embeddings for
|
76 |
-
|
|
|
|
|
77 |
```
|
78 |
|
|
|
79 |
```python
|
80 |
# Full uncompressed image prompts: ~1T
|
81 |
from huggingface_hub import hf_hub_download
|
|
|
67 |
```
|
68 |
|
69 |
```python
|
70 |
+
# Embeddings for full text prompts (~xxG) and image prompts (~xxG)
|
71 |
+
from huggingface_hub import hf_hub_download
|
72 |
+
hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Full_Text_Embedding.parquet", repo_type="dataset")
|
73 |
+
hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Full_Image_Embedding.parquet", repo_type="dataset")
|
74 |
```
|
75 |
|
76 |
```python
|
77 |
+
# Embeddings for 100k subset text prompts (~xxG) and image prompts (~xxG)
|
78 |
+
from huggingface_hub import hf_hub_download
|
79 |
+
hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Subset_Text_Embedding.parquet", repo_type="dataset")
|
80 |
+
hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Subset_Image_Embedding.parquet", repo_type="dataset")
|
81 |
```
|
82 |
|
83 |
+
|
84 |
```python
|
85 |
# Full uncompressed image prompts: ~1T
|
86 |
from huggingface_hub import hf_hub_download
|