DLMveloper commited on
Commit
c9bdf25
·
verified ·
1 Parent(s): 41c7de4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -7
README.md CHANGED
@@ -31,13 +31,15 @@ However, the dataset is structured to provide a comprehensive mix of textual dat
31
 
32
  The dataset is formatted using **JSON** and **JSON Lines (JSONL)** to ensure fast parsing and seamless integration with modern deep learning frameworks.
33
 
34
- ### Data Fields
35
- Based on the compilation process, each data instance is expected to contain the following core attributes:
36
- * **`id`** *(string)*: A unique identifier for tracking individual samples.
37
- * **`text`** *(string)*: The primary payload, which can be a paragraph of natural language or a structured block of source code.
38
- * **`language`** *(string)*: The language code representing the text content (`en`, `kk`, or `ru`).
39
- * **`programming_language`** *(string, optional)*: Explicitly defined as `python` or `javascript` if the sample contains source code.
40
- * **`metadata`** *(dictionary, optional)*: Additional contextual attributes such as source origin or license types.
 
 
41
 
42
  ### How to Use & Integration Guide
43
  Since the dataset is quite large (ranging between 10 million and 100 million rows), loading it entirely into RAM might be inefficient depending on your hardware setup. Below are the recommended ways to handle the data.
 
31
 
32
  The dataset is formatted using **JSON** and **JSON Lines (JSONL)** to ensure fast parsing and seamless integration with modern deep learning frameworks.
33
 
34
+ ### 🔍 Data Fields
35
+
36
+ | Field Name | Type | Description |
37
+ | :--- | :--- | :--- |
38
+ | 🆔 **`id`** | *string* | A unique identifier for tracking individual samples. |
39
+ | 📝 **`text`** | *string* | The primary payload (natural language text or structured source code). |
40
+ | 🌐 **`language`** | *string* | The language code representing the text content (`en`, `kk`, or `ru`). |
41
+ | 💻 **`programming_language`** | *string, optional* | Explicitly defined as `python` or `javascript` if the sample contains code. |
42
+ | ⚙️ **`metadata`** | *dict, optional* | Additional contextual attributes such as source origin or license types. |
43
 
44
  ### How to Use & Integration Guide
45
  Since the dataset is quite large (ranging between 10 million and 100 million rows), loading it entirely into RAM might be inefficient depending on your hardware setup. Below are the recommended ways to handle the data.