Update README.md
Browse files
README.md
CHANGED
@@ -38,20 +38,27 @@ configs:
|
|
38 |
path: data/validation-*
|
39 |
- split: test
|
40 |
path: data/test-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
---
|
42 |
|
43 |
-
#
|
44 |
|
45 |
## Dataset Description
|
46 |
|
47 |
-
This dataset contains
|
48 |
|
49 |
### Features
|
50 |
|
51 |
-
- `code`: The
|
52 |
- `docstring`: Documentation comment for the function
|
53 |
- `func_name`: Function name
|
54 |
-
- `language`: Programming language (always "
|
55 |
- `repo`: Source repository name
|
56 |
- `path`: File path within the repository
|
57 |
- `url`: GitHub URL to the source file
|
@@ -82,9 +89,8 @@ print(train_data[0])
|
|
82 |
|
83 |
## Source
|
84 |
|
85 |
-
This dataset was created by scraping
|
86 |
|
87 |
## License
|
88 |
|
89 |
-
This dataset contains code from various repositories with different licenses. Each sample includes its original license information in the `license` field.
|
90 |
-
|
|
|
38 |
path: data/validation-*
|
39 |
- split: test
|
40 |
path: data/test-*
|
41 |
+
license: apache-2.0
|
42 |
+
task_categories:
|
43 |
+
- translation
|
44 |
+
language:
|
45 |
+
- en
|
46 |
+
tags:
|
47 |
+
- code
|
48 |
---
|
49 |
|
50 |
+
# Python Code Dataset
|
51 |
|
52 |
## Dataset Description
|
53 |
|
54 |
+
This dataset contains Python functions with their documentation comments extracted from GitHub repositories.
|
55 |
|
56 |
### Features
|
57 |
|
58 |
+
- `code`: The Python function code
|
59 |
- `docstring`: Documentation comment for the function
|
60 |
- `func_name`: Function name
|
61 |
+
- `language`: Programming language (always "Python")
|
62 |
- `repo`: Source repository name
|
63 |
- `path`: File path within the repository
|
64 |
- `url`: GitHub URL to the source file
|
|
|
89 |
|
90 |
## Source
|
91 |
|
92 |
+
This dataset was created by scraping Python code from GitHub repositories. Each function includes its documentation comment and license information.
|
93 |
|
94 |
## License
|
95 |
|
96 |
+
This dataset contains code from various repositories with different licenses. Each sample includes its original license information in the `license` field.
|
|