Instructions to use eamiller34/Qwen2.5-Coder-7B-Swift-Lm with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use eamiller34/Qwen2.5-Coder-7B-Swift-Lm with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="eamiller34/Qwen2.5-Coder-7B-Swift-Lm") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("eamiller34/Qwen2.5-Coder-7B-Swift-Lm", dtype="auto") - llama-cpp-python
How to use eamiller34/Qwen2.5-Coder-7B-Swift-Lm with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="eamiller34/Qwen2.5-Coder-7B-Swift-Lm", filename="qwen_swift-f16.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use eamiller34/Qwen2.5-Coder-7B-Swift-Lm with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16 # Run inference directly in the terminal: llama-cli -hf eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16 # Run inference directly in the terminal: llama-cli -hf eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16 # Run inference directly in the terminal: ./llama-cli -hf eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16
Use Docker
docker model run hf.co/eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16
- LM Studio
- Jan
- vLLM
How to use eamiller34/Qwen2.5-Coder-7B-Swift-Lm with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "eamiller34/Qwen2.5-Coder-7B-Swift-Lm" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "eamiller34/Qwen2.5-Coder-7B-Swift-Lm", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16
- SGLang
How to use eamiller34/Qwen2.5-Coder-7B-Swift-Lm with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "eamiller34/Qwen2.5-Coder-7B-Swift-Lm" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "eamiller34/Qwen2.5-Coder-7B-Swift-Lm", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "eamiller34/Qwen2.5-Coder-7B-Swift-Lm" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "eamiller34/Qwen2.5-Coder-7B-Swift-Lm", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use eamiller34/Qwen2.5-Coder-7B-Swift-Lm with Ollama:
ollama run hf.co/eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16
- Unsloth Studio new
How to use eamiller34/Qwen2.5-Coder-7B-Swift-Lm with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for eamiller34/Qwen2.5-Coder-7B-Swift-Lm to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for eamiller34/Qwen2.5-Coder-7B-Swift-Lm to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for eamiller34/Qwen2.5-Coder-7B-Swift-Lm to start chatting
- Pi new
How to use eamiller34/Qwen2.5-Coder-7B-Swift-Lm with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use eamiller34/Qwen2.5-Coder-7B-Swift-Lm with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16
Run Hermes
hermes
- Docker Model Runner
How to use eamiller34/Qwen2.5-Coder-7B-Swift-Lm with Docker Model Runner:
docker model run hf.co/eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16
- Lemonade
How to use eamiller34/Qwen2.5-Coder-7B-Swift-Lm with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull eamiller34/Qwen2.5-Coder-7B-Swift-Lm:F16
Run and chat with the model
lemonade run user.Qwen2.5-Coder-7B-Swift-Lm-F16
List all available models
lemonade list
llm.create_chat_completion(
messages = [
{
"role": "user",
"content": "What is the capital of France?"
}
]
)Model Summary
Qwen2.5-Coder-7B-Swift-Lm is a fine-tuned version of the Qwen2.5-Coder-7B-Instruct model, specifically optimized for high-performance Swift development.
Key Features
Modern Swift Proficiency: Deeply familiar with Swift 6 Concurrency (Actors, Sendable) and the Observation framework (@Observable).
Native SDK Knowledge: Fine-tuned to understand the nuances of SwiftUI, AppKit, and Combine.
Local Performance: Optimized for GGUF format to ensure low-latency inference on Apple Silicon (Metal) via tools like LM Studio.
Training Details
Dataset: 5,602 high-quality, curated Swift examples.
Fine-tuning Method: QLoRA (Rank=16, Alpha=32).
Target Modules: q_proj, v_proj.
Objective: Improving code generation accuracy and reducing common pitfalls like forced-unwrapping.
Training Results
Final Training Loss: 0.369
Training Epochs: 1
Loss Curve: The model showed a steady, controlled descent from an initial loss of 12.45 down to 0.36, indicating successful convergence on the Swift-specific dataset without aggressive overfitting.
Usage Instructions
LM Studio / GGUF Download the .gguf file from the Files and versions tab.
In LM Studio, load the model and enable GPU Offload to Max.
Set your system prompt to: "You are a Senior iOS Architect specializing in clean, safe, and modern Swift code."
Connecting to Cursor Start the Local Server in LM Studio (default: http://localhost:1234).
In Cursor Settings, add a custom OpenAI API with the URL http://localhost:1234/v1.
Select this model to get fine-tuned Swift suggestions directly in your project.
- Downloads last month
- 149
16-bit
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="eamiller34/Qwen2.5-Coder-7B-Swift-Lm", filename="qwen_swift-f16.gguf", )