Transformers
GGUF
English
Russian
code
fluently
fluently-lm
qwen3
coder
coding
trained
merged
sft
trl
unsloth
axolotl
imatrix
conversational
Instructions to use mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF", filename="FluentlyQwen3-Coder-1.7B.i1-IQ1_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M
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 mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M
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 mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/FluentlyQwen3-Coder-1.7B-i1-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 mradermacher/FluentlyQwen3-Coder-1.7B-i1-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 mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF to start chatting
- Pi
How to use mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M
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": "mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M
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 mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/FluentlyQwen3-Coder-1.7B-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.FluentlyQwen3-Coder-1.7B-i1-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from nico1
Browse files- .gitattributes +24 -0
- FluentlyQwen3-Coder-1.7B.i1-IQ1_M.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-IQ1_S.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-IQ2_M.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-IQ2_S.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-IQ2_XS.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-IQ2_XXS.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-IQ3_M.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-IQ3_S.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-IQ3_XS.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-IQ3_XXS.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-IQ4_NL.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-IQ4_XS.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-Q2_K.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-Q2_K_S.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-Q3_K_L.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-Q3_K_M.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-Q3_K_S.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-Q4_0.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-Q4_1.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-Q4_K_M.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-Q4_K_S.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-Q5_K_M.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-Q5_K_S.gguf +3 -0
- FluentlyQwen3-Coder-1.7B.i1-Q6_K.gguf +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,27 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
FluentlyQwen3-Coder-1.7B.imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
FluentlyQwen3-Coder-1.7B.imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
FluentlyQwen3-Coder-1.7B.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
FluentlyQwen3-Coder-1.7B.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
FluentlyQwen3-Coder-1.7B.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
FluentlyQwen3-Coder-1.7B.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
FluentlyQwen3-Coder-1.7B.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
FluentlyQwen3-Coder-1.7B.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
FluentlyQwen3-Coder-1.7B.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
FluentlyQwen3-Coder-1.7B.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
FluentlyQwen3-Coder-1.7B.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
FluentlyQwen3-Coder-1.7B.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
FluentlyQwen3-Coder-1.7B.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
FluentlyQwen3-Coder-1.7B.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
FluentlyQwen3-Coder-1.7B.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
FluentlyQwen3-Coder-1.7B.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
FluentlyQwen3-Coder-1.7B.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
FluentlyQwen3-Coder-1.7B.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
FluentlyQwen3-Coder-1.7B.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
FluentlyQwen3-Coder-1.7B.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
FluentlyQwen3-Coder-1.7B.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
FluentlyQwen3-Coder-1.7B.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
FluentlyQwen3-Coder-1.7B.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
FluentlyQwen3-Coder-1.7B.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
FluentlyQwen3-Coder-1.7B.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
FluentlyQwen3-Coder-1.7B.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
FluentlyQwen3-Coder-1.7B.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dcebd6697dacc80b3bf6c291d4bb50205dc5d3cf2e59079345da3cd318fa2bf1
|
| 3 |
+
size 645895424
|
FluentlyQwen3-Coder-1.7B.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70db526e05ce27650553c67c1f994278b0ba1f4649968c3861fd9046e9949f08
|
| 3 |
+
size 617878784
|
FluentlyQwen3-Coder-1.7B.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b880c510d6c8a52a39b7afa642d9410964ecef9138e2b1181a00962dfbbcd1ce
|
| 3 |
+
size 828886272
|
FluentlyQwen3-Coder-1.7B.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0793dd8ad9b7820b8577c33c2ff74224ec99e4e88023202784606e8f7cd2492c
|
| 3 |
+
size 791530752
|
FluentlyQwen3-Coder-1.7B.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c085c3ca88472091b1f474be928e790308295abbca14ea44fdcb2a1335e5c4da
|
| 3 |
+
size 733615360
|
FluentlyQwen3-Coder-1.7B.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb41943be1ef5cb369f7db56ab4dc89ae77a1b4007ad0095398517dc158d7019
|
| 3 |
+
size 692589824
|
FluentlyQwen3-Coder-1.7B.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fc02876a554e565648b5dd059709fe60aeac4860ab6387d9d39ec6d8e719203
|
| 3 |
+
size 1029367040
|
FluentlyQwen3-Coder-1.7B.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bccef2777314d0cc68512b37c4ee261180ada94aa85cfbac6163b80c52b48dcf
|
| 3 |
+
size 1000957184
|
FluentlyQwen3-Coder-1.7B.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:640d59eca9e048c6850a5c0cdcc77c244a3d574b6e47f3a163defced6b3856ab
|
| 3 |
+
size 967927040
|
FluentlyQwen3-Coder-1.7B.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e622da96f35f47f20b3bf2facf34cb1f4c754bbcabf3b85256b41cddb620a6c
|
| 3 |
+
size 888065280
|
FluentlyQwen3-Coder-1.7B.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10acb1f2c2d62d4dda66410338829488d0a43e866f7815d04fcba234ac33b576
|
| 3 |
+
size 1229454592
|
FluentlyQwen3-Coder-1.7B.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3623ee454dee7d33742a9e6e70f017bce009834d5ca9ba4d8a5a2a29c74b29d8
|
| 3 |
+
size 1175690496
|
FluentlyQwen3-Coder-1.7B.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a474c93ac3a12660fd13368e255e610a487bb8975bbeaefa76df85fbc87744b
|
| 3 |
+
size 879897856
|
FluentlyQwen3-Coder-1.7B.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af5ea4c3c63dd179c78fa16dc1993951cdb46fd6deb1195e91a65bfecc49ec62
|
| 3 |
+
size 835071232
|
FluentlyQwen3-Coder-1.7B.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08adf2c0e58c25fdb2bb251052ac7ca7b8ee1a2fe1d974bc93aa0e6063289b0f
|
| 3 |
+
size 1137206528
|
FluentlyQwen3-Coder-1.7B.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d0b2974461a0b4a0b25c9c1dba8c10f080c71a0d3fabdec45258e05df6dc3f0d
|
| 3 |
+
size 1073243392
|
FluentlyQwen3-Coder-1.7B.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2cf7c1b1019be04b212ad56846349a59930a1bc4470de9f27f711d7363b7c2b4
|
| 3 |
+
size 1000957184
|
FluentlyQwen3-Coder-1.7B.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b90bcd05c1be82e7baf58443afe6f0a069f20774c8a7b26620c9b22a3ca9881
|
| 3 |
+
size 1231813888
|
FluentlyQwen3-Coder-1.7B.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:35c9204ef002313708a6c13558f00bb2c52ceb1ef93ae00a66bf822c5be5eab6
|
| 3 |
+
size 1336982784
|
FluentlyQwen3-Coder-1.7B.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e15788c5e6b4b1ab1a00b6a2e7432280abf9b3937f603e13d6f0d843c58a52eb
|
| 3 |
+
size 1282440448
|
FluentlyQwen3-Coder-1.7B.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:96d3958b390a5db2acef5335f8a22a32d7b813ddec5ea136d1ca5341d14e9aeb
|
| 3 |
+
size 1235221760
|
FluentlyQwen3-Coder-1.7B.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0fce11f4bc612c5730f7817dc11a72c29e1f5443f8b6dd6838edb0f8cbe4c3fe
|
| 3 |
+
size 1471806720
|
FluentlyQwen3-Coder-1.7B.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2cf1eba31ea1500a05b09e85ea4282c5feebf7e5a807299d312237b013a6d015
|
| 3 |
+
size 1444510976
|
FluentlyQwen3-Coder-1.7B.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9a66ea5001a52483d218b3c59c9a3e158a24c28edc491a244772145cb6afde8
|
| 3 |
+
size 1673008384
|