Add library name and pipeline tag
Browse filesThis PR adds the missing `library_name` tag to `transformers` (since the model architecture is Qwen), as well as the `pipeline_tag` which is `text-generation`.
README.md
CHANGED
@@ -1,14 +1,17 @@
|
|
1 |
---
|
2 |
-
|
|
|
3 |
datasets:
|
4 |
- luzimu/WebGen-Bench
|
5 |
language:
|
6 |
- en
|
|
|
7 |
metrics:
|
8 |
- accuracy
|
9 |
-
|
10 |
-
|
11 |
---
|
|
|
12 |
# WebGen-LM
|
13 |
|
14 |
WebGen-LM is trained using the Bolt.diy trajectories generated from a subset of the training set of WebGen-Bench (🤗 [luzimu/WebGen-Bench](https://huggingface.co/datasets/luzimu/WebGen-Bench)). It has been introduced in the paper [WebGen-Bench: Evaluating LLMs on Generating Interactive and Functional Websites from Scratch](https://arxiv.org/abs/2505.03733).
|
@@ -42,4 +45,4 @@ If you find our project useful, please cite:
|
|
42 |
primaryClass={cs.CL},
|
43 |
url={https://arxiv.org/abs/2505.03733},
|
44 |
}
|
45 |
-
```
|
|
|
1 |
---
|
2 |
+
base_model:
|
3 |
+
- Qwen/Qwen2.5-Coder-7B-Instruct
|
4 |
datasets:
|
5 |
- luzimu/WebGen-Bench
|
6 |
language:
|
7 |
- en
|
8 |
+
license: mit
|
9 |
metrics:
|
10 |
- accuracy
|
11 |
+
pipeline_tag: text-generation
|
12 |
+
library_name: transformers
|
13 |
---
|
14 |
+
|
15 |
# WebGen-LM
|
16 |
|
17 |
WebGen-LM is trained using the Bolt.diy trajectories generated from a subset of the training set of WebGen-Bench (🤗 [luzimu/WebGen-Bench](https://huggingface.co/datasets/luzimu/WebGen-Bench)). It has been introduced in the paper [WebGen-Bench: Evaluating LLMs on Generating Interactive and Functional Websites from Scratch](https://arxiv.org/abs/2505.03733).
|
|
|
45 |
primaryClass={cs.CL},
|
46 |
url={https://arxiv.org/abs/2505.03733},
|
47 |
}
|
48 |
+
```
|