Update README.md
Browse files
README.md
CHANGED
|
@@ -7,4 +7,16 @@ sdk: static
|
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
```
|