missvector commited on
Commit
8cc90da
·
verified ·
1 Parent(s): a926b36

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -4
README.md CHANGED
@@ -1,13 +1,26 @@
1
  ---
2
  license: apache-2.0
3
  task_categories:
4
- - text-classification
5
  - text-generation
6
  language:
7
  - ru
 
 
 
 
 
 
 
 
 
8
  tags:
9
  - linux
10
  - shell
 
 
 
 
 
11
  pretty_name: LinLM
12
  size_categories:
13
  - n<1K
@@ -52,9 +65,47 @@ dataset_info:
52
 
53
  ## LinLM Dataset
54
 
55
- A dataset for prompt recognition
 
 
56
 
57
  Features:
58
 
59
- - Supports the Russian language
60
- - Can be used to fine-tune LLMs for Arch Linux commands recognition
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  task_categories:
 
4
  - text-generation
5
  language:
6
  - ru
7
+ - ar
8
+ - en
9
+ - zh
10
+ - de
11
+ - fr
12
+ - es
13
+ - pt
14
+ - ja
15
+ - ko
16
  tags:
17
  - linux
18
  - shell
19
+ - commands
20
+ - terminal
21
+ - multilingual
22
+ - development
23
+ - system-administration
24
  pretty_name: LinLM
25
  size_categories:
26
  - n<1K
 
65
 
66
  ## LinLM Dataset
67
 
68
+ A curated synthetic dataset for Linux command inference
69
+
70
+ Natural language description -> shell commands
71
 
72
  Features:
73
 
74
+ - Supports 10+ languages
75
+ - Arch Linux commands recognition
76
+ - Fine-tune LLM for development, system administration, file operations, Git, Docker, and more
77
+
78
+
79
+ ## Usage
80
+
81
+ ```python
82
+ from datasets import load_dataset
83
+
84
+ dataset = load_dataset("missvector/linux-commands")
85
+
86
+ def format_for_training(example):
87
+ return {
88
+ "prompt": f"Convert to Linux command: {example['eng']}",
89
+ "completion": example['completion']
90
+ }
91
+
92
+ training_data = dataset['train'].map(format_for_training)
93
+ ```
94
+
95
+ ### Out-of-Scope Use
96
+ - Not for production deployment without additional validation
97
+ - Commands should be reviewed before execution
98
+
99
+ ## Citation
100
+
101
+ If you use this dataset in your research, please cite:
102
+
103
+ ```bibtex
104
+ @misc{linuxcommands2024,
105
+ author = {V. Firsanova},
106
+ title = {LinLM Dataset},
107
+ year = {2025},
108
+ publisher = {Hugging Face Datasets},
109
+ howpublished = {\url{https://huggingface.co/datasets/missvector/linux-commands}}
110
+ }
111
+ ```