Improve model card: Add metadata (pipeline, library, license, tags) and paper link
Browse filesThis PR updates the model card for `sii-research/InnoSpark-72B-0710`.
It adds the following metadata:
- `pipeline_tag: text-generation` to correctly classify the model's primary function and improve its discoverability on the Hugging Face Hub.
- `library_name: transformers` to ensure compatibility with the Hugging Face `transformers` library is correctly recognized, enabling the "Use in Transformers" widget.
- `license: other` as the specific license is stated to be on "relevant model pages" rather than directly in this model card.
- Relevant `tags` such as `qwen`, `educational-llm`, `llm`, and `innospark` for better categorization.
It also adds a prominent link to the paper "[ELMES: An Automated Framework for Evaluating Large Language Models in Educational Scenarios](https://huggingface.co/papers/2507.22947)" at the top of the README.
|
@@ -1,7 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
<div align="center">
|
| 2 |
|
| 3 |
# 🌟 InnoSpark 🌟
|
| 4 |
|
|
|
|
|
|
|
| 5 |
[](https://innospark.aiecnu.cn/innospark/)
|
| 6 |
[](https://huggingface.co/sii-research)
|
| 7 |
[](https://github.com/Inno-Spark/elmes)
|
|
@@ -113,7 +126,8 @@ def Innospark_stream(inputs,history):
|
|
| 113 |
|
| 114 |
for chunk in response.iter_lines(chunk_size=1,
|
| 115 |
decode_unicode=False,
|
| 116 |
-
delimiter=b"
|
|
|
|
| 117 |
if chunk:
|
| 118 |
string_data = chunk.decode("utf-8")
|
| 119 |
try:
|
|
@@ -247,4 +261,4 @@ Please refer to the relevant model pages for specific license information.
|
|
| 247 |
|
| 248 |
<sub>🚀 Empowering Education with AI</sub>
|
| 249 |
|
| 250 |
-
</div>
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pipeline_tag: text-generation
|
| 3 |
+
library_name: transformers
|
| 4 |
+
license: other
|
| 5 |
+
tags:
|
| 6 |
+
- qwen
|
| 7 |
+
- educational-llm
|
| 8 |
+
- llm
|
| 9 |
+
- innospark
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
<div align="center">
|
| 13 |
|
| 14 |
# 🌟 InnoSpark 🌟
|
| 15 |
|
| 16 |
+
This model is related to the paper [ELMES: An Automated Framework for Evaluating Large Language Models in Educational Scenarios](https://huggingface.co/papers/2507.22947).
|
| 17 |
+
|
| 18 |
[](https://innospark.aiecnu.cn/innospark/)
|
| 19 |
[](https://huggingface.co/sii-research)
|
| 20 |
[](https://github.com/Inno-Spark/elmes)
|
|
|
|
| 126 |
|
| 127 |
for chunk in response.iter_lines(chunk_size=1,
|
| 128 |
decode_unicode=False,
|
| 129 |
+
delimiter=b"
|
| 130 |
+
"):
|
| 131 |
if chunk:
|
| 132 |
string_data = chunk.decode("utf-8")
|
| 133 |
try:
|
|
|
|
| 261 |
|
| 262 |
<sub>🚀 Empowering Education with AI</sub>
|
| 263 |
|
| 264 |
+
</div>
|