Text Generation
Adapters
Safetensors
Transformers
GGUF
English
Spanish
llama
text-generation-inference
unsloth
mistral
conversational
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("Agnuxo/Phi-3.5-mini-instruct-python_coding_assistant_16bit")
model = AutoModelForCausalLM.from_pretrained("Agnuxo/Phi-3.5-mini-instruct-python_coding_assistant_16bit")
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]:]))Quick Links
Uploaded model
- Developed by: Agnuxo(https://github.com/Agnuxo1)
- License: apache-2.0
- Finetuned from model : Agnuxo/Mistral-NeMo-Minitron-8B-Base-Nebulal
This mistral model was trained 2x faster with Unsloth and Huggingface's TRL library.
Benchmark Results
This model has been fine-tuned for various tasks and evaluated on the following benchmarks:
Model Size: 3,821,079,552 parameters Required Memory: 14.23 GB
For more details, visit my GitHub.
Thanks for your interest in this model!
- Downloads last month
- -
Model tree for Agnuxo/Phi-3.5-mini-instruct-python_coding_assistant_16bit
Unable to build the model tree, the base model loops to the model itself. Learn more.



# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Agnuxo/Phi-3.5-mini-instruct-python_coding_assistant_16bit") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)