phanerozoic commited on
Commit
93c7c42
·
verified ·
1 Parent(s): 50ce1f1

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +67 -27
README.md CHANGED
@@ -1,29 +1,69 @@
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: 2933330
21
- num_examples: 3304
22
- download_size: 708347
23
- dataset_size: 2933330
24
- configs:
25
- - config_name: default
26
- data_files:
27
- - split: train
28
- path: data/train-*
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ tags:
4
+ - theorem-proving
5
+ - formal-methods
6
+ - coq
7
+ - color
8
+ - termination
9
+ - rewriting
10
+ - lambda-calculus
11
+ task_categories:
12
+ - text-generation
13
+ - feature-extraction
14
+ language:
15
+ - en
16
+ size_categories:
17
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
18
  ---
19
+
20
+ # Coq-CoLoR
21
+
22
+ A library on rewriting theory, lambda-calculus and termination.
23
+
24
+ ## Source
25
+
26
+ - **Repository:** https://github.com/fblanqui/color
27
+ - **License:** CeCILL-2.1
28
+
29
+ ## Statistics
30
+
31
+ | Property | Value |
32
+ |----------|-------|
33
+ | **Total Entries** | 3,304 |
34
+ | **Files Processed** | 264 |
35
+
36
+ ### Type Distribution
37
+
38
+ | Type | Count |
39
+ |------|-------|
40
+ | Lemma | 2,015 |
41
+ | Definition | 540 |
42
+ | Parameter | 223 |
43
+ | Fixpoint | 172 |
44
+ | Ltac | 157 |
45
+ | Inductive | 101 |
46
+ | Theorem | 27 |
47
+ | Program | 25 |
48
+ | Record | 19 |
49
+ | Let | 11 |
50
+ | Instance | 7 |
51
+ | Axiom | 4 |
52
+ | Coercion | 2 |
53
+ | Remark | 1 |
54
+
55
+ ## Schema
56
+
57
+ | Column | Type | Description |
58
+ |--------|------|-------------|
59
+ | `fact` | string | Declaration body (name, signature, proof) |
60
+ | `type` | string | Declaration type |
61
+ | `library` | string | Library component |
62
+ | `imports` | list[string] | Import statements |
63
+ | `filename` | string | Source file path |
64
+ | `symbolic_name` | string | Declaration identifier |
65
+ | `docstring` | string | Documentation comment (if present) |
66
+
67
+ ## Creator
68
+
69
+ Charles Norton ([phanerozoic](https://huggingface.co/phanerozoic))