Update README.md
Browse files
README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
-
-
|
| 5 |
metrics:
|
| 6 |
- bleu
|
| 7 |
library_name: transformers
|
|
@@ -10,4 +10,32 @@ tags:
|
|
| 10 |
- code-generation
|
| 11 |
- code-completion
|
| 12 |
- competitive-programming
|
| 13 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
+
- cpp
|
| 5 |
metrics:
|
| 6 |
- bleu
|
| 7 |
library_name: transformers
|
|
|
|
| 10 |
- code-generation
|
| 11 |
- code-completion
|
| 12 |
- competitive-programming
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
# CodeLanderAI Model
|
| 17 |
+
|
| 18 |
+
This model is a fine-tuned version of the `CodeT5` model specifically designed for code completion in competitive programming. It was trained on a custom dataset of 12 million code samples derived from 2 million source code files.
|
| 19 |
+
|
| 20 |
+
## Intended Use
|
| 21 |
+
|
| 22 |
+
The model is intended for generating code completions based on the context provided by the user. It only supports cpp programming languages commonly used in competitive programming.
|
| 23 |
+
|
| 24 |
+
### Languages Supported
|
| 25 |
+
- C++
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
### Metrics
|
| 29 |
+
|
| 30 |
+
The model was evaluated using the following metrics:
|
| 31 |
+
|
| 32 |
+
- **BLEU Score:** Measures the quality of generated code against reference code.
|
| 33 |
+
- **CodeBLEU:** A metric tailored for code generation, considering syntax and structure.
|
| 34 |
+
- **Accuracy:** How often the model provides the correct code completion.
|
| 35 |
+
- **Perplexity:** Indicates how well the model predicts the next token in a sequence.
|
| 36 |
+
|
| 37 |
+
### Datasets
|
| 38 |
+
|
| 39 |
+
The model was fine-tuned on a custom dataset containing code samples from competitive programming platforms.
|
| 40 |
+
|
| 41 |
+
|