File size: 456 Bytes
3b051d8 e949c4d 2f287af e949c4d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
---
title: README
emoji: π
colorFrom: green
colorTo: green
sdk: static
pinned: false
---
HOW TO USE data from the org:
```python
from datasets import Dataset, load_dataset
# load from hub
human_dataset = load_dataset("datatmp/aesthetic_eagle_weak_15k", split="train")
human_df = human_dataset.to_pandas()
# push to hub
dataset_combined = Dataset.from_pandas(df)
dataset_combined.push_to_hub("datatmp/aesthetic_eagle_weak_15k-mod", private=True)
```
|