tripathysagar commited on
Commit
d8dcab5
·
verified ·
1 Parent(s): 21c1c4a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -0
README.md CHANGED
@@ -14,4 +14,21 @@ configs:
14
  data_files:
15
  - split: train
16
  path: data/train-*
 
 
 
 
 
 
 
 
17
  ---
 
 
 
 
 
 
 
 
 
 
14
  data_files:
15
  - split: train
16
  path: data/train-*
17
+ license: mit
18
+ task_categories:
19
+ - text-generation
20
+ language:
21
+ - en
22
+ pretty_name: man_text
23
+ size_categories:
24
+ - 10M<n<100M
25
  ---
26
+
27
+ The data set is extracted from [Linux/UNIX system programming training](https://man7.org/index.html). Extracted the manuals for linux cmds.
28
+ ```python
29
+ from datasets import load_dataset
30
+
31
+ downloaded_dataset = load_dataset("tripathysagar/man_text")
32
+
33
+ display(downloaded_dataset)
34
+ ```