trojblue commited on
Commit
e949c4d
·
verified ·
1 Parent(s): 3b051d8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -1
README.md CHANGED
@@ -7,4 +7,16 @@ sdk: static
7
  pinned: false
8
  ---
9
 
10
- Edit this `README.md` markdown file to author your organization card.
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  pinned: false
8
  ---
9
 
10
+ HOW TO USE data from the org:
11
+
12
+ ```python
13
+ from datasets import Dataset, load_dataset
14
+
15
+ # load from hub
16
+ human_dataset = load_dataset("datatmp/aesthetic_eagle_weak_15k", split="train")
17
+ human_df = human_dataset.to_pandas()
18
+
19
+ # push to hub
20
+ dataset_combined = Dataset.from_pandas(df)
21
+ dataset_combined.push_to_hub("datatmp/aesthetic_eagle_weak_15k-mod")
22
+ ```