kevinkyi commited on
Commit
c0d6d32
·
verified ·
1 Parent(s): e1609fd

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +21 -41
README.md CHANGED
@@ -1,55 +1,35 @@
1
  ---
2
- pretty_name: Pens & Pencils (Tabular, 5 columns)
3
- tags:
4
- - tabular
5
- - education
6
- - augmentation
7
  license: cc-by-4.0
8
- task_categories:
9
- - tabular-classification
10
- configs:
11
- - config_name: default
12
- data_files:
13
- - split: original
14
- path: data/original-*
15
- - split: augmented
16
- path: data/augmented-*
17
- dataset_info:
18
- features:
19
- - name: length_cm
20
- dtype: float64
21
- - name: weight_g
22
- dtype: float64
23
- - name: is_metallic
24
- dtype: int64
25
- - name: body_shape
26
- dtype: string
27
- - name: has_clip
28
- dtype: int64
29
- - name: is_pen
30
- dtype: int64
31
- splits:
32
- - name: original
33
- num_bytes: 1532
34
- num_examples: 30
35
- - name: augmented
36
- num_bytes: 15361
37
- num_examples: 300
38
- download_size: 11536
39
- dataset_size: 16893
40
  ---
41
 
42
  # Pens & Pencils (Tabular)
43
 
44
- ## Features (5)
 
 
 
45
  - **length_cm** (float)
46
  - **weight_g** (float)
47
  - **is_metallic** (0/1)
48
- - **body_shape** (string; e.g., round/hexagonal/triangular/other)
49
- - **is_pen** (binary target, 1=pen, 0=pencil)
 
50
 
51
  ## Splits
52
  - `original`: 30 manually measured rows (≥30)
53
  - `augmented`: 300 synthetic rows (≥300), label-preserving jitter on numeric fields
54
 
55
- ## Notes
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: Pens & Pencils (Tabular, 6 columns)
3
+ tags: [tabular, education, augmentation]
 
 
 
4
  license: cc-by-4.0
5
+ task_categories: [tabular-classification]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  ---
7
 
8
  # Pens & Pencils (Tabular)
9
 
10
+ This dataset contains real-world measurements of pens and pencils collected manually,
11
+ with augmentation for experimentation in ML education.
12
+
13
+ ## Features (6)
14
  - **length_cm** (float)
15
  - **weight_g** (float)
16
  - **is_metallic** (0/1)
17
+ - **body_shape** (categorical; e.g., round, hexagonal, triangular)
18
+ - **has_clip** (0/1)
19
+ - **is_pen** (binary target; 1 = pen, 0 = pencil)
20
 
21
  ## Splits
22
  - `original`: 30 manually measured rows (≥30)
23
  - `augmented`: 300 synthetic rows (≥300), label-preserving jitter on numeric fields
24
 
25
+ ## EDA
26
+ - See `assets/feature_dists.png` and `assets/target_dist.png` for summary distributions.
27
+
28
+ ## Intended Use
29
+ Educational use for practice with tabular data, augmentation, and Hugging Face Datasets.
30
+
31
+ ## Ethical Notes
32
+ All data collected is from personal, non-sensitive objects (pens/pencils). No PII.
33
+
34
+ ## AI Usage
35
+ Some augmentation code was assisted with GenAI, transparently documented in this notebook.