Text Generation
Transformers
Safetensors
English
qwen3_moe
scientific-taste
GRPO
conversational
Eval Results (legacy)
Instructions to use OpenMOSS-Team/SciJudge-30B-2605 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OpenMOSS-Team/SciJudge-30B-2605 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="OpenMOSS-Team/SciJudge-30B-2605") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("OpenMOSS-Team/SciJudge-30B-2605") model = AutoModelForCausalLM.from_pretrained("OpenMOSS-Team/SciJudge-30B-2605", device_map="auto") 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 OpenMOSS-Team/SciJudge-30B-2605 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "OpenMOSS-Team/SciJudge-30B-2605" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OpenMOSS-Team/SciJudge-30B-2605", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/OpenMOSS-Team/SciJudge-30B-2605
- SGLang
How to use OpenMOSS-Team/SciJudge-30B-2605 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 "OpenMOSS-Team/SciJudge-30B-2605" \ --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": "OpenMOSS-Team/SciJudge-30B-2605", "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 "OpenMOSS-Team/SciJudge-30B-2605" \ --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": "OpenMOSS-Team/SciJudge-30B-2605", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use OpenMOSS-Team/SciJudge-30B-2605 with Docker Model Runner:
docker model run hf.co/OpenMOSS-Team/SciJudge-30B-2605
Update SciJudge-30B-2605 model card links and tags
Browse files
README.md
CHANGED
|
@@ -6,12 +6,8 @@ base_model: Qwen/Qwen3-30B-A3B-Instruct-2507
|
|
| 6 |
datasets:
|
| 7 |
- OpenMOSS-Team/SciJudgeBench
|
| 8 |
tags:
|
| 9 |
-
- scientific-
|
| 10 |
-
- citation-prediction
|
| 11 |
-
- preference-learning
|
| 12 |
- GRPO
|
| 13 |
-
- moe
|
| 14 |
-
- arxiv:2603.14473
|
| 15 |
pipeline_tag: text-generation
|
| 16 |
library_name: transformers
|
| 17 |
model-index:
|
|
@@ -36,6 +32,8 @@ SciJudge-30B-2605 is a Qwen3-30B-A3B-Instruct-2507 MoE model fine-tuned for scie
|
|
| 36 |
|
| 37 |
This release is part of [AI Can Learn Scientific Taste](https://arxiv.org/abs/2603.14473). The companion smaller model is [SciJudge-4B-2605](https://huggingface.co/OpenMOSS-Team/SciJudge-4B-2605), and the benchmark dataset is [SciJudgeBench](https://huggingface.co/datasets/OpenMOSS-Team/SciJudgeBench).
|
| 38 |
|
|
|
|
|
|
|
| 39 |
## Usage
|
| 40 |
|
| 41 |
```python
|
|
|
|
| 6 |
datasets:
|
| 7 |
- OpenMOSS-Team/SciJudgeBench
|
| 8 |
tags:
|
| 9 |
+
- scientific-taste
|
|
|
|
|
|
|
| 10 |
- GRPO
|
|
|
|
|
|
|
| 11 |
pipeline_tag: text-generation
|
| 12 |
library_name: transformers
|
| 13 |
model-index:
|
|
|
|
| 32 |
|
| 33 |
This release is part of [AI Can Learn Scientific Taste](https://arxiv.org/abs/2603.14473). The companion smaller model is [SciJudge-4B-2605](https://huggingface.co/OpenMOSS-Team/SciJudge-4B-2605), and the benchmark dataset is [SciJudgeBench](https://huggingface.co/datasets/OpenMOSS-Team/SciJudgeBench).
|
| 34 |
|
| 35 |
+
Resources: [Project page](https://tongjingqi.github.io/AI-Can-Learn-Scientific-Taste/) and [GitHub repository](https://github.com/tongjingqi/AI-Can-Learn-Scientific-Taste).
|
| 36 |
+
|
| 37 |
## Usage
|
| 38 |
|
| 39 |
```python
|