|
import json
|
|
import datasets
|
|
|
|
class Nl2Bash(datasets.GeneratorBasedBuilder):
|
|
"""Nl2Bash: A dataset of natural language commands and their corresponding Bash commands"""
|
|
|
|
VERSION = datasets.Version("1.0.0")
|
|
|
|
def _info(self):
|
|
return datasets.DatasetInfo(
|
|
description="Nl2Bash: A dataset of natural language commands and their corresponding Bash commands",
|
|
features=datasets.Features(
|
|
{
|
|
"srno": datasets.Value("int32"),
|
|
"nl_command": datasets.Value("string"),
|
|
"bash_code": datasets.Value("string"),
|
|
}
|
|
),
|
|
supervised_keys=None,
|
|
homepage="http://example.com",
|
|
license="MIT",
|
|
)
|
|
|
|
def _split_generators(self, dl_manager):
|
|
data_files = {
|
|
"train": "data/train.json",
|
|
"dev": "data/dev.json",
|
|
"test": "data/test.json",
|
|
}
|
|
return [
|
|
datasets.SplitGenerator(
|
|
name=datasets.Split.TRAIN, gen_kwargs={"filepath": data_files["train"]}
|
|
),
|
|
datasets.SplitGenerator(
|
|
name=datasets.Split.VALIDATION, gen_kwargs={"filepath": data_files["dev"]}
|
|
),
|
|
datasets.SplitGenerator(
|
|
name=datasets.Split.TEST, gen_kwargs={"filepath": data_files["test"]}
|
|
),
|
|
]
|
|
|
|
def _generate_examples(self, filepath):
|
|
with open(filepath, encoding="utf-8") as f:
|
|
data = json.load(f)
|
|
for idx, entry in enumerate(data):
|
|
yield idx, {
|
|
"srno": entry["srno"],
|
|
"nl_command": entry["nl_command"],
|
|
"bash_code": entry["bash_code"],
|
|
}
|
|
|