Add library name, pipeline tag, and code-generation tag
Browse filesThis PR improves the model card's metadata by:
- adding the `library_name`, ensuring the "how to use" button appears on the top right (with a Transformers code snippet)
- adding the `pipeline_tag`, ensuring people can find your model at https://huggingface.co/models?pipeline_tag=text-generation&sort=trending
- adding the `code-generation` tag.
README.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
4 |
**Paper**: [https://arxiv.org/pdf/2502.07780](https://arxiv.org/pdf/2502.07780)
|
5 |
**Code**: https://github.com/IST-DASLab/DarwinLM
|
6 |
**Models**: [DarwinLM-2.7B](https://huggingface.co/Shengkun/DarwinLM-2.7B), [DarwinLM-4.6B](https://huggingface.co/Shengkun/DarwinLM-4.6B), [DarwinLM-8.4B](https://huggingface.co/Shengkun/DarwinLM-8.4B)
|
@@ -16,7 +21,6 @@ model = AutoModelForCausalLM.from_pretrained("Shengkun/DarwinLM-4.6B-Pruned", tr
|
|
16 |
|
17 |
## Downstream Tasks
|
18 |
|
19 |
-
|
20 |
**2.7B**
|
21 |
|
22 |
| Method | Param. | SciQ | PIQA | WG | ArcE | ArcC | HS | LogiQA | BoolQ | Avg |
|
@@ -52,8 +56,6 @@ model = AutoModelForCausalLM.from_pretrained("Shengkun/DarwinLM-4.6B-Pruned", tr
|
|
52 |
| | **OLMO-0424 (2.05T)** | 7B | 96.1 | 80.1 | 72.1 | 73.8 | 49.2 | 78.0 | 29.3 | 80.8 | 52.1 | 67.9 |
|
53 |
| | *DarwinLM (10.0B)* | 8.4B | 89.5 | 78.1 | 70.7 | 79.6 | 57.6 | 74.9 | 33.5 | 73.9 | 57.9 | 68.4 |
|
54 |
|
55 |
-
|
56 |
-
|
57 |
## Bibtex
|
58 |
```
|
59 |
@article{tang2025darwinlm,
|
@@ -62,4 +64,8 @@ model = AutoModelForCausalLM.from_pretrained("Shengkun/DarwinLM-4.6B-Pruned", tr
|
|
62 |
journal={arXiv preprint arXiv:2502.07780},
|
63 |
year={2025}
|
64 |
}
|
65 |
-
```
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
library_name: transformers
|
4 |
+
pipeline_tag: text-generation
|
5 |
+
tags:
|
6 |
+
- code-generation
|
7 |
---
|
8 |
+
|
9 |
**Paper**: [https://arxiv.org/pdf/2502.07780](https://arxiv.org/pdf/2502.07780)
|
10 |
**Code**: https://github.com/IST-DASLab/DarwinLM
|
11 |
**Models**: [DarwinLM-2.7B](https://huggingface.co/Shengkun/DarwinLM-2.7B), [DarwinLM-4.6B](https://huggingface.co/Shengkun/DarwinLM-4.6B), [DarwinLM-8.4B](https://huggingface.co/Shengkun/DarwinLM-8.4B)
|
|
|
21 |
|
22 |
## Downstream Tasks
|
23 |
|
|
|
24 |
**2.7B**
|
25 |
|
26 |
| Method | Param. | SciQ | PIQA | WG | ArcE | ArcC | HS | LogiQA | BoolQ | Avg |
|
|
|
56 |
| | **OLMO-0424 (2.05T)** | 7B | 96.1 | 80.1 | 72.1 | 73.8 | 49.2 | 78.0 | 29.3 | 80.8 | 52.1 | 67.9 |
|
57 |
| | *DarwinLM (10.0B)* | 8.4B | 89.5 | 78.1 | 70.7 | 79.6 | 57.6 | 74.9 | 33.5 | 73.9 | 57.9 | 68.4 |
|
58 |
|
|
|
|
|
59 |
## Bibtex
|
60 |
```
|
61 |
@article{tang2025darwinlm,
|
|
|
64 |
journal={arXiv preprint arXiv:2502.07780},
|
65 |
year={2025}
|
66 |
}
|
67 |
+
```
|
68 |
+
|
69 |
+
---
|
70 |
+
|
71 |
+
For any issues or questions, please open an issue or contact us directly. 🚀
|