Create dataset.yam
Browse files- dataset.yam +29 -0
dataset.yam
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
model: TatsukichiHayama
|
3 |
+
description: A dataset for Tatsukichi Hayama containing training images.
|
4 |
+
license: apache-2.0
|
5 |
+
tags:
|
6 |
+
- image-classification
|
7 |
+
- training-dataset
|
8 |
+
---
|
9 |
+
|
10 |
+
dataset:
|
11 |
+
- name: README.md
|
12 |
+
type: file
|
13 |
+
- name: train
|
14 |
+
type: directory
|
15 |
+
contents:
|
16 |
+
- name: img1.png
|
17 |
+
type: file
|
18 |
+
- name: img2.png
|
19 |
+
type: file
|
20 |
+
- name: download_dataset
|
21 |
+
type: command
|
22 |
+
commands:
|
23 |
+
- git lfs install
|
24 |
+
- git clone https://huggingface.co/datasets/Yuzmi/TatsukichiHayama
|
25 |
+
- name: load_dataset
|
26 |
+
type: python
|
27 |
+
code: |
|
28 |
+
from datasets import load_dataset
|
29 |
+
ds = load_dataset("imagefolder", data_files={"train": "Yuzmi/TatsukichiHayama"})
|