Text Generation
Transformers
GGUF
French
English
chat
qwen
qwen2.5
finetune
french
english
llama-cpp
matrixportal
Eval Results (legacy)
conversational
Instructions to use ysn-rfd/calme-3.3-instruct-3b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ysn-rfd/calme-3.3-instruct-3b-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ysn-rfd/calme-3.3-instruct-3b-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ysn-rfd/calme-3.3-instruct-3b-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use ysn-rfd/calme-3.3-instruct-3b-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0 # Run inference directly in the terminal: llama cli -hf ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0 # Run inference directly in the terminal: llama cli -hf ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0
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 ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0 # Run inference directly in the terminal: ./llama-cli -hf ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0
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 ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0
Use Docker
docker model run hf.co/ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0
- LM Studio
- Jan
- vLLM
How to use ysn-rfd/calme-3.3-instruct-3b-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ysn-rfd/calme-3.3-instruct-3b-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ysn-rfd/calme-3.3-instruct-3b-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0
- SGLang
How to use ysn-rfd/calme-3.3-instruct-3b-GGUF 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 "ysn-rfd/calme-3.3-instruct-3b-GGUF" \ --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": "ysn-rfd/calme-3.3-instruct-3b-GGUF", "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 "ysn-rfd/calme-3.3-instruct-3b-GGUF" \ --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": "ysn-rfd/calme-3.3-instruct-3b-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use ysn-rfd/calme-3.3-instruct-3b-GGUF with Ollama:
ollama run hf.co/ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0
- Unsloth Studio
How to use ysn-rfd/calme-3.3-instruct-3b-GGUF 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 ysn-rfd/calme-3.3-instruct-3b-GGUF 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 ysn-rfd/calme-3.3-instruct-3b-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for ysn-rfd/calme-3.3-instruct-3b-GGUF to start chatting
- Pi
How to use ysn-rfd/calme-3.3-instruct-3b-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0
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": "ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use ysn-rfd/calme-3.3-instruct-3b-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0
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 ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use ysn-rfd/calme-3.3-instruct-3b-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use ysn-rfd/calme-3.3-instruct-3b-GGUF with Docker Model Runner:
docker model run hf.co/ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0
- Lemonade
How to use ysn-rfd/calme-3.3-instruct-3b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ysn-rfd/calme-3.3-instruct-3b-GGUF:Q4_0
Run and chat with the model
lemonade run user.calme-3.3-instruct-3b-GGUF-Q4_0
List all available models
lemonade list
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,191 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: MaziyarPanahi/calme-3.3-instruct-3b
|
| 3 |
+
datasets:
|
| 4 |
+
- MaziyarPanahi/french_instruct_sharegpt
|
| 5 |
+
- arcee-ai/EvolKit-20k
|
| 6 |
+
language:
|
| 7 |
+
- fr
|
| 8 |
+
- en
|
| 9 |
+
library_name: transformers
|
| 10 |
+
license: other
|
| 11 |
+
license_name: qwen-research
|
| 12 |
+
license_link: https://huggingface.co/Qwen/Qwen2.5-3B/blob/main/LICENSE
|
| 13 |
+
pipeline_tag: text-generation
|
| 14 |
+
tags:
|
| 15 |
+
- chat
|
| 16 |
+
- qwen
|
| 17 |
+
- qwen2.5
|
| 18 |
+
- finetune
|
| 19 |
+
- french
|
| 20 |
+
- english
|
| 21 |
+
- llama-cpp
|
| 22 |
+
- matrixportal
|
| 23 |
+
inference: false
|
| 24 |
+
model_creator: MaziyarPanahi
|
| 25 |
+
quantized_by: MaziyarPanahi
|
| 26 |
+
model-index:
|
| 27 |
+
- name: calme-3.3-instruct-3b
|
| 28 |
+
results:
|
| 29 |
+
- task:
|
| 30 |
+
type: text-generation
|
| 31 |
+
name: Text Generation
|
| 32 |
+
dataset:
|
| 33 |
+
name: IFEval (0-Shot)
|
| 34 |
+
type: HuggingFaceH4/ifeval
|
| 35 |
+
args:
|
| 36 |
+
num_few_shot: 0
|
| 37 |
+
metrics:
|
| 38 |
+
- type: inst_level_strict_acc and prompt_level_strict_acc
|
| 39 |
+
value: 64.23
|
| 40 |
+
name: strict accuracy
|
| 41 |
+
source:
|
| 42 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=MaziyarPanahi/calme-3.3-instruct-3b
|
| 43 |
+
name: Open LLM Leaderboard
|
| 44 |
+
- task:
|
| 45 |
+
type: text-generation
|
| 46 |
+
name: Text Generation
|
| 47 |
+
dataset:
|
| 48 |
+
name: BBH (3-Shot)
|
| 49 |
+
type: BBH
|
| 50 |
+
args:
|
| 51 |
+
num_few_shot: 3
|
| 52 |
+
metrics:
|
| 53 |
+
- type: acc_norm
|
| 54 |
+
value: 25.68
|
| 55 |
+
name: normalized accuracy
|
| 56 |
+
source:
|
| 57 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=MaziyarPanahi/calme-3.3-instruct-3b
|
| 58 |
+
name: Open LLM Leaderboard
|
| 59 |
+
- task:
|
| 60 |
+
type: text-generation
|
| 61 |
+
name: Text Generation
|
| 62 |
+
dataset:
|
| 63 |
+
name: MATH Lvl 5 (4-Shot)
|
| 64 |
+
type: hendrycks/competition_math
|
| 65 |
+
args:
|
| 66 |
+
num_few_shot: 4
|
| 67 |
+
metrics:
|
| 68 |
+
- type: exact_match
|
| 69 |
+
value: 0.0
|
| 70 |
+
name: exact match
|
| 71 |
+
source:
|
| 72 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=MaziyarPanahi/calme-3.3-instruct-3b
|
| 73 |
+
name: Open LLM Leaderboard
|
| 74 |
+
- task:
|
| 75 |
+
type: text-generation
|
| 76 |
+
name: Text Generation
|
| 77 |
+
dataset:
|
| 78 |
+
name: GPQA (0-shot)
|
| 79 |
+
type: Idavidrein/gpqa
|
| 80 |
+
args:
|
| 81 |
+
num_few_shot: 0
|
| 82 |
+
metrics:
|
| 83 |
+
- type: acc_norm
|
| 84 |
+
value: 4.36
|
| 85 |
+
name: acc_norm
|
| 86 |
+
source:
|
| 87 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=MaziyarPanahi/calme-3.3-instruct-3b
|
| 88 |
+
name: Open LLM Leaderboard
|
| 89 |
+
- task:
|
| 90 |
+
type: text-generation
|
| 91 |
+
name: Text Generation
|
| 92 |
+
dataset:
|
| 93 |
+
name: MuSR (0-shot)
|
| 94 |
+
type: TAUR-Lab/MuSR
|
| 95 |
+
args:
|
| 96 |
+
num_few_shot: 0
|
| 97 |
+
metrics:
|
| 98 |
+
- type: acc_norm
|
| 99 |
+
value: 9.4
|
| 100 |
+
name: acc_norm
|
| 101 |
+
source:
|
| 102 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=MaziyarPanahi/calme-3.3-instruct-3b
|
| 103 |
+
name: Open LLM Leaderboard
|
| 104 |
+
- task:
|
| 105 |
+
type: text-generation
|
| 106 |
+
name: Text Generation
|
| 107 |
+
dataset:
|
| 108 |
+
name: MMLU-PRO (5-shot)
|
| 109 |
+
type: TIGER-Lab/MMLU-Pro
|
| 110 |
+
config: main
|
| 111 |
+
split: test
|
| 112 |
+
args:
|
| 113 |
+
num_few_shot: 5
|
| 114 |
+
metrics:
|
| 115 |
+
- type: acc
|
| 116 |
+
value: 25.62
|
| 117 |
+
name: accuracy
|
| 118 |
+
source:
|
| 119 |
+
url: https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=MaziyarPanahi/calme-3.3-instruct-3b
|
| 120 |
+
name: Open LLM Leaderboard
|
| 121 |
+
---
|
| 122 |
+
|
| 123 |
+
# ysn-rfd/calme-3.3-instruct-3b-GGUF
|
| 124 |
+
This model was converted to GGUF format from [`MaziyarPanahi/calme-3.3-instruct-3b`](https://huggingface.co/MaziyarPanahi/calme-3.3-instruct-3b) using llama.cpp via the ggml.ai's [all-gguf-same-where](https://huggingface.co/spaces/matrixportal/all-gguf-same-where) space.
|
| 125 |
+
Refer to the [original model card](https://huggingface.co/MaziyarPanahi/calme-3.3-instruct-3b) for more details on the model.
|
| 126 |
+
|
| 127 |
+
## β
Quantized Models Download List
|
| 128 |
+
|
| 129 |
+
### π Recommended Quantizations
|
| 130 |
+
- **β¨ General CPU Use:** [`Q4_K_M`](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q4_k_m.gguf) (Best balance of speed/quality)
|
| 131 |
+
- **π± ARM Devices:** [`Q4_0`](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q4_0.gguf) (Optimized for ARM CPUs)
|
| 132 |
+
- **π Maximum Quality:** [`Q8_0`](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q8_0.gguf) (Near-original quality)
|
| 133 |
+
|
| 134 |
+
### π¦ Full Quantization Options
|
| 135 |
+
| π Download | π’ Type | π Notes |
|
| 136 |
+
|:---------|:-----|:------|
|
| 137 |
+
| [Download](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q2_k.gguf) |  | Basic quantization |
|
| 138 |
+
| [Download](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q3_k_s.gguf) |  | Small size |
|
| 139 |
+
| [Download](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q3_k_m.gguf) |  | Balanced quality |
|
| 140 |
+
| [Download](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q3_k_l.gguf) |  | Better quality |
|
| 141 |
+
| [Download](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q4_0.gguf) |  | Fast on ARM |
|
| 142 |
+
| [Download](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q4_k_s.gguf) |  | Fast, recommended |
|
| 143 |
+
| [Download](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q4_k_m.gguf) |  β | Best balance |
|
| 144 |
+
| [Download](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q5_0.gguf) |  | Good quality |
|
| 145 |
+
| [Download](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q5_k_s.gguf) |  | Balanced |
|
| 146 |
+
| [Download](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q5_k_m.gguf) |  | High quality |
|
| 147 |
+
| [Download](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q6_k.gguf) |  π | Very good quality |
|
| 148 |
+
| [Download](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-q8_0.gguf) |  β‘ | Fast, best quality |
|
| 149 |
+
| [Download](https://huggingface.co/ysn-rfd/calme-3.3-instruct-3b-GGUF/resolve/main/calme-3.3-instruct-3b-f16.gguf) |  | Maximum accuracy |
|
| 150 |
+
|
| 151 |
+
π‘ **Tip:** Use `F16` for maximum precision when quality is critical
|
| 152 |
+
|
| 153 |
+
|
| 154 |
+
---
|
| 155 |
+
# π Applications and Tools for Locally Quantized LLMs
|
| 156 |
+
## π₯οΈ Desktop Applications
|
| 157 |
+
|
| 158 |
+
| Application | Description | Download Link |
|
| 159 |
+
|-----------------|----------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------|
|
| 160 |
+
| **Llama.cpp** | A fast and efficient inference engine for GGUF models. | [GitHub Repository](https://github.com/ggml-org/llama.cpp) |
|
| 161 |
+
| **Ollama** | A streamlined solution for running LLMs locally. | [Website](https://ollama.com/) |
|
| 162 |
+
| **AnythingLLM** | An AI-powered knowledge management tool. | [GitHub Repository](https://github.com/Mintplex-Labs/anything-llm) |
|
| 163 |
+
| **Open WebUI** | A user-friendly web interface for running local LLMs. | [GitHub Repository](https://github.com/open-webui/open-webui) |
|
| 164 |
+
| **GPT4All** | A user-friendly desktop application supporting various LLMs, compatible with GGUF models. | [GitHub Repository](https://github.com/nomic-ai/gpt4all) |
|
| 165 |
+
| **LM Studio** | A desktop application designed to run and manage local LLMs, supporting GGUF format. | [Website](https://lmstudio.ai/) |
|
| 166 |
+
| **GPT4All Chat**| A chat application compatible with GGUF models for local, offline interactions. | [GitHub Repository](https://github.com/nomic-ai/gpt4all) |
|
| 167 |
+
|
| 168 |
+
---
|
| 169 |
+
|
| 170 |
+
## π± Mobile Applications
|
| 171 |
+
|
| 172 |
+
| Application | Description | Download Link |
|
| 173 |
+
|-------------------|----------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------|
|
| 174 |
+
| **ChatterUI** | A simple and lightweight LLM app for mobile devices. | [GitHub Repository](https://github.com/Vali-98/ChatterUI) |
|
| 175 |
+
| **Maid** | Mobile Artificial Intelligence Distribution for running AI models on mobile devices. | [GitHub Repository](https://github.com/Mobile-Artificial-Intelligence/maid) |
|
| 176 |
+
| **PocketPal AI** | A mobile AI assistant powered by local models. | [GitHub Repository](https://github.com/a-ghorbani/pocketpal-ai) |
|
| 177 |
+
| **Layla** | A flexible platform for running various AI models on mobile devices. | [Website](https://www.layla-network.ai/) |
|
| 178 |
+
|
| 179 |
+
---
|
| 180 |
+
|
| 181 |
+
## π¨ Image Generation Applications
|
| 182 |
+
|
| 183 |
+
| Application | Description | Download Link |
|
| 184 |
+
|-------------------------------------|----------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------|
|
| 185 |
+
| **Stable Diffusion** | An open-source AI model for generating images from text. | [GitHub Repository](https://github.com/CompVis/stable-diffusion) |
|
| 186 |
+
| **Stable Diffusion WebUI** | A web application providing access to Stable Diffusion models via a browser interface. | [GitHub Repository](https://github.com/AUTOMATIC1111/stable-diffusion-webui) |
|
| 187 |
+
| **Local Dream** | Android Stable Diffusion with Snapdragon NPU acceleration. Also supports CPU inference. | [GitHub Repository](https://github.com/xororz/local-dream) |
|
| 188 |
+
| **Stable-Diffusion-Android (SDAI)** | An open-source AI art application for Android devices, enabling digital art creation. | [GitHub Repository](https://github.com/ShiftHackZ/Stable-Diffusion-Android) |
|
| 189 |
+
|
| 190 |
+
---
|
| 191 |
+
|