CoolFace
Modelpublic

justindal/llama3.2-3b-leetcoder-q4-mlx

sourceHugging Facellama3.2updated 5mo agoView on Hugging Face
0likes32downloads
Model Card

Model Information

Meta's meta-llama/Llama-3.2-3B-Instruct LoRA fine-tuned for LeetCode-style solutions.

Use with Python

python
from mlx_lm import load, generate
model, tokenizer = load("justindal/llama3.2-3b-leetcoder")
prompt = "Given an integer array nums, return indices of two numbers that add up to target."
response = generate(model, tokenizer, prompt=prompt)
print(response)