Yuzmi commited on
Commit
b5aa682
1 Parent(s): cd35243

Create repo.yaml:

Browse files
Files changed (1) hide show
  1. repo.yaml: +60 -0
repo.yaml: ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ # TatsukichiHayama Repository Card
3
+
4
+ id: Yuzmi/TatsukichiHayama
5
+ name: TatsukichiHayama Classifier
6
+ description: An image classification model for TatsukichiHayama character images.
7
+
8
+ # Add other relevant information about your repository
9
+
10
+ license: apache-2.0
11
+ tags:
12
+ - image-classification
13
+ - anime
14
+ - character-recognition
15
+
16
+ ---
17
+
18
+ # Repository Structure
19
+ # You can customize this based on your actual repository structure.
20
+
21
+ repositoryStructure:
22
+ - name: README.md
23
+ type: file
24
+ - name: model.yaml
25
+ type: file
26
+ - name: repo.yaml
27
+ type: file
28
+ - name: train
29
+ type: directory
30
+ contents:
31
+ - name: image1.png
32
+ type: file
33
+ - name: image2.png
34
+ type: file
35
+ - name: image3.png
36
+ type: file
37
+ - name: image4.png
38
+ type: file
39
+ - name: image5.png
40
+ type: file
41
+ - name: image6.png
42
+ type: file
43
+ - name: image7.png
44
+ type: file
45
+ - name: image8.png
46
+ type: file
47
+ - name: image9.png
48
+ type: file
49
+ - name: image10.png
50
+ type: file
51
+ - name: download_dataset
52
+ type: command
53
+ commands:
54
+ - git lfs install
55
+ - git clone https://huggingface.co/datasets/your-username/TatsukichiHayama
56
+ - name: load_dataset
57
+ type: python
58
+ code: |
59
+ from datasets import load_dataset
60
+ ds = load_dataset("imagefolder", data_files={"train": "your-username/TatsukichiHayama"})