Update README.md
Browse files
README.md
CHANGED
|
@@ -18,8 +18,18 @@ configs:
|
|
| 18 |
data_files:
|
| 19 |
- split: train
|
| 20 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
---
|
| 22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
このデータセットは、[deepmind/code_contests](https://huggingface.co/datasets/deepmind/code_contests)からAtCoderのデータのみを抽出し、Pythonで正解として提出された最初のコードを取得して格納したものです。これにより、教師あり学習に適した形に整えられています。
|
| 24 |
|
| 25 |
This dataset is created by extracting only the data from AtCoder within [deepmind/code_contests](https://huggingface.co/datasets/deepmind/code_contests) and retrieving the first Python code submission marked as correct. As a result, it has been formatted to be suitable for supervised learning.
|
|
@@ -199,5 +209,4 @@ for i in range(m):
|
|
| 199 |
res = solve(a, m, k, uv)
|
| 200 |
print(str(res)[1:-1].replace(' ', '').replace(',', '\n'))
|
| 201 |
```
|
| 202 |
-
```
|
| 203 |
-
|
|
|
|
| 18 |
data_files:
|
| 19 |
- split: train
|
| 20 |
path: data/train-*
|
| 21 |
+
task_categories:
|
| 22 |
+
- text-generation
|
| 23 |
+
language:
|
| 24 |
+
- en
|
| 25 |
+
tags:
|
| 26 |
+
- code
|
| 27 |
---
|
| 28 |
|
| 29 |
+
This dataset is based on the "code_contests" dataset by DeepMind, licensed under CC BY 4.0.
|
| 30 |
+
Original dataset available at: https://huggingface.co/datasets/deepmind/code_contests
|
| 31 |
+
|
| 32 |
+
|
| 33 |
このデータセットは、[deepmind/code_contests](https://huggingface.co/datasets/deepmind/code_contests)からAtCoderのデータのみを抽出し、Pythonで正解として提出された最初のコードを取得して格納したものです。これにより、教師あり学習に適した形に整えられています。
|
| 34 |
|
| 35 |
This dataset is created by extracting only the data from AtCoder within [deepmind/code_contests](https://huggingface.co/datasets/deepmind/code_contests) and retrieving the first Python code submission marked as correct. As a result, it has been formatted to be suitable for supervised learning.
|
|
|
|
| 209 |
res = solve(a, m, k, uv)
|
| 210 |
print(str(res)[1:-1].replace(' ', '').replace(',', '\n'))
|
| 211 |
```
|
| 212 |
+
```
|
|
|