Instructions to use nopperl/OLMo-1B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use nopperl/OLMo-1B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="nopperl/OLMo-1B-GGUF", filename="OLMo-1B.IQ4_XS.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use nopperl/OLMo-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 nopperl/OLMo-1B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf nopperl/OLMo-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 nopperl/OLMo-1B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf nopperl/OLMo-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 nopperl/OLMo-1B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf nopperl/OLMo-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 nopperl/OLMo-1B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf nopperl/OLMo-1B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/nopperl/OLMo-1B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use nopperl/OLMo-1B-GGUF with Ollama:
ollama run hf.co/nopperl/OLMo-1B-GGUF:Q4_K_M
- Unsloth Studio
How to use nopperl/OLMo-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 nopperl/OLMo-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 nopperl/OLMo-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 nopperl/OLMo-1B-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use nopperl/OLMo-1B-GGUF with Docker Model Runner:
docker model run hf.co/nopperl/OLMo-1B-GGUF:Q4_K_M
- Lemonade
How to use nopperl/OLMo-1B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull nopperl/OLMo-1B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.OLMo-1B-GGUF-Q4_K_M
List all available models
lemonade list
update bpe pre-tokenizer and add bf16
Browse files- OLMo-1B.IQ4_XS.gguf +2 -2
- OLMo-1B.Q2_K.gguf +2 -2
- OLMo-1B.Q3_K_L.gguf +2 -2
- OLMo-1B.Q3_K_M.gguf +2 -2
- OLMo-1B.Q3_K_S.gguf +2 -2
- OLMo-1B.Q4_K_M.gguf +2 -2
- OLMo-1B.Q4_K_S.gguf +2 -2
- OLMo-1B.Q5_K_M.gguf +2 -2
- OLMo-1B.Q5_K_S.gguf +2 -2
- OLMo-1B.Q6_K.gguf +2 -2
- OLMo-1B.Q8_0.gguf +2 -2
- OLMo-1B.bf16.gguf +3 -0
- OLMo-1B.f16.gguf +2 -2
OLMo-1B.IQ4_XS.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b392eaa3f2850f5c128ee194fb380dca6af53e4b3765e1ff853ab7e02e51ff8
|
| 3 |
+
size 661954592
|
OLMo-1B.Q2_K.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:566a544cfd7318ce0aaad41ac92bcc177c3335f468b2054b3c670d3efd0f0240
|
| 3 |
+
size 479502368
|
OLMo-1B.Q3_K_L.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6cafcc782c191ad85e888ef67ad16e068ec9f0b8001e6ed159eb4dcca4a89576
|
| 3 |
+
size 651468832
|
OLMo-1B.Q3_K_M.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a3bb546b5ab4ad78d0b974d3a0e52ee5193e5312414fe506bab98428e2b84910
|
| 3 |
+
size 604282912
|
OLMo-1B.Q3_K_S.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b7a289388d8c41f55172a17fd71b4b7507f0a918489ffa6b9e80a4d48daebe6
|
| 3 |
+
size 547659808
|
OLMo-1B.Q4_K_M.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fec46ad476b6e5d3fb2c944ca4a44b6c5e7fe97e5e23c9c1dca0d0f8feae832
|
| 3 |
+
size 733519904
|
OLMo-1B.Q4_K_S.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:867d3d7b28631c7ef1648f5eaef0c6414b246f385df9a7abe0329feed78a18b8
|
| 3 |
+
size 696557600
|
OLMo-1B.Q5_K_M.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:769f3bbd08a8cd396c73732f8ee6863da272899d3e230f6f24f6bc6cf7c9c52c
|
| 3 |
+
size 846766112
|
OLMo-1B.Q5_K_S.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d97793f3e9dd7d66d8d93656c41538e52096816a751d4f3b47abc01be29600d4
|
| 3 |
+
size 824483872
|
OLMo-1B.Q6_K.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd3ba9d0d175a9ea2ceeb1a0c1b120a800599ca2b45b11e0541e9686ca85153a
|
| 3 |
+
size 967090208
|
OLMo-1B.Q8_0.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f746b381c5b2327e9493b0542b9e3d5d5bced792ab63dc194a4cc4c48427a22
|
| 3 |
+
size 1252087840
|
OLMo-1B.bf16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:27852dad70918efc40ee8059cf351cc11c41910a8782c25563f59f5509d97693
|
| 3 |
+
size 2355304480
|
OLMo-1B.f16.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0bf3bdd05d953979705a87a83009cccc4eb180d579fe438f9566bdbe4b28157
|
| 3 |
+
size 2355304480
|