--- license: apache-2.0 task_categories: - text-generation language: - ru - ar - en - zh - de - fr - es - pt - ja - ko tags: - linux - shell - commands - terminal - multilingual - development - system-administration pretty_name: LinLM size_categories: - n<1K configs: - config_name: ar data_files: - split: train path: ar/train-* - config_name: ch data_files: - split: train path: ch/train-* - config_name: de data_files: - split: train path: de/train-* - config_name: default data_files: - split: train path: data/train-* - config_name: eng data_files: - split: train path: eng/train-* - config_name: es data_files: - split: train path: es/train-* - config_name: fr data_files: - split: train path: fr/train-* - config_name: ja data_files: - split: train path: ja/train-* - config_name: ko data_files: - split: train path: ko/train-* - config_name: pt data_files: - split: train path: pt/train-* - config_name: ru data_files: - split: train path: ru/train-* dataset_info: - config_name: ar features: - name: ar dtype: string - name: completion dtype: string - name: category dtype: string splits: - name: train num_bytes: 185130 num_examples: 2449 download_size: 82833 dataset_size: 185130 - config_name: ch features: - name: ch dtype: string - name: completion dtype: string - name: category dtype: string splits: - name: train num_bytes: 153456 num_examples: 2449 download_size: 75230 dataset_size: 153456 - config_name: de features: - name: de dtype: string - name: completion dtype: string - name: category dtype: string splits: - name: train num_bytes: 163679 num_examples: 2449 download_size: 79418 dataset_size: 163679 - config_name: default features: - name: ru dtype: string - name: ch dtype: string - name: eng dtype: string - name: de dtype: string - name: fr dtype: string - name: es dtype: string - name: pt dtype: string - name: ja dtype: string - name: ko dtype: string - name: ar dtype: string - name: completion dtype: string - name: category dtype: string splits: - name: train num_bytes: 796040 num_examples: 2449 download_size: 398545 dataset_size: 796040 - config_name: eng features: - name: eng dtype: string - name: completion dtype: string - name: category dtype: string splits: - name: train num_bytes: 154194 num_examples: 2449 download_size: 75744 dataset_size: 154194 - config_name: es features: - name: es dtype: string - name: completion dtype: string - name: category dtype: string splits: - name: train num_bytes: 168733 num_examples: 2449 download_size: 79252 dataset_size: 168733 - config_name: fr features: - name: fr dtype: string - name: completion dtype: string - name: category dtype: string splits: - name: train num_bytes: 171479 num_examples: 2449 download_size: 80787 dataset_size: 171479 - config_name: ja features: - name: ja dtype: string - name: completion dtype: string - name: category dtype: string splits: - name: train num_bytes: 179403 num_examples: 2449 download_size: 81896 dataset_size: 179403 - config_name: ko features: - name: ko dtype: string - name: completion dtype: string - name: category dtype: string splits: - name: train num_bytes: 163348 num_examples: 2449 download_size: 77309 dataset_size: 163348 - config_name: pt features: - name: pt dtype: string - name: completion dtype: string - name: category dtype: string splits: - name: train num_bytes: 167402 num_examples: 2449 download_size: 78976 dataset_size: 167402 - config_name: ru features: - name: ru dtype: string - name: completion dtype: string - name: category dtype: string splits: - name: train num_bytes: 206046 num_examples: 2449 download_size: 89855 dataset_size: 206046 --- ## LinLM Dataset A curated synthetic dataset for Linux command inference Natural language description -> shell commands Features: - Supports 10+ languages - Arch Linux commands recognition - Fine-tune LLM for development, system administration, file operations, Git, Docker, and more ## Usage ```python from datasets import load_dataset dataset = load_dataset("missvector/linux-commands") def format_for_training(example): return { "prompt": f"Convert to Linux command: {example['eng']}", "completion": example['completion'] } training_data = dataset['train'].map(format_for_training) ``` ## Out-of-Scope Use - Not for production deployment without additional validation - Commands should be reviewed before execution ## Related Projects - [llama-dynamic-context](https://github.com/vifirsanova/llama-dynamic-context) - command inference tool tested with this dataset ## Citation If you use this dataset in your research, please cite: ```bibtex @misc{linuxcommands2025, author = {V. Firsanova}, title = {LinLM Dataset}, year = {2025}, publisher = {Hugging Face Datasets}, howpublished = {\url{https://huggingface.co/datasets/missvector/linux-commands}} } ```