Yuzmi commited on
Commit
164ebc5
1 Parent(s): 6aa1f53

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -10
README.md CHANGED
@@ -1,10 +1,20 @@
1
- ---
2
- |_README.md
3
- |_train
4
- |_ img1.png
5
- |_ img2.png
6
- # download the dataset
7
- !git lfs install
8
- !git clone https://huggingface.co/datasets/Yuzmi/TatsukichiHayama
9
- from datasets import load_dataset
10
- ds = load_dataset("imagefolder", data_files={"train": "Yuzmi/TatsukichiHayama**"})
 
 
 
 
 
 
 
 
 
 
 
1
+ dataset:
2
+ - name: README.md
3
+ type: file
4
+ - name: train
5
+ type: directory
6
+ contents:
7
+ - name: img1.png
8
+ type: file
9
+ - name: img2.png
10
+ type: file
11
+ - name: download_dataset
12
+ type: command
13
+ commands:
14
+ - git lfs install
15
+ - git clone https://huggingface.co/datasets/Yuzmi/TatsukichiHayama
16
+ - name: load_dataset
17
+ type: python
18
+ code: |
19
+ from datasets import load_dataset
20
+ ds = load_dataset("imagefolder", data_files={"train": "Yuzmi/TatsukichiHayama"})