WenhaoWang
commited on
Commit
•
f4e7af1
1
Parent(s):
40decd2
Update README.md
Browse files
README.md
CHANGED
@@ -48,14 +48,14 @@ tags:
|
|
48 |
```python
|
49 |
# Full text and image prompts: ~13.4G
|
50 |
from datasets import load_dataset
|
51 |
-
ds = load_dataset("WenhaoWang/TIP-I2V", split='Full')
|
52 |
```
|
53 |
|
54 |
|
55 |
```python
|
56 |
# 100k subset text and image prompts: ~0.8G
|
57 |
from datasets import load_dataset
|
58 |
-
ds = load_dataset("WenhaoWang/TIP-I2V", split='Subset')
|
59 |
```
|
60 |
|
61 |
|
|
|
48 |
```python
|
49 |
# Full text and image prompts: ~13.4G
|
50 |
from datasets import load_dataset
|
51 |
+
ds = load_dataset("WenhaoWang/TIP-I2V", split='Full', streaming=True)
|
52 |
```
|
53 |
|
54 |
|
55 |
```python
|
56 |
# 100k subset text and image prompts: ~0.8G
|
57 |
from datasets import load_dataset
|
58 |
+
ds = load_dataset("WenhaoWang/TIP-I2V", split='Subset', streaming=True)
|
59 |
```
|
60 |
|
61 |
|