Below are the evaluations of the Atlas-Pro models and Deepseek's R1 Qwen Distills (The model that started the whole Atlas family):
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3# Load the Atlas Pro model
4model_name = "Spestly/Atlas-R1-Pro-7B-Preview"
5tokenizer = AutoTokenizer.from_pretrained(model_name)
6model = AutoModelForCausalLM.from_pretrained(model_name)
7
8# Generate a response
9prompt = "Write a Python function to calculate the Fibonacci sequence."
10inputs = tokenizer(prompt, return_tensors="pt")
11outputs = model.generate(**inputs, max_length=200)
12response = tokenizer.decode(outputs[0], skip_special_tokens=True)
13
14print(response)