emrecengdev commited on
Commit
47eb374
·
verified ·
1 Parent(s): 1b297e3

add dataset card and split manifests

Browse files
Files changed (5) hide show
  1. README.md +23 -35
  2. manifest.csv +0 -0
  3. test.csv +0 -0
  4. train.csv +0 -0
  5. val.csv +0 -0
README.md CHANGED
@@ -1,35 +1,23 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: image
7
- dtype: image
8
- - name: label
9
- dtype: int32
10
- - name: width
11
- dtype: int32
12
- - name: height
13
- dtype: int32
14
- splits:
15
- - name: train
16
- num_bytes: 126730295
17
- num_examples: 16334
18
- - name: validation
19
- num_bytes: 13866323
20
- num_examples: 2045
21
- - name: test
22
- num_bytes: 13817607
23
- num_examples: 2045
24
- download_size: 150520232
25
- dataset_size: 154414225
26
- configs:
27
- - config_name: default
28
- data_files:
29
- - split: train
30
- path: data/train-*
31
- - split: validation
32
- path: data/validation-*
33
- - split: test
34
- path: data/test-*
35
- ---
 
1
+ # Dataset Card
2
+
3
+ ## Overview
4
+ This dataset contains labeled image crops for multi-class visual symbol classification.
5
+
6
+ ## Structure
7
+ - `images/`: image files referenced by the manifests
8
+ - `manifest.csv`: full index
9
+ - `train.csv`, `val.csv`, `test.csv`: split manifests
10
+
11
+ ## Schema
12
+ All CSV files use:
13
+ `id,image_path,label,width,height,split`
14
+
15
+ `image_path` is relative to the dataset root, formatted as `images/<filename>`.
16
+
17
+ ## Usage
18
+ 1. Load one of the split CSV files.
19
+ 2. Resolve `image_path` from dataset root.
20
+ 3. Use `label` as the class target.
21
+
22
+ ## Notes
23
+ This release includes only sanitized metadata and referenced images needed for training/evaluation splits.
 
 
 
 
 
 
 
 
 
 
 
 
manifest.csv ADDED
The diff for this file is too large to render. See raw diff
 
test.csv ADDED
The diff for this file is too large to render. See raw diff
 
train.csv ADDED
The diff for this file is too large to render. See raw diff
 
val.csv ADDED
The diff for this file is too large to render. See raw diff