Instructions to use mradermacher/microcoderfim-1B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/microcoderfim-1B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/microcoderfim-1B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/microcoderfim-1B-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 mradermacher/microcoderfim-1B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/microcoderfim-1B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/microcoderfim-1B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/microcoderfim-1B-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/microcoderfim-1B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/microcoderfim-1B-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/microcoderfim-1B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/microcoderfim-1B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/microcoderfim-1B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/microcoderfim-1B-GGUF with Ollama:
ollama run hf.co/mradermacher/microcoderfim-1B-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/microcoderfim-1B-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/microcoderfim-1B-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/microcoderfim-1B-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/microcoderfim-1B-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/microcoderfim-1B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/microcoderfim-1B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/microcoderfim-1B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/microcoderfim-1B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.microcoderfim-1B-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from nico1
Browse files- .gitattributes +12 -0
- microcoderfim-1B.IQ4_XS.gguf +3 -0
- microcoderfim-1B.Q2_K.gguf +3 -0
- microcoderfim-1B.Q3_K_L.gguf +3 -0
- microcoderfim-1B.Q3_K_M.gguf +3 -0
- microcoderfim-1B.Q3_K_S.gguf +3 -0
- microcoderfim-1B.Q4_K_M.gguf +3 -0
- microcoderfim-1B.Q4_K_S.gguf +3 -0
- microcoderfim-1B.Q5_K_M.gguf +3 -0
- microcoderfim-1B.Q5_K_S.gguf +3 -0
- microcoderfim-1B.Q6_K.gguf +3 -0
- microcoderfim-1B.Q8_0.gguf +3 -0
- microcoderfim-1B.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip 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 |
+
microcoderfim-1B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
microcoderfim-1B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
microcoderfim-1B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
microcoderfim-1B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
microcoderfim-1B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
microcoderfim-1B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
microcoderfim-1B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
microcoderfim-1B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
microcoderfim-1B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
microcoderfim-1B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
microcoderfim-1B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
microcoderfim-1B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
microcoderfim-1B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd04190cf88e0ec5b9779be2763b08f50f48003b8e328445f693eb1dedeca1ba
|
| 3 |
+
size 702947168
|
microcoderfim-1B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c35ae12fd7cbe72d438a859bce52870009422c981c38ad31361bbbd97c97ece0
|
| 3 |
+
size 539172704
|
microcoderfim-1B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69b608d9fdf48e285d917607abbcd76579bbc3e8e620437589fb8aa053c88389
|
| 3 |
+
size 736370528
|
microcoderfim-1B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8315d6e29248a5f3ff635ed584638c12d91dc507c141f84c4ba0b5619d90e557
|
| 3 |
+
size 675553120
|
microcoderfim-1B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da53f8ea9aabc242ef5456c1eda4356b405ec4e992fa5236b72518d707bf8e2d
|
| 3 |
+
size 591568736
|
microcoderfim-1B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f07f05cdadda5275b93ed01c01ea5af765a72e5083ab7611018ef5623e8301b
|
| 3 |
+
size 792993632
|
microcoderfim-1B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c944f4b60b6b072ecfa2fe2f2ffb286898f3670fc610b689d7e7a3036165766
|
| 3 |
+
size 733224800
|
microcoderfim-1B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d024918350134739e49bb6bf2d8c839c773293d0475f3cd998b46a548a6f47f0
|
| 3 |
+
size 896114528
|
microcoderfim-1B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ae94f7e9308bca268bd42ba9fdfbad5ee1595ea9e7a7b06b155b23256430ec6
|
| 3 |
+
size 854335328
|
microcoderfim-1B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a17560e182c2f50ca7b8bd7d788780c3f5a27afe7045a6e6d764a59c1f9b307
|
| 3 |
+
size 989699936
|
microcoderfim-1B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38b12a4484ffdeb8df94bc4885ed0b8f1ff73a0289ab3a428b79a727a222d080
|
| 3 |
+
size 1260920672
|
microcoderfim-1B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79c4a61715d1e53b654eac48c404e19c181f3266753adde057880e1c53a0436d
|
| 3 |
+
size 2310807392
|