Update README.md
Browse files
README.md
CHANGED
@@ -9,9 +9,8 @@ base_model:
|
|
9 |
pipeline_tag: text-generation
|
10 |
---
|
11 |
|
12 |
-
# Model Card for
|
13 |
-
|
14 |
-
NormolLM-Coder-7B is a medium sized coding model, that achieves strong performance on benchmarks such as Live Code Bench and the new International Olympiad in Informatics benchmark.
|
15 |
|
16 |
## Model description
|
17 |
|
@@ -23,7 +22,7 @@ NormolLM-Coder-7B is a medium sized coding model, that achieves strong performan
|
|
23 |
## Performance
|
24 |
| Model | LCB | IOI |
|
25 |
|-------|-----|---------------|
|
26 |
-
|NormolLM-Coder-7B|
|
27 |
|GPT-4o| 28.43||
|
28 |
|Claude 3.7 Sonnet| 39.18||
|
29 |
|QwQ-32B| 60.98||
|
@@ -42,7 +41,7 @@ Here's how you can run the model using the `pipeline()` function from 🤗 Trans
|
|
42 |
import torch
|
43 |
from transformers import pipeline
|
44 |
|
45 |
-
pipe = pipeline("text-generation", model="open-r1/
|
46 |
|
47 |
# We use the tokenizer's chat template to format each message - see https://huggingface.co/docs/transformers/main/en/chat_templating
|
48 |
messages = [
|
|
|
9 |
pipeline_tag: text-generation
|
10 |
---
|
11 |
|
12 |
+
# Model Card for OlympicCoder-7B
|
13 |
+
OlympicCoder-7B is a medium sized coding model, that achieves strong performance on coding benchmarks such as Live Code Bench and the new International Olympiad in Informatics benchmark.
|
|
|
14 |
|
15 |
## Model description
|
16 |
|
|
|
22 |
## Performance
|
23 |
| Model | LCB | IOI |
|
24 |
|-------|-----|---------------|
|
25 |
+
|NormolLM-Coder-7B| 36.4 |137 |
|
26 |
|GPT-4o| 28.43||
|
27 |
|Claude 3.7 Sonnet| 39.18||
|
28 |
|QwQ-32B| 60.98||
|
|
|
41 |
import torch
|
42 |
from transformers import pipeline
|
43 |
|
44 |
+
pipe = pipeline("text-generation", model="open-r1/OlympicCoder-7B", torch_dtype=torch.bfloat16, device_map="auto")
|
45 |
|
46 |
# We use the tokenizer's chat template to format each message - see https://huggingface.co/docs/transformers/main/en/chat_templating
|
47 |
messages = [
|