Areyde commited on
Commit
8aefb4e
β€’
1 Parent(s): eca78b2

Update src/content.py

Browse files
Files changed (1) hide show
  1. src/content.py +13 -6
src/content.py CHANGED
@@ -5,16 +5,23 @@ from .formatting import styled_warning
5
  # ================================
6
  INTRODUCTION_TITLE = """<h1 align="center">🏟️ Long Code Arena</h1>"""
7
 
8
- INTRODUCTION_TEXT = """🏟️ Long Code Arena is a benchmark of code-related tasks with large contexts, up to a whole code repository.
9
- It currently spans six different tasks.
10
 
11
- We are excited to invite you to participate in our benchmark! To submit your results, please send the following materials to our πŸ“© email (lca@jetbrains.com):
 
 
 
 
 
 
 
12
 
13
  * Results: Include the summary of your benchmark outcomes.
14
- * Reproduction Package: To ensure the integrity and reproducibility of your results, please include the code for context collection (if any), predictions generation and evaluating. You can follow [our baselines code](https://github.com/JetBrains-Research/lca-baselines) as a reference.
15
- * Metadata (model information, organization name, licence of your model, context size and other information you find relevant)
16
 
17
- We look forward to reviewing your innovative solutions.
18
 
19
  """
20
 
 
5
  # ================================
6
  INTRODUCTION_TITLE = """<h1 align="center">🏟️ Long Code Arena</h1>"""
7
 
8
+ INTRODUCTION_TEXT = """🏟️ Long Code Arena is a suite of benchmarks for code-related tasks with large contexts, up to a whole code repository.
9
+ It currently spans six different tasks and contains six datasets:
10
 
11
+ * πŸ€— [Library-based code generation](https://huggingface.co/datasets/JetBrains-Research/lca-library-based-code-generation)
12
+ * πŸ€— [CI builds repair](https://huggingface.co/datasets/JetBrains-Research/lca-ci-builds-repair)
13
+ * πŸ€— [Project-level code completion](https://huggingface.co/datasets/JetBrains-Research/lca-project-level-code-completion)
14
+ * πŸ€— [Commit message generation](https://huggingface.co/datasets/JetBrains-Research/lca-commit-message-generation)
15
+ * πŸ€— [Bug localization](https://huggingface.co/datasets/JetBrains-Research/lca-bug-localization)
16
+ * πŸ€— [Module summarization](https://huggingface.co/datasets/JetBrains-Research/lca-module-summarization)
17
+
18
+ We are excited to invite you to participate in solving our benchmarks! To submit your results, please send the following materials to our πŸ“© email ([email protected]):
19
 
20
  * Results: Include the summary of your benchmark outcomes.
21
+ * Reproduction Package: To ensure the integrity and reproducibility of your results, please include the code for context collection (if any), generation of predictions, and evaluating. You can follow [our baselines](https://github.com/JetBrains-Research/lca-baselines) as a reference.
22
+ * Metadata: Model information, organization name, licence of your model, context size, and other information you find relevant.
23
 
24
+ We look forward to reviewing your innovative solutions!
25
 
26
  """
27