WenhaoWang commited on
Commit
8ad70fa
1 Parent(s): f4e7af1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -0
README.md CHANGED
@@ -49,6 +49,10 @@ tags:
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
 
@@ -56,6 +60,10 @@ ds = load_dataset("WenhaoWang/TIP-I2V", split='Full', streaming=True)
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
 
 
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
+ # Convert to Pandas format
54
+ import pandas as pd
55
+ df = pd.DataFrame(ds)
56
  ```
57
 
58
 
 
60
  # 100k subset text and image prompts: ~0.8G
61
  from datasets import load_dataset
62
  ds = load_dataset("WenhaoWang/TIP-I2V", split='Subset', streaming=True)
63
+
64
+ # Convert to Pandas format
65
+ import pandas as pd
66
+ df = pd.DataFrame(ds)
67
  ```
68
 
69