ArabovMK commited on
Commit
5a8dd3a
·
verified ·
1 Parent(s): a8e9b86

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +73 -24
README.md CHANGED
@@ -1,28 +1,77 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
- - name: title
5
- dtype: string
6
- - name: author
7
- dtype: string
8
- - name: language
9
- dtype: string
10
- - name: content
11
- dtype: string
12
- splits:
13
- - name: train
14
- num_bytes: 2840860.0
15
- num_examples: 5
16
- - name: validation
17
- num_bytes: 336209
18
- num_examples: 1
19
- download_size: 1272427
20
- dataset_size: 3177069.0
21
- configs:
22
- - config_name: default
23
- data_files:
24
- - split: train
25
- path: data/train-*
26
- - split: validation
27
- path: data/validation-*
28
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - tg
4
+ - ru
5
+ license: cc-by-sa-4.0
6
+ tags:
7
+ - programming
8
+ - cryptography
9
+ - education
10
+ - tajik-books
11
+ pretty_name: Arabov's Books on Programming and Cryptography
12
  dataset_info:
13
  features:
14
+ - name: title
15
+ dtype: string
16
+ - name: author
17
+ dtype: string
18
+ - name: language
19
+ dtype: string
20
+ - name: content
21
+ dtype: string
22
+ download_size: ~1 MB
23
+ dataset_size: ~1 MB
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  ---
25
+
26
+ # 📚 Arabov's Books on Programming and Cryptographic Methods
27
+
28
+ This dataset includes **6 books** by **Mullosharaf Qurbonovich Arabov** and co-authors, covering topics of **programming** (PascalABC.NET, C++, Android development) and **cryptographic information protection methods**.
29
+
30
+ Suitable for educational purposes, programming training, and research in cryptography.
31
+
32
+ ---
33
+
34
+ ## 📄 Example record
35
+
36
+ ```json
37
+ {
38
+ "title": "Асосҳои барномасозӣ дар забони C++",
39
+ "author": "Муллошараф Арабов",
40
+ "language": "tajik",
41
+ "content": "Муқаддима
42
+ Барои оғози омӯзиши барномасозӣ дар забони C++..."
43
+ }
44
+ ```
45
+
46
+ ---
47
+
48
+ ## 📦 Usage
49
+
50
+ ```python
51
+ from datasets import load_dataset
52
+
53
+ dataset = load_dataset("ArabovMK/arabovs-books-corpus")
54
+ ```
55
+
56
+ ---
57
+
58
+ ## 🎯 Purpose
59
+
60
+ - 📖 Study of programming and cryptographic methods
61
+ - 🛡️ Cryptographic information protection research
62
+ - 🧠 NLP tasks: code understanding, educational material modeling
63
+ - 📊 Training language models on Tajik technical texts
64
+
65
+ ---
66
+
67
+ ## 📌 Citation
68
+
69
+ ```bibtex
70
+ @misc{arabovs-books-corpus,
71
+ title = {Arabov's Books on Programming and Cryptography},
72
+ author = {Arabov, Mullosharaf Qurbonovich},
73
+ year = {2025},
74
+ publisher = {Hugging Face Datasets},
75
+ url = {https://huggingface.co/datasets/ArabovMK/arabovs-books-corpus}
76
+ }
77
+ ```