metadata
title: README
emoji: π
colorFrom: green
colorTo: green
sdk: static
pinned: false
HOW TO USE data from the org:
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)