phanerozoic commited on
Commit
f4c6daf
·
verified ·
1 Parent(s): a15616d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -3
README.md CHANGED
@@ -1,3 +1,64 @@
1
- ---
2
- license: lgpl-2.1
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - "en"
4
+ pretty_name: "Coq Changelog Dataset"
5
+ tags:
6
+ - "theorem-proving"
7
+ - "formal-methods"
8
+ - "coq"
9
+ - "changelog"
10
+ - "version-control"
11
+ license: "lgpl-2.1"
12
+ task_categories:
13
+ - "text-generation"
14
+ - "feature-extraction"
15
+ - "other"
16
+ ---
17
+
18
+ # Coq Changelog Dataset
19
+
20
+ ## Dataset Description
21
+
22
+ The Coq Changelog Dataset is derived from the official Coq changelogs, focusing on versions 8.17 to 8.20. These versions were specifically chosen as they represent changes that may be underrepresented or entirely absent from current language model training data. By targeting these recent versions, this dataset helps address knowledge gaps in formal methods tools and theorem proving systems.
23
+
24
+ This dataset provides structured, machine-readable entries for changes in Coq, including additions, fixes, deprecations, and removals, with a focus on practical updates likely to impact users or developers.
25
+
26
+ ### Dataset Structure
27
+
28
+ The dataset includes the following fields:
29
+ - version: The Coq version associated with the change (e.g., "8.20.0").
30
+ - category: The category of the change (e.g., "Kernel," "Tactics," "Notations").
31
+ - type: The type of change (e.g., "Added," "Fixed," "Changed," "Deprecated," "Removed").
32
+ - change: The actual modification description (excluding references and author details).
33
+ - change_number: A list of all referenced change numbers (e.g., ["12345", "67890"]).
34
+
35
+ ### Example Row
36
+
37
+ {
38
+ "version": "8.20.0",
39
+ "category": "Kernel",
40
+ "type": "Changed",
41
+ "change": "The guard checker now recognizes uniform parameters of a fixpoint and treats their instances as constant over the recursive call",
42
+ "change_number": ["17986", "16040"]
43
+ }
44
+
45
+ ### Source Code
46
+
47
+ The dataset was created by processing the official Coq changelogs to extract and structure their content into individual, machine-readable entries. While the changelogs cover Coq's entire history, only changes from versions 8.17 through 8.20 are included here. This selection reflects the likelihood that older versions are already well-represented in language models, while recent updates are more prone to omission. Parenthetical references (e.g., "#12345," "fixes #67890") were parsed into the change_number field for indexing and analysis, while the change field retains a clean, descriptive summary of the update.
48
+
49
+ ### Usage
50
+
51
+ This dataset is designed for:
52
+ - Formal Methods Research: Understanding the evolution of Coq features and their impact on proof strategies.
53
+ - Machine Learning Applications: Training models for Coq version prediction, changelog summarization, or toolchain adaptation.
54
+ - Educational Purposes: Teaching Coq users about recent changes or deprecated features in new releases.
55
+
56
+ ### License
57
+
58
+ This dataset is distributed under the LGPL-2.1 license, aligning with the licensing of the Coq project.
59
+
60
+ ### Acknowledgments
61
+
62
+ - Official Coq Repository: https://github.com/coq/coq
63
+ - Dataset Maintainer: phanerozoic
64
+ - Inspired by: Andreas Florath's Coq Facts, Propositions, and Proofs Dataset