DLMveloper commited on
Commit
cc082b1
·
verified ·
1 Parent(s): e5fbf56

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +81 -1
README.md CHANGED
@@ -16,8 +16,88 @@ license_link: LICENSE
16
  ---
17
  [![License](https://img.shields.io/badge/License-dlm--license-ff9d00?style=for-the-badge&logo=huggingface&logoColor=white)](https://huggingface.co/datasets/DLMveloper/DLM_DataSet/blob/main/LICENSE)
18
 
19
- ### README.md for Dataset:
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  # DLM DATASET
22
 
23
  ## Overview & Background
 
16
  ---
17
  [![License](https://img.shields.io/badge/License-dlm--license-ff9d00?style=for-the-badge&logo=huggingface&logoColor=white)](https://huggingface.co/datasets/DLMveloper/DLM_DataSet/blob/main/LICENSE)
18
 
 
19
 
20
+ <style>
21
+ @keyframes gradient-flow {
22
+ 0% { background-position: 0% 50%; }
23
+ 50% { background-position: 100% 50%; }
24
+ 100% { background-position: 0% 50%; }
25
+ }
26
+ .animated-gradient {
27
+ background: linear-gradient(90deg, #1a1003, #4a3000, #1a1003);
28
+ background-size: 200% 200%;
29
+ animation: gradient-flow 6s ease infinite;
30
+ }
31
+ .section-card {
32
+ background: #0a0a0a;
33
+ border: 1px solid #333;
34
+ border-radius: 16px;
35
+ padding: 24px;
36
+ margin-top: 20px;
37
+ color: #e0e0e0;
38
+ }
39
+ </style>
40
+
41
+ <div style="font-family:Inter, sans-serif; border:1px solid rgba(255,157,0,0.35); border-radius:18px; overflow:hidden; margin:24px 0;">
42
+ <div class="animated-gradient" style="padding:28px 30px; border-bottom:1px solid rgba(255,157,0,0.22);">
43
+ <h1 style="margin:0; color:#fff; font-size:34px; font-weight:900;">DLM DATASET</h1>
44
+ <p style="margin:10px 0 0 0; color:#ffe9b9; font-size:15px;">Large-scale multi-lingual (EN, KK, RU) & code-centric corpus for ML.</p>
45
+ </div>
46
+
47
+ <div style="display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:1px; background:rgba(255,157,0,0.18);">
48
+ <div style="padding:15px; background:#050505; text-align:center;">
49
+ <div style="color:#ff9d00; font-size:11px; font-weight:900;">SCALE</div>
50
+ <div style="color:#fff; font-weight:bold;">10M-100M</div>
51
+ </div>
52
+ <div style="padding:15px; background:#050505; text-align:center;">
53
+ <div style="color:#ff9d00; font-size:11px; font-weight:900;">FORMAT</div>
54
+ <div style="color:#fff; font-weight:bold;">JSONL</div>
55
+ </div>
56
+ <div style="padding:15px; background:#050505; text-align:center;">
57
+ <div style="color:#ff9d00; font-size:11px; font-weight:900;">LANGUAGES</div>
58
+ <div style="color:#fff; font-weight:bold;">EN / KK / RU</div>
59
+ </div>
60
+ </div>
61
+ </div>
62
+
63
+ <div class="section-card">
64
+ <h2 style="color:#ff9d00; margin-top:0;">🔍 Data Schema</h2>
65
+ <p style="font-size:14px; line-height:1.6;">The dataset utilizes a robust structure optimized for fast parsing:</p>
66
+ <ul style="font-size:14px;">
67
+ <li><code>id</code>: Unique sample identifier</li>
68
+ <li><code>text</code>: Main text or code payload</li>
69
+ <li><code>language</code>: Language tag (en, kk, ru)</li>
70
+ <li><code>prog_lang</code>: Python/JS markers/C# Unity/C++/Java</li>
71
+ <li><code>category</code>: logic (idk)
72
+ <li><code>difficulty</code>: mode
73
+ <li><code>instruction</code>: Questions
74
+ <li><code>output</code>: Answers
75
+ </ul>
76
+ </div>
77
+
78
+ <div class="section-card">
79
+ <h2 style="color:#ff9d00; margin-top:0;">🚀 Quick Start</h2>
80
+ <pre style="background:#111; padding:15px; border-radius:8px; border:1px solid #222; overflow-x:auto;">
81
+ <code>from datasets import load_dataset
82
+ ds = load_dataset("DLMveloper/DLM_DATASET", streaming=True)
83
+ print(next(iter(ds['train'])))</code></pre>
84
+ </div>
85
+
86
+ <div class="section-card">
87
+ <h2 style="color:#ff9d00; margin-top:0;">🤝 Support & Community</h2>
88
+ <p style="font-size:14px;">Feedback is highly appreciated! Join the conversation in the <a href="https://huggingface.co/datasets/DLMveloper/DLM_DATASET/discussions" style="color:#ff9d00;">community tab</a>.</p>
89
+ </div>
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+ ### README.md for Dataset Text views:
100
+ For those who don't understand the table above
101
  # DLM DATASET
102
 
103
  ## Overview & Background