nielsr HF Staff commited on
Commit
9552938
·
verified ·
1 Parent(s): feddf98

Improve model card: Add library, pipeline tags, paper link, and GitHub link

Browse files

This PR enhances the model card for SciReasoner 8B by adding crucial metadata and improving content clarity:

- **`library_name: transformers`**: The model is compatible with the `transformers` library, which enables an automated code snippet on the Hub, as evidenced by `config.json` (e.g., `"architectures": ["Qwen3ForCausalLM"]`, `"model_type": "qwen3"`).
- **`pipeline_tag: text-generation`**: This tag helps users discover the model for its described capabilities in "unconditional and conditional sequence generation and design" as per the paper abstract.
- **`tags: ['qwen', 'scientific-reasoning']`**: Adds relevant tags based on the model's architecture (`Qwen3ForCausalLM`) and its primary purpose as a "scientific reasoning foundation model."
- **Paper Link**: The official Hugging Face paper link ([SciReasoner: Laying the Scientific Reasoning Ground Across Disciplines](https://huggingface.co/papers/2509.21320)) has been explicitly added to the introductory text for direct access. The existing arXiv badge is retained.
- **GitHub Link**: An explicit link to the GitHub repository (`https://github.com/open-sciencelab/SciReason`) has been added for easier access to the associated code and evaluation scripts.

These updates improve the model's discoverability and provide users with clearer, more direct access to essential information.

Files changed (1) hide show
  1. README.md +7 -1
README.md CHANGED
@@ -1,5 +1,10 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
3
  ---
4
 
5
  # SciReasoner 8B: Laying the Scientific Reasoning Ground Across Disciplines
@@ -8,8 +13,9 @@ license: apache-2.0
8
  [![Hugging Face](https://img.shields.io/badge/HuggingFace-SciReason-FFAE1A)](https://huggingface.co/SciReason)
9
  [![License](https://img.shields.io/badge/License-Apache_2.0-2D7DB1.svg)](https://www.apache.org/licenses/LICENSE-2.0)
10
 
 
11
 
12
- This repo contains the weight of **SciReasoner-8B**.
13
 
14
  ---
15
 
 
1
  ---
2
  license: apache-2.0
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - qwen
7
+ - scientific-reasoning
8
  ---
9
 
10
  # SciReasoner 8B: Laying the Scientific Reasoning Ground Across Disciplines
 
13
  [![Hugging Face](https://img.shields.io/badge/HuggingFace-SciReason-FFAE1A)](https://huggingface.co/SciReason)
14
  [![License](https://img.shields.io/badge/License-Apache_2.0-2D7DB1.svg)](https://www.apache.org/licenses/LICENSE-2.0)
15
 
16
+ This repository contains the weight of **SciReasoner-8B**, a scientific reasoning foundation model. It was presented in the paper [SciReasoner: Laying the Scientific Reasoning Ground Across Disciplines](https://huggingface.co/papers/2509.21320).
17
 
18
+ Code: https://github.com/open-sciencelab/SciReason
19
 
20
  ---
21