SoyVitou commited on
Commit
d00b0f8
·
verified ·
1 Parent(s): f0a6a00

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -3
README.md CHANGED
@@ -1,3 +1,52 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+ HME100K – Hugging Face Version
6
+
7
+ Dataset Name: HME100K (Hugging Face Version)
8
+
9
+ Original Source: https://www.kaggle.com/datasets/cutedeadu/hme100k
10
+
11
+ Original Author (Kaggle): cutedeadu
12
+
13
+ ## Overview
14
+ HME100K is a dataset of handwritten mathematical expressions.
15
+ Each sample consists of:
16
+ - An image containing a handwritten math expression
17
+ - A corresponding LaTeX-style text annotation
18
+
19
+ ## This dataset is useful for:
20
+ - Handwritten Mathematical Expression Recognition (HMER)
21
+ - OCR research for mathematical formulas
22
+ - Sequence-to-sequence modeling (image-to-LaTeX)
23
+ - Vision-language modeling tasks
24
+
25
+ ## Dataset Structure
26
+ This Hugging Face version provides the dataset in a structured format with 3 columns:
27
+ - id: Unique identifier of each sample
28
+ - image: Handwritten math expression image
29
+ - text: Ground truth LaTeX-style annotation
30
+
31
+ The dataset is stored in Apache Arrow (PyArrow) format for efficient loading with the Hugging Face datasets library.
32
+
33
+ ## Why This Version?
34
+ This version has been converted into Hugging Face Dataset format to:
35
+ 1. Make it easier to load using the datasets library
36
+ 2. Enable fast and memory-efficient access
37
+ 3. Allow seamless integration into Hugging Face training pipelines
38
+ 4. Provide convenient usage for researchers already working in the Hugging Face ecosystem
39
+
40
+ This conversion does NOT modify the original data content.
41
+ It only restructures the dataset for better accessibility.
42
+
43
+ ## Credit
44
+ All original data credit goes to:
45
+ - cutedeadu (Kaggle Author)
46
+ - Original dataset: HME100K
47
+ - Source: https://www.kaggle.com/datasets/cutedeadu/hme100k
48
+
49
+ If you use this dataset in your research, please consider crediting the original author and Kaggle source accordingly.
50
+
51
+ Hugging Face Conversion
52
+ This Hugging Face formatted version was created to improve accessibility and usability for the open research community.