datasets
Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.
NL2Bash
NL2Bash
This dataset is a collection of natural language (English) instructions and corresponding Bash commands for the task of natural language to Bash translation (NL2Bash).
Dataset Details
Dataset Description
Our dataset is enhanced version of NL2SH-ALFA dataset. We improved the natural language instruction to make them more clear to avoid ambuiguity. NL2SH-ALFA dataset was produced by combining, deduplicating and filtering multiple datasets from… See the full description on the dataset page: https://huggingface.co/datasets/dilkushsingh/NL2Bash.NL2Bash
NL2Bash
English natural-language instructions paired with Bash commands for NL→Bash translation.
Files
Split
File
Columns
train
NL2bash_train.csv
nl, bash
test
NL2bash_test.csv
nl, bash, bash2, difficulty
difficulty: 0 = easy, 1 = medium, 2 = hard.
Load
from datasets import load_dataset
ds = load_dataset("liontech/NL2Bash", "train")
