Instructions to use mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF", filename="Base-Roblox-coder-Llama-3.2-1B-vLLM.IQ4_XS.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/Base-Roblox-coder-Llama-3.2-1B-vLLM-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/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-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/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-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/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-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/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF with Ollama:
ollama run hf.co/mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-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/Base-Roblox-coder-Llama-3.2-1B-vLLM-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/Base-Roblox-coder-Llama-3.2-1B-vLLM-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/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF to start chatting
- Pi
How to use mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-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/Base-Roblox-coder-Llama-3.2-1B-vLLM-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/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-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/Base-Roblox-coder-Llama-3.2-1B-vLLM-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/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Base-Roblox-coder-Llama-3.2-1B-vLLM-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- Base-Roblox-coder-Llama-3.2-1B-vLLM.IQ4_XS.gguf +3 -0
- Base-Roblox-coder-Llama-3.2-1B-vLLM.Q2_K.gguf +3 -0
- Base-Roblox-coder-Llama-3.2-1B-vLLM.Q3_K_L.gguf +3 -0
- Base-Roblox-coder-Llama-3.2-1B-vLLM.Q3_K_M.gguf +3 -0
- Base-Roblox-coder-Llama-3.2-1B-vLLM.Q3_K_S.gguf +3 -0
- Base-Roblox-coder-Llama-3.2-1B-vLLM.Q4_K_M.gguf +3 -0
- Base-Roblox-coder-Llama-3.2-1B-vLLM.Q4_K_S.gguf +3 -0
- Base-Roblox-coder-Llama-3.2-1B-vLLM.Q5_K_M.gguf +3 -0
- Base-Roblox-coder-Llama-3.2-1B-vLLM.Q5_K_S.gguf +3 -0
- Base-Roblox-coder-Llama-3.2-1B-vLLM.Q6_K.gguf +3 -0
- Base-Roblox-coder-Llama-3.2-1B-vLLM.Q8_0.gguf +3 -0
- Base-Roblox-coder-Llama-3.2-1B-vLLM.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 |
+
Base-Roblox-coder-Llama-3.2-1B-vLLM.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Base-Roblox-coder-Llama-3.2-1B-vLLM.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Base-Roblox-coder-Llama-3.2-1B-vLLM.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:86eb0c7b1d28a15d5b6606ac9f1e69e1aba705a33c2639d3bf1a91a6493a1f19
|
| 3 |
+
size 1840912480
|
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79c815fe0345fcf4dd1cff77752e8cfaaf4ff1e54beaa9b3f482fb4e935f138e
|
| 3 |
+
size 1363941472
|
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94f848bba9607a2247d108fbc38da926741e5c61dc0d54410d0624295b12b309
|
| 3 |
+
size 1815353440
|
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b9e56c4673311ac4103e0d4f19d94f8571d3daddbfb2e494afa396b233ac171d
|
| 3 |
+
size 1687165024
|
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d6049ae4e6222990686c32b200221e71c3e90907acf6111d0bb11bf8def68c5
|
| 3 |
+
size 1542854752
|
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d0ebaee727733aceeccf846590308b9d2607316a770d7b4ba2668ec6f2daeb05
|
| 3 |
+
size 2019383392
|
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19d222c4189e9518ab25b69277c38d247bf69214a5881d4289aae9ec9a186b61
|
| 3 |
+
size 1928206432
|
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c642b577b4b0cd7c4306fbae997446742acee0ef7294d3a26ce85f44d244f14d
|
| 3 |
+
size 2322159712
|
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d979f09eeb49f396262bc706797e42f810d67f434ef08e669f7fb574538b98a
|
| 3 |
+
size 2269517920
|
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef524a4ded902d7482dc8aee7480982863eeec2f0ce2cf8a6e79b68a6f612d66
|
| 3 |
+
size 2643859552
|
Base-Roblox-coder-Llama-3.2-1B-vLLM.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4a8f54cb27ff9268d79e7bb71f59c639990ad0080123da565062ca3d04f057ef
|
| 3 |
+
size 3421904992
|
Base-Roblox-coder-Llama-3.2-1B-vLLM.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b2dd1faa30ce71438197b7b3ebe2005cb4541057f615ed6fc6a610e943c0ec5c
|
| 3 |
+
size 6433693792
|