Ganymede-Llama-3.3-3B-Preview is based on the Llama-3.2-3B-Instruct architecture, featuring unlocked abliterated capabilities and improved mathematical analysis. Fine-tuned on a high-quality synthetic dataset derived from Llama's Instruct series, it excels in chain-of-thought (CoT) reasoning, logical problem-solving, and structured data comprehension. The model is ideal for complex reasoning tasks, instruction-following, and text generation, with superior adaptability across multi-turn conversations and long-context tasks.
Mathematical & Analytical Excellence: Stronger capabilities in math problem-solving, theorem proving, and complex numerical analysis.
Fine-Tuned Instruction Following: Generates structured responses (e.g., JSON, XML, Markdown) and long-form text (4K+ tokens).
Extended Long-Context Support: Handles up to 128K tokens with improved memory retention and coherence over long passages.
Advanced Adaptability: Excels in role-playing, multi-turn dialogues, and diverse system prompts.
Multilingual Proficiency: Supports over 20 languages, including English, Chinese, French, Spanish, Portuguese, German, and more.
Quickstart with Transformers
fromtransformersimportAutoModelForCausalLM,AutoTokenizermodel_name="prithivMLmods/Ganymede-Llama-3.3-3B-Preview"model=AutoModelForCausalLM.from_pretrained(model_name,torch_dtype="auto",device_map="auto",trust_remote_code=True)tokenizer=AutoTokenizer.from_pretrained(model_name)prompt="Explain the concept of logical reasoning in AI."messages=[{"role":"system","content":"You are an expert AI assistant specialized in reasoning, logic, and mathematical analysis."},{"role":"user","content":prompt}]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,max_new_tokens=256)generated_ids=[output_ids[len(input_ids):]forinput_ids,output_idsinzip(model_inputs.input_ids,generated_ids)]response=tokenizer.batch_decode(generated_ids,skip_special_tokens=True)[0]print(response)
Intended Use
Advanced Logical & Analytical Reasoning: Designed for multi-step problem-solving, deductive reasoning, and cognitive tasks.
Enhanced Mathematical Computation: Excels in numerical analysis, theorem proving, symbolic reasoning, and complex calculations.