File size: 546 Bytes
ad08774 fda70cc 164ebc5 ad08774 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
metadata:
license: apache-2.0
dataset:
- name: README.md
type: file
- name: train
type: directory
contents:
- name: img1.png
type: file
- name: img2.png
type: file
- name: download_dataset
type: command
commands:
- git lfs install
- git clone https://huggingface.co/datasets/Yuzmi/TatsukichiHayama
- name: load_dataset
type: python
code: |
from datasets import load_dataset
ds = load_dataset("imagefolder", data_files={"train": "Yuzmi/TatsukichiHayama"})
|