-
Pretrained on QVAC Genesis II
This model has been pretrained on Tether’s QVAC Genesis II dataset.
The checkpoint combines the Failure Analysis prompt and Option-Level Reasoning prompt formats (equal-weight mixture) and was pretrained on approximately 106B tokens, using BF16 mixed precision and a 4,096-token context window, with a Qwen3-family 1.7B-parameter decoder-only transformer architecture.
-
Checkpoints in Hugging Face format
Checkpoints are provided in standard Hugging Face format for inference, continual pretraining, and fine-tuning.
-
Educational coverage
QVAC Genesis II includes the following domains:
- Machine learning
- High school statistics
- High school chemistry
- Econometrics
- College chemistry
- College physics
- Geography
- Astronomy
- College computer science
- Electrical engineering
- High school computer science
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model_id = "qvac/genesis-ii-model-combined"
5
6tok = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
7model = AutoModelForCausalLM.from_pretrained(
8 model_id,
9 torch_dtype=torch.bfloat16,
10 device_map="auto",
11)
12
13prompt = "Derive the equations of motion for a projectile."
14inputs = tok(prompt, return_tensors="pt").to(model.device)
15out = model.generate(**inputs, max_new_tokens=256, do_sample=True, top_p=0.9, temperature=0.7)
16print(tok.decode(out[0], skip_special_tokens=True))