Instructions to use CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup") model = AutoModelForCausalLM.from_pretrained("CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup") 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
- vLLM
How to use CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup
- SGLang
How to use CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup 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 "CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup" \ --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": "CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup", "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 "CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup" \ --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": "CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup with Docker Model Runner:
docker model run hf.co/CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup
CrystalReasoner: Reasoning and RL for Property-Conditioned Crystal Structure Generation
CrystalReasoner (CrysReas) is an end-to-end LLM framework for generating crystal structures from natural language instructions. It uses supervised fine-tuning (SFT) to teach crystal-structure generation, thinking traces to introduce crystallographic and physical priors before coordinates, and reinforcement learning (RL) with verifiable rewards to improve validity, stability, and property conditioning.
Qwen2.5-3B-CrysReas-SpaceGroup
Quick Start
You can use this model directly with the transformers library:
from transformers import AutoModelForCausalLM, AutoConfig, AutoTokenizer
import torch
model_id = "CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup"
tokenizer = AutoTokenizer.from_pretrained(model_id)
config = AutoConfig.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
model_id,
config=config,
torch_dtype=torch.bfloat16,
trust_remote_code=True
)
messages = [
{"role": "user", "content": "Below is a description of a bulk material. The chemical formula is NaCl. The bulk_modulus is about 100 GPa. Generate a description of the lengths and angles of the lattice vectors and then the element type and coordinates for each atom within the lattice:"},
]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
model_inputs = tokenizer(text, return_tensors="pt").to(model.device)
generated_ids = model.generate(
model_inputs.input_ids,
max_new_tokens=2048,
pad_token_id=tokenizer.pad_token_id,
eos_token_id=tokenizer.eos_token_id,
use_cache=True,
)
generated_text = tokenizer.batch_decode(generated_ids, skip_special_tokens=False)[0]
print(generated_text)
If you want the generated structure in pymatgen Structure format, please use this script after the previous generation:
def get_structure(generated_text: str):
import re
from pymatgen.core import Lattice, Structure
cif_match = re.search(r'<CIF>(.*?)</CIF>', generated_text, re.DOTALL)
if cif_match:
generated_text = cif_match.group(1)
lines = [line.strip() for line in generated_text.strip().split('\n') if line.strip()]
if lines and not re.match(r'^[-+0-9.eE\s]+$', lines[0]):
lines = lines[1:]
lengths = list(map(float, lines[0].split()))
angles = list(map(float, lines[1].split()))
lattice = Lattice.from_parameters(*lengths, *angles)
species = []
coords = []
for line in lines[2:]:
parts = line.split()
species.append(parts[0])
coords.append([float(parts[2]), float(parts[3]), float(parts[4])])
structure = Structure(lattice, species, coords)
return structure
structure = get_structure(generated_text)
print(structure)
- Downloads last month
- 106
Model tree for CrystalReasoner/Qwen2.5-3B-CrysReas-SpaceGroup
Base model
Qwen/Qwen2.5-3B