Safetensors
qwen2
nielsr HF Staff commited on
Commit
f146d5b
·
verified ·
1 Parent(s): d25fe3b

Improve model card: Add metadata (pipeline, library, license, tags) and paper link

Browse files

This 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.

Files changed (1) hide show
  1. README.md +16 -2
README.md CHANGED
@@ -1,7 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
1
  <div align="center">
2
 
3
  # 🌟 InnoSpark 🌟
4
 
 
 
5
  [![Official Website](https://img.shields.io/badge/🌐-Official%20Website-blue?style=for-the-badge)](https://innospark.aiecnu.cn/innospark/)
6
  [![Hugging Face](https://img.shields.io/badge/🤗-Hugging%20Face-yellow?style=for-the-badge)](https://huggingface.co/sii-research)
7
  [![GitHub](https://img.shields.io/badge/💻-GitHub-black?style=for-the-badge)](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"\n"):
 
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
  [![Official Website](https://img.shields.io/badge/🌐-Official%20Website-blue?style=for-the-badge)](https://innospark.aiecnu.cn/innospark/)
19
  [![Hugging Face](https://img.shields.io/badge/🤗-Hugging%20Face-yellow?style=for-the-badge)](https://huggingface.co/sii-research)
20
  [![GitHub](https://img.shields.io/badge/💻-GitHub-black?style=for-the-badge)](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>