WenhaoWang commited on
Commit
4c462bb
1 Parent(s): 692f965

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -5
README.md CHANGED
@@ -84,15 +84,22 @@ df = pd.DataFrame(ds)
84
  ```python
85
  # Embeddings for full text prompts (~21G) and image prompts (~3.5G)
86
  from huggingface_hub import hf_hub_download
87
- hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Full_Text_Embedding.parquet", repo_type="dataset")
88
- hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Full_Image_Embedding.parquet", repo_type="dataset")
89
  ```
90
 
91
  ```python
92
  # Embeddings for 100k subset text prompts (~1.2G) and image prompts (~0.2G)
93
  from huggingface_hub import hf_hub_download
94
- hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Subset_Text_Embedding.parquet", repo_type="dataset")
95
- hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Subset_Image_Embedding.parquet", repo_type="dataset")
 
 
 
 
 
 
 
96
  ```
97
 
98
 
@@ -111,7 +118,7 @@ for i in range(1,3):
111
  ```
112
 
113
  ```python
114
- # 10k TIP-Eval uncompressed image prompts: ~69.6G
115
  from huggingface_hub import hf_hub_download
116
  hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="eval_image_prompt_tar/eval_image_prompt.tar", repo_type="dataset")
117
  ```
 
84
  ```python
85
  # Embeddings for full text prompts (~21G) and image prompts (~3.5G)
86
  from huggingface_hub import hf_hub_download
87
+ hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Embedding/Full_Text_Embedding.parquet", repo_type="dataset")
88
+ hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Embedding/Full_Image_Embedding.parquet", repo_type="dataset")
89
  ```
90
 
91
  ```python
92
  # Embeddings for 100k subset text prompts (~1.2G) and image prompts (~0.2G)
93
  from huggingface_hub import hf_hub_download
94
+ hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Embedding/Subset_Text_Embedding.parquet", repo_type="dataset")
95
+ hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Embedding/Subset_Image_Embedding.parquet", repo_type="dataset")
96
+ ```
97
+
98
+ ```python
99
+ # Embeddings for 10k TIP-Eval text prompts (~0.1G) and image prompts (~0.02G)
100
+ from huggingface_hub import hf_hub_download
101
+ hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Embedding/Eval_Text_Embedding.parquet", repo_type="dataset")
102
+ hf_hub_download(repo_id="WenhaoWang/TIP-I2V", filename="Embedding/Eval_Image_Embedding.parquet", repo_type="dataset")
103
  ```
104
 
105
 
 
118
  ```
119
 
120
  ```python
121
+ # 10k TIP-Eval uncompressed image prompts: ~6.5G
122
  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
  ```