Update README.md
Browse files
README.md
CHANGED
|
@@ -76,13 +76,13 @@ ds = load_dataset('JetBrains-Research/lca-codegen-small', split='test')
|
|
| 76 |
* `filename` – filepath to the completion file
|
| 77 |
* `content` – content of the completion file
|
| 78 |
* `completion_lines` – dictionary where keys are classes of lines and values are a list of integers (numbers of lines to complete). The classes are:
|
| 79 |
-
* `committed` – line contains at least one function or class that was declared in the committed files from `commit_hash`
|
| 80 |
-
* `inproject` – line contains at least one function or class that was declared in the project (excluding previous)
|
| 81 |
-
* `infile` – line contains at least one function or class that was declared in the completion file (excluding previous)
|
| 82 |
-
* `common` – line contains at least one function or class that was classified to be common, e.g., `main`, `get`, etc (excluding previous)
|
| 83 |
-
* `non_informative` – line that was classified to be non-informative, e.g. too short, contains comments, etc
|
| 84 |
-
* `random` – randomly sampled from the rest of the lines
|
| 85 |
-
* `repo_snapshot` – dictionary with a snapshot of the repository before the commit. Has the same structure as `completion_file`, but filenames and contents are
|
| 86 |
* `completion_lines_raw` – the same as `completion_lines`, but before sampling.
|
| 87 |
|
| 88 |
## How we collected the data
|
|
|
|
| 76 |
* `filename` – filepath to the completion file
|
| 77 |
* `content` – content of the completion file
|
| 78 |
* `completion_lines` – dictionary where keys are classes of lines and values are a list of integers (numbers of lines to complete). The classes are:
|
| 79 |
+
* `committed` – line contains at least one function or class that was declared in the committed files from `commit_hash`
|
| 80 |
+
* `inproject` – line contains at least one function or class that was declared in the project (excluding previous)
|
| 81 |
+
* `infile` – line contains at least one function or class that was declared in the completion file (excluding previous)
|
| 82 |
+
* `common` – line contains at least one function or class that was classified to be common, e.g., `main`, `get`, etc (excluding previous)
|
| 83 |
+
* `non_informative` – line that was classified to be non-informative, e.g. too short, contains comments, etc
|
| 84 |
+
* `random` – randomly sampled from the rest of the lines
|
| 85 |
+
* `repo_snapshot` – dictionary with a snapshot of the repository before the commit. Has the same structure as `completion_file`, but filenames and contents are organized as lists.
|
| 86 |
* `completion_lines_raw` – the same as `completion_lines`, but before sampling.
|
| 87 |
|
| 88 |
## How we collected the data
|