Update src/tasks_content.py
Browse files- src/tasks_content.py +13 -12
src/tasks_content.py
CHANGED
@@ -44,20 +44,21 @@ TASKS_DESCRIPTIONS = {
|
|
44 |
"library_usage": "cool description for Library Usage Examples Generation task",
|
45 |
|
46 |
"project_code_completion": """# Project-Level Code Completion\n
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
|
|
52 |
|
53 |
We use standard Exact Match (EM) metric for one-line code completion.
|
54 |
-
We evaluate Exact Match for different line categories
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
|
62 |
For further details on the dataset and the baselines from ποΈ Long Code Arena Team, refer to `code_completion` folder in [our baselines repository](https://github.com/JetBrains-Research/lca-baselines) or to our preprint (TODO).
|
63 |
""",
|
|
|
44 |
"library_usage": "cool description for Library Usage Examples Generation task",
|
45 |
|
46 |
"project_code_completion": """# Project-Level Code Completion\n
|
47 |
+
|
48 |
+
Our Project-Level Code Completion π€ [JetBrains-Research/lca-code-completion](https://huggingface.co/datasets/JetBrains-Research/lca-code-completion) includes four datasets:
|
49 |
+
* `small-context`: 144 data points,
|
50 |
+
* `medium-context`: 224 data points,
|
51 |
+
* `large-context`: 270 data points,
|
52 |
+
* `huge-context`: 296 data points.
|
53 |
|
54 |
We use standard Exact Match (EM) metric for one-line code completion.
|
55 |
+
We evaluate Exact Match for different line categories:
|
56 |
+
* *infile* β functions and classes are from the completion file;
|
57 |
+
* *inproject* β functions and files are from the repository snapshot;
|
58 |
+
* *committed* β functions and classes are from the files that were added on the completion file commit;
|
59 |
+
* *common* β functions and classes with common names, e.g., `main`, `get`, etc.;
|
60 |
+
* *non-informative* β short/long lines, import/print lines, or comment lines;
|
61 |
+
* *random* β lines that doesn't fit to any of previous categories.
|
62 |
|
63 |
For further details on the dataset and the baselines from ποΈ Long Code Arena Team, refer to `code_completion` folder in [our baselines repository](https://github.com/JetBrains-Research/lca-baselines) or to our preprint (TODO).
|
64 |
""",
|