Update README.md
Browse files
README.md
CHANGED
|
@@ -170,6 +170,13 @@ Data fields for function level:
|
|
| 170 |
- **identifier** (string): the function or method name
|
| 171 |
- **code** (string): the part of the original that is code
|
| 172 |
- **code_tokens** (list): tokenized version of `code`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 173 |
|
| 174 |
|
| 175 |
### Data Splits
|
|
|
|
| 170 |
- **identifier** (string): the function or method name
|
| 171 |
- **code** (string): the part of the original that is code
|
| 172 |
- **code_tokens** (list): tokenized version of `code`
|
| 173 |
+
- **original_comment** (string): original text of comment ,
|
| 174 |
+
- **comment** (string): clean version of comment,
|
| 175 |
+
- **comment_tokens** (list): tokenized version of `comment`,
|
| 176 |
+
- **start_point** (int): start position of `original_comment` in `code`,
|
| 177 |
+
- **end_point** (int): end position of `original_comment` in `code`,
|
| 178 |
+
- **prev_context** (dict): block of code before `original_comment`,
|
| 179 |
+
- **next_context** (dict): block of code after `original_comment`
|
| 180 |
|
| 181 |
|
| 182 |
### Data Splits
|