Instructions to use tensorblock/Lamarck-14B-v0.6-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/Lamarck-14B-v0.6-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/Lamarck-14B-v0.6-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/Lamarck-14B-v0.6-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/Lamarck-14B-v0.6-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 tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K
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 tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K
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 tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/Lamarck-14B-v0.6-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/Lamarck-14B-v0.6-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": "tensorblock/Lamarck-14B-v0.6-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K
- SGLang
How to use tensorblock/Lamarck-14B-v0.6-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 "tensorblock/Lamarck-14B-v0.6-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": "tensorblock/Lamarck-14B-v0.6-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 "tensorblock/Lamarck-14B-v0.6-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": "tensorblock/Lamarck-14B-v0.6-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/Lamarck-14B-v0.6-GGUF with Ollama:
ollama run hf.co/tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K
- Unsloth Desktop
- Pi
How to use tensorblock/Lamarck-14B-v0.6-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use tensorblock/Lamarck-14B-v0.6-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K
- Lemonade
How to use tensorblock/Lamarck-14B-v0.6-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K
Run and chat with the model
lemonade run user.Lamarck-14B-v0.6-GGUF-Q2_K
List all available models
lemonade list
- Hermes Agent
How to use tensorblock/Lamarck-14B-v0.6-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 tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K
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 tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use tensorblock/Lamarck-14B-v0.6-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K
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 "tensorblock/Lamarck-14B-v0.6-GGUF:Q2_K" \ --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"
Remove .gguf files (keep Q2_K.gguf)
Browse files- Lamarck-14B-v0.6-Q3_K_L.gguf +0 -3
- Lamarck-14B-v0.6-Q3_K_M.gguf +0 -3
- Lamarck-14B-v0.6-Q3_K_S.gguf +0 -3
- Lamarck-14B-v0.6-Q4_0.gguf +0 -3
- Lamarck-14B-v0.6-Q4_K_M.gguf +0 -3
- Lamarck-14B-v0.6-Q4_K_S.gguf +0 -3
- Lamarck-14B-v0.6-Q5_0.gguf +0 -3
- Lamarck-14B-v0.6-Q5_K_M.gguf +0 -3
- Lamarck-14B-v0.6-Q5_K_S.gguf +0 -3
- Lamarck-14B-v0.6-Q6_K.gguf +0 -3
- Lamarck-14B-v0.6-Q8_0.gguf +0 -3
Lamarck-14B-v0.6-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:48312deea5ccb8d16fee998d136d1e25a101e03457f11009db447d4a0a02e9cc
|
| 3 |
-
size 7922207552
|
|
|
|
|
|
|
|
|
|
|
|
Lamarck-14B-v0.6-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0b8b920441e13358dad28792396f6a68e636f0caf21c54c374668d59ab13aab1
|
| 3 |
-
size 7336643392
|
|
|
|
|
|
|
|
|
|
|
|
Lamarck-14B-v0.6-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:81121a2ad468dd9c717ec546d536f19322145c4aac1b56a7ea4f4f6fe1fe57f4
|
| 3 |
-
size 6657035072
|
|
|
|
|
|
|
|
|
|
|
|
Lamarck-14B-v0.6-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6076df01f45c868e3cf90d2acb5d09df9d2f9ca109e8f0a5a767a43ed54868ba
|
| 3 |
-
size 8514893664
|
|
|
|
|
|
|
|
|
|
|
|
Lamarck-14B-v0.6-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:95c834fb73c7a14e97a951ac9d33f5f45615223df6c211567c79252b6c036cf8
|
| 3 |
-
size 8985278304
|
|
|
|
|
|
|
|
|
|
|
|
Lamarck-14B-v0.6-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:079c073c0603ff6ece26f0a85ef991dfb84892e51e22f2482f77178299dfa5b5
|
| 3 |
-
size 8570599264
|
|
|
|
|
|
|
|
|
|
|
|
Lamarck-14B-v0.6-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6f437b3f6aae130efe1fe978100e9b7194c82a15d8b12f466b2bd4391fb46d52
|
| 3 |
-
size 10263466464
|
|
|
|
|
|
|
|
|
|
|
|
Lamarck-14B-v0.6-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:7a7b08248e72f074adc2d1f783379d680147ef082ba2cbd425d72d781bad259a
|
| 3 |
-
size 10505785824
|
|
|
|
|
|
|
|
|
|
|
|
Lamarck-14B-v0.6-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:86e0fd401193825b256e40e05f56ca514139189c7ea1fa58d0019aa3222fe6b0
|
| 3 |
-
size 10263466464
|
|
|
|
|
|
|
|
|
|
|
|
Lamarck-14B-v0.6-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e838d82e30e2464256f4b5d0aacd7ba0eedd7a668d7832ceb7ff5a325b3a5ddc
|
| 3 |
-
size 12121325088
|
|
|
|
|
|
|
|
|
|
|
|
Lamarck-14B-v0.6-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c3a4beebea2f2a9aef1436a0865162848afceb905f93ba5150831bf91ffa3c90
|
| 3 |
-
size 15697249440
|
|
|
|
|
|
|
|
|
|
|
|