Venkatdatta commited on
Commit
10fb6c4
·
verified ·
1 Parent(s): 65cb005

Fix source attribution (Kaggle), clarify FOL translation as key preprocessing step, remove script reference

Browse files
Files changed (1) hide show
  1. README.md +10 -5
README.md CHANGED
@@ -19,9 +19,14 @@ size_categories:
19
 
20
  # FOL Reasoning Dataset
21
 
22
- A vocabulary-augmented version of the [ProofWriter](https://allenai.org/data/proofwriter) dataset (OWA splits), preprocessed for training a Natural Language → First-Order Logic translation model.
23
 
24
- ## What's different from ProofWriter
 
 
 
 
 
25
 
26
  The original ProofWriter uses a small fixed vocabulary (~75 entity names, ~80 properties). This dataset replaces every entity and predicate name per-question with a random draw from:
27
 
@@ -29,7 +34,7 @@ The original ProofWriter uses a small fixed vocabulary (~75 entity names, ~80 pr
29
  - **13,006 property words** — WordNet adjective synset lemmas (4–10 chars, alpha only)
30
  - **7,463 relation words** — WordNet verb synset lemmas (4–10 chars, alpha only)
31
 
32
- All original ProofWriter vocabulary is excluded from the replacement pools. The substitution is consistent within each question (same entity always maps to the same replacement). This forces the model to learn structural FOL mapping rather than memorising surface vocabulary.
33
 
34
  ## Dataset Structure
35
 
@@ -101,8 +106,8 @@ Unknown
101
 
102
  ## Source
103
 
104
- Built from ProofWriter OWA depth-2, depth-3, and depth-3ext splits. Preprocessing script: `scripts/preprocess_proofwriter.py` in the [FOL SLM repository](https://huggingface.co/Venkatdatta/fol-slm).
105
 
106
  ## License
107
 
108
- Apache 2.0. Original ProofWriter data © Allen Institute for AI (AI2), released under Apache 2.0.
 
19
 
20
  # FOL Reasoning Dataset
21
 
22
+ A preprocessed and vocabulary-augmented dataset derived from the [ProofWriter (Kaggle)](https://www.kaggle.com/datasets/mathurinache/proofwriter) OWA splits, built for training a Natural Language → First-Order Logic translation model.
23
 
24
+ The source dataset contains natural-language premises and questions in English along with structured proof metadata. Our preprocessing adds two things that the original does not provide:
25
+
26
+ 1. **FOL translations** — each natural-language statement is converted to First-Order Logic via a rule-based translator (100% coverage). ProofWriter's NL maps deterministically to FOL (e.g. "Anne is kind" → `Kind(anne)`, "If someone is kind then they are furry" → `forall x (Kind(x) -> Furry(x))`). Proof chains and Unknown failure traces are also converted to FOL form.
27
+ 2. **Vocabulary substitution** — entity and predicate names are replaced per-question with random draws from large NLTK/WordNet pools, forcing models to learn structural FOL mapping rather than surface name memorisation.
28
+
29
+ ## Vocabulary substitution
30
 
31
  The original ProofWriter uses a small fixed vocabulary (~75 entity names, ~80 properties). This dataset replaces every entity and predicate name per-question with a random draw from:
32
 
 
34
  - **13,006 property words** — WordNet adjective synset lemmas (4–10 chars, alpha only)
35
  - **7,463 relation words** — WordNet verb synset lemmas (4–10 chars, alpha only)
36
 
37
+ All original ProofWriter vocabulary is excluded from the replacement pools. The substitution is consistent within each question (same entity always maps to the same replacement).
38
 
39
  ## Dataset Structure
40
 
 
106
 
107
  ## Source
108
 
109
+ Built from ProofWriter OWA depth-2, depth-3, and depth-3ext splits, sourced from [Kaggle (mathurinache/proofwriter)](https://www.kaggle.com/datasets/mathurinache/proofwriter).
110
 
111
  ## License
112
 
113
+ Apache 2.0. Original ProofWriter data by Allen Institute for AI (AI2), released under Apache 2.0.