WenhaoWang
commited on
Commit
•
3bd0ebe
1
Parent(s):
557fa65
Update README.md
Browse files
README.md
CHANGED
@@ -71,6 +71,16 @@ import pandas as pd
|
|
71 |
df = pd.DataFrame(ds)
|
72 |
```
|
73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
```python
|
75 |
# Embeddings for full text prompts (~21G) and image prompts (~3.5G)
|
76 |
from huggingface_hub import hf_hub_download
|
|
|
71 |
df = pd.DataFrame(ds)
|
72 |
```
|
73 |
|
74 |
+
```python
|
75 |
+
# 10k subset for TIP-Eval: ~0.8G
|
76 |
+
from datasets import load_dataset
|
77 |
+
ds = load_dataset("WenhaoWang/TIP-I2V", split='Eval', streaming=True)
|
78 |
+
|
79 |
+
# Convert to Pandas format (it may be slow)
|
80 |
+
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
|