phanerozoic commited on
Commit
956ec15
·
verified ·
1 Parent(s): 6f54b0d

Add README

Browse files
Files changed (1) hide show
  1. README.md +73 -27
README.md CHANGED
@@ -1,29 +1,75 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: fact
5
- dtype: string
6
- - name: type
7
- dtype: string
8
- - name: library
9
- dtype: string
10
- - name: imports
11
- list: string
12
- - name: filename
13
- dtype: string
14
- - name: symbolic_name
15
- dtype: string
16
- - name: docstring
17
- dtype: string
18
- splits:
19
- - name: train
20
- num_bytes: 889372
21
- num_examples: 3095
22
- download_size: 197360
23
- dataset_size: 889372
24
- configs:
25
- - config_name: default
26
- data_files:
27
- - split: train
28
- path: data/train-*
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: lgpl-2.1
3
+ task_categories:
4
+ - text-generation
5
+ - feature-extraction
6
+ language:
7
+ - en
8
+ tags:
9
+ - theorem-proving
10
+ - formal-methods
11
+ - coq
12
+ - equations
13
+ - dependent-pattern-matching
14
+ size_categories:
15
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  ---
17
+
18
+ # Coq-Equations
19
+
20
+ Structured dataset from Coq-Equations, a library for dependent pattern matching and well-founded recursion.
21
+
22
+ ## Dataset Description
23
+
24
+ - **Source:** [mattam82/Coq-Equations](https://github.com/mattam82/Coq-Equations)
25
+ - **Entries:** 3,095
26
+ - **Files processed:** 225
27
+ - **License:** LGPL 2.1
28
+
29
+ ## Schema
30
+
31
+ | Column | Type | Description |
32
+ |--------|------|-------------|
33
+ | fact | string | Full declaration (name, signature, body) |
34
+ | type | string | Equations, Lemma, Definition, Derive, etc. |
35
+ | library | string | Component (theories, examples, test-suite, doc) |
36
+ | imports | list | Import statements |
37
+ | filename | string | Source file path |
38
+ | symbolic_name | string | Declaration identifier |
39
+ | docstring | string | Documentation comment (14% coverage) |
40
+
41
+ ## Statistics
42
+
43
+ ### By Type
44
+ | Type | Count |
45
+ |------|-------|
46
+ | Lemma | 834 |
47
+ | Equations | 735 |
48
+ | Definition | 518 |
49
+ | Inductive | 300 |
50
+ | Derive | 234 |
51
+ | Instance | 129 |
52
+ | Theorem | 58 |
53
+ | Fixpoint | 57 |
54
+ | Class | 55 |
55
+ | Other | 175 |
56
+
57
+ ## Key Feature
58
+
59
+ This dataset uniquely contains **735 declarations** - the signature feature of Coq-Equations for dependent pattern matching:
60
+
61
+
62
+
63
+ ## Example Entry
64
+
65
+
66
+
67
+ ## Use Cases
68
+
69
+ - Dependent pattern matching research
70
+ - Well-founded recursion examples
71
+ - Training models on advanced Coq features
72
+
73
+ ## Citation
74
+
75
+