phanerozoic commited on
Commit
3dc4d37
·
verified ·
1 Parent(s): 7b1fda4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -5
README.md CHANGED
@@ -1,5 +1,73 @@
1
- ---
2
- license: other
3
- license_name: unimath
4
- license_link: LICENSE
5
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - "en"
4
+ pretty_name: "UniMath Dataset"
5
+ tags:
6
+ - "theorem-proving"
7
+ - "formal-methods"
8
+ - "univalent-mathematics"
9
+ - "coq"
10
+ license: "bsd-2-clause"
11
+ task_categories:
12
+ - "text-generation"
13
+ - "feature-extraction"
14
+ - "other"
15
+ ---
16
+
17
+ # UniMath Dataset
18
+
19
+ ## Dataset Description
20
+ The UniMath Dataset is derived from the UniMath repository, focusing on the formalization of Univalent Mathematics in the Coq proof assistant. This dataset processes .v files from the core mathematical libraries to extract mathematical content in a structured format. This work builds upon the format established by Andreas Florath (@florath) in his Coq Facts, Propositions and Proofs dataset, providing a more focused and structured view of the UniMath library specifically.
21
+
22
+ ### Dataset Structure
23
+ The dataset includes the following fields:
24
+ - fact: The mathematical statement body
25
+ - type: The statement type (Definition/Lemma/Theorem/etc.)
26
+ - library: The originating library (Algebra/CategoryTheory/etc.)
27
+ - imports: The Require Import statements from the source file
28
+ - filename: The source file path within UniMath
29
+ - symbolic_name: The identifier of the mathematical object
30
+ - __index_level_0__: Sequential index for the dataset
31
+
32
+ ### Example Row
33
+ fact: "(X : abmonoid) {L : hrel X} (is : isbinophrel L) (isi : isinvbinophrel L) (isl : isdecrel L) : isdecrel (abgrdiffrel X is)"
34
+ type: "Definition"
35
+ library: "Algebra"
36
+ imports: "Require Import UniMath.MoreFoundations.Orders. Require Import UniMath.MoreFoundations.Subtypes."
37
+ filename: "Algebra/AbelianGroups.v"
38
+ symbolic_name: "isdecabgrdiffrel"
39
+ __index_level_0__: 55
40
+
41
+ ### Source Code
42
+ The dataset was generated using a custom Python script that processes core UniMath libraries including Algebra, CategoryTheory, Foundations, and others. The extraction focuses on mathematical content while preserving the structure and relationships between definitions, lemmas, and their source files.
43
+
44
+ ### Coverage
45
+ The dataset includes content from the following UniMath libraries:
46
+ - Algebra
47
+ - Bicategories
48
+ - CategoryTheory
49
+ - Combinatorics
50
+ - Foundations
51
+ - HomologicalAlgebra
52
+ - Ktheory
53
+ - MoreFoundations
54
+ - NumberSystems
55
+ - OrderTheory
56
+ - PAdics
57
+ - RealNumbers
58
+ - SubstitutionSystems
59
+ - Topology
60
+
61
+ ### Usage
62
+ This dataset is designed for:
63
+ - Formal Methods Research: Analyzing formal proofs and definitions in Univalent Mathematics
64
+ - Machine Learning Applications: Training models on formal verification, code completion, and theorem proving tasks
65
+ - Educational Purposes: Providing structured examples of UniMath formalizations
66
+ - Mathematical Analysis: Studying the structure and patterns in formalized mathematical content
67
+
68
+ ### License
69
+ This dataset is distributed under the BSD 2-clause license, aligning with the license of the original UniMath repository.
70
+
71
+ ### Acknowledgments
72
+ - Original repository: UniMath (https://github.com/UniMath/UniMath)
73
+ - Inspiration: Hugging Face user Andreas Florath (@florath) and his comprehensive Coq dataset