Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -36,7 +36,7 @@ The raw data in this project are collected from eight open-source F* reposirotie
|
|
36 |
|
37 |
## Primary-Objective
|
38 |
This dataset's primary objective is to train and evaluate Proof-oriented Programming with AI (PoPAI, in short). Given a specification of a program and proof is F*,
|
39 |
-
the objective of a AI model is to synthesize the implemantation (see [below](#
|
40 |
|
41 |
## Data Format
|
42 |
Each of the examples in this dataset are organized as dictionaries with the following schema
|
@@ -72,6 +72,17 @@ Each of the examples in this dataset are organized as dictionaries with the foll
|
|
72 |
```
|
73 |
|
74 |
# Usage
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
|
76 |
## Input
|
77 |
|
|
|
36 |
|
37 |
## Primary-Objective
|
38 |
This dataset's primary objective is to train and evaluate Proof-oriented Programming with AI (PoPAI, in short). Given a specification of a program and proof is F*,
|
39 |
+
the objective of a AI model is to synthesize the implemantation (see [below](#usage) for details about the usage of this dataset, including the input and output).
|
40 |
|
41 |
## Data Format
|
42 |
Each of the examples in this dataset are organized as dictionaries with the following schema
|
|
|
72 |
```
|
73 |
|
74 |
# Usage
|
75 |
+
To use this dataset with [`datasets`](https://pypi.org/project/datasets/),
|
76 |
+
```py
|
77 |
+
from datasets import load_dataset
|
78 |
+
|
79 |
+
data = load_data("microsoft/FStarDataSet")
|
80 |
+
train_data = data["train"]
|
81 |
+
eval_data = data["valid"]
|
82 |
+
test_data = data["test"]
|
83 |
+
|
84 |
+
intra_project_test_data = test_data.
|
85 |
+
```
|
86 |
|
87 |
## Input
|
88 |
|