Instructions to use MegaScience/Qwen2.5-7B-MegaScience with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MegaScience/Qwen2.5-7B-MegaScience with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="MegaScience/Qwen2.5-7B-MegaScience") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("MegaScience/Qwen2.5-7B-MegaScience") model = AutoModelForCausalLM.from_pretrained("MegaScience/Qwen2.5-7B-MegaScience") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use MegaScience/Qwen2.5-7B-MegaScience with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "MegaScience/Qwen2.5-7B-MegaScience" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MegaScience/Qwen2.5-7B-MegaScience", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/MegaScience/Qwen2.5-7B-MegaScience
- SGLang
How to use MegaScience/Qwen2.5-7B-MegaScience with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "MegaScience/Qwen2.5-7B-MegaScience" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MegaScience/Qwen2.5-7B-MegaScience", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "MegaScience/Qwen2.5-7B-MegaScience" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MegaScience/Qwen2.5-7B-MegaScience", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use MegaScience/Qwen2.5-7B-MegaScience with Docker Model Runner:
docker model run hf.co/MegaScience/Qwen2.5-7B-MegaScience
Improve model card: Add library_name, GitHub link, abstract, and usage example (#1)
Browse files- Improve model card: Add library_name, GitHub link, abstract, and usage example (de00b8dcf3d3e71a5c562319ae31639b6e55390d)
Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -1,17 +1,23 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
| 3 |
datasets:
|
| 4 |
- MegaScience/MegaScience
|
| 5 |
language:
|
| 6 |
- en
|
|
|
|
| 7 |
metrics:
|
| 8 |
- accuracy
|
| 9 |
-
base_model:
|
| 10 |
-
- Qwen/Qwen2.5-7B
|
| 11 |
pipeline_tag: text-generation
|
|
|
|
| 12 |
---
|
|
|
|
| 13 |
# [MegaScience: Pushing the Frontiers of Post-Training Datasets for Science Reasoning](https://arxiv.org/abs/2507.16812)
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
## Qwen2.5-7B-MegaScience
|
| 16 |
|
| 17 |
### Training Recipe
|
|
@@ -33,6 +39,38 @@ pipeline_tag: text-generation
|
|
| 33 |
<img src="https://cdn-uploads.huggingface.co/production/uploads/616bfc2b40e2f69baa1c7add/xFTJ7nevc3S4UYJxUS7ue.png" alt="Data Pipeline" style="width:80%;">
|
| 34 |
</div>
|
| 35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
### More about MegaScience
|
| 37 |
|
| 38 |
<div style="display: flex; justify-content: left; gap: 20px;">
|
|
@@ -51,4 +89,4 @@ Check out our [paper](https://arxiv.org/abs/2507.16812) for more details. If you
|
|
| 51 |
journal={arXiv preprint arXiv:2507.16812},
|
| 52 |
url={https://arxiv.org/abs/2507.16812}
|
| 53 |
}
|
| 54 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model:
|
| 3 |
+
- Qwen/Qwen2.5-7B
|
| 4 |
datasets:
|
| 5 |
- MegaScience/MegaScience
|
| 6 |
language:
|
| 7 |
- en
|
| 8 |
+
license: apache-2.0
|
| 9 |
metrics:
|
| 10 |
- accuracy
|
|
|
|
|
|
|
| 11 |
pipeline_tag: text-generation
|
| 12 |
+
library_name: transformers
|
| 13 |
---
|
| 14 |
+
|
| 15 |
# [MegaScience: Pushing the Frontiers of Post-Training Datasets for Science Reasoning](https://arxiv.org/abs/2507.16812)
|
| 16 |
|
| 17 |
+
Scientific reasoning is critical for developing AI scientists and supporting human researchers in advancing the frontiers of natural science discovery. This work introduces **TextbookReasoning**, an open dataset featuring truthful reference answers extracted from 12k university-level scientific textbooks, comprising 650k reasoning questions. It further presents **MegaScience**, a large-scale mixture of high-quality open-source datasets totaling 1.25 million instances, developed through systematic ablation studies. Models trained on MegaScience demonstrate superior performance and training efficiency, significantly outperforming corresponding official instruct models, especially for larger and stronger base models.
|
| 18 |
+
|
| 19 |
+
Find the code and more details on the [MegaScience GitHub repository](https://github.com/GAIR-NLP/lm-open-science-evaluation).
|
| 20 |
+
|
| 21 |
## Qwen2.5-7B-MegaScience
|
| 22 |
|
| 23 |
### Training Recipe
|
|
|
|
| 39 |
<img src="https://cdn-uploads.huggingface.co/production/uploads/616bfc2b40e2f69baa1c7add/xFTJ7nevc3S4UYJxUS7ue.png" alt="Data Pipeline" style="width:80%;">
|
| 40 |
</div>
|
| 41 |
|
| 42 |
+
## Quickstart
|
| 43 |
+
|
| 44 |
+
You can use this model directly with the `transformers` library:
|
| 45 |
+
|
| 46 |
+
```python
|
| 47 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 48 |
+
import torch
|
| 49 |
+
|
| 50 |
+
model_id = "MegaScience/Qwen2.5-7B-MegaScience"
|
| 51 |
+
|
| 52 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 53 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 54 |
+
model_id,
|
| 55 |
+
torch_dtype=torch.bfloat16, # or torch.float16 if bfloat16 is not supported
|
| 56 |
+
device_map="auto"
|
| 57 |
+
)
|
| 58 |
+
|
| 59 |
+
messages = [
|
| 60 |
+
{"role": "user", "content": "What is the capital of France?"},
|
| 61 |
+
]
|
| 62 |
+
|
| 63 |
+
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 64 |
+
model_inputs = tokenizer(text, return_tensors="pt").to(model.device)
|
| 65 |
+
|
| 66 |
+
generated_ids = model.generate(
|
| 67 |
+
model_inputs.input_ids,
|
| 68 |
+
max_new_tokens=256
|
| 69 |
+
)
|
| 70 |
+
generated_text = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
|
| 71 |
+
print(generated_text)
|
| 72 |
+
```
|
| 73 |
+
|
| 74 |
### More about MegaScience
|
| 75 |
|
| 76 |
<div style="display: flex; justify-content: left; gap: 20px;">
|
|
|
|
| 89 |
journal={arXiv preprint arXiv:2507.16812},
|
| 90 |
url={https://arxiv.org/abs/2507.16812}
|
| 91 |
}
|
| 92 |
+
```
|