Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -42,6 +42,19 @@ All rows prepared as useful columns. All text prepared as markdown text, and cod
|
|
42 |
\`\`\`
|
43 |
```
|
44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
### Infostart
|
47 |
Choosen data at [Infostart](https://forum.infostart.ru/group2/?a=26694) are all forums threads with found answers in section Dev.
|
@@ -76,18 +89,6 @@ All data at [Fastcode](https://fastcode.im/Templates?TemplatesOnly=True) are onl
|
|
76 |
|
77 |
You can find in folder `scripts_parsing`!
|
78 |
|
79 |
-
### ❗IMPORTANT❗: Escaping special characters
|
80 |
-
|
81 |
-
Values in columns `prompt`, `think_process`, and `solution` have escaped special characters like `\n`, `\t`, and `\\`!
|
82 |
-
|
83 |
-
The reason for this behavior: the Python's `csv` module that I'm using in the parser to save rows saves `\n` as an actual newline character,
|
84 |
-
which makes reading the prepared file with Pandas impossible.
|
85 |
-
|
86 |
-
To fix it use simple lambda code:
|
87 |
-
```python
|
88 |
-
return_back_special_symbols = lambda x: x.replace("\\n", "\n").replace("\\t", "\t").replace("\\\\", "\\")
|
89 |
-
```
|
90 |
-
|
91 |
## Citation
|
92 |
|
93 |
Please cite this dataset if you use it in your work:
|
|
|
42 |
\`\`\`
|
43 |
```
|
44 |
|
45 |
+
### ❗IMPORTANT❗: Escaping special characters
|
46 |
+
|
47 |
+
Values in columns `prompt`, `think_process`, and `solution` have escaped special characters like `\n`, `\t`, and `\\`!
|
48 |
+
|
49 |
+
The reason for this behavior: the Python's `csv` module that I'm using in the parser to save rows saves `\n` as an actual newline character,
|
50 |
+
which makes reading the prepared file with Pandas impossible.
|
51 |
+
|
52 |
+
To fix it use simple lambda code:
|
53 |
+
```python
|
54 |
+
return_back_special_symbols = lambda x: x.replace("\\n", "\n").replace("\\t", "\t").replace("\\\\", "\\")
|
55 |
+
```
|
56 |
+
|
57 |
+
|
58 |
|
59 |
### Infostart
|
60 |
Choosen data at [Infostart](https://forum.infostart.ru/group2/?a=26694) are all forums threads with found answers in section Dev.
|
|
|
89 |
|
90 |
You can find in folder `scripts_parsing`!
|
91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
## Citation
|
93 |
|
94 |
Please cite this dataset if you use it in your work:
|