WenhaoWang commited on
Commit
83a9ebf
·
verified ·
1 Parent(s): 3c8e461

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -4
README.md CHANGED
@@ -67,15 +67,20 @@ df = pd.DataFrame(ds)
67
  ```
68
 
69
  ```python
70
- # Embeddings for full text prompts: ~xxG
71
-
 
 
72
  ```
73
 
74
  ```python
75
- # Embeddings for full image prompts: ~xxG
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