Text Generation
Adapters
GGUF
chemistry
biology
legal
code
medical
finance
roleplay
uncensored
uncensored LLM
conversational
Instructions to use osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Adapters
How to use osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF with Adapters:
from adapters import AutoAdapterModel model = AutoAdapterModel.from_pretrained("undefined") model.load_adapter("osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF", set_active=True) - llama-cpp-python
How to use osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF", filename="Nidum-Llama-3.2-3B-Uncensored-F16.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf osmapi/Nidum-Llama-3.2-3B-Uncensored-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 osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf osmapi/Nidum-Llama-3.2-3B-Uncensored-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 osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf osmapi/Nidum-Llama-3.2-3B-Uncensored-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 osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF:Q4_K_M
Use Docker
docker model run hf.co/osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "osmapi/Nidum-Llama-3.2-3B-Uncensored-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": "osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF:Q4_K_M
- Ollama
How to use osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF with Ollama:
ollama run hf.co/osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF:Q4_K_M
- Unsloth Studio
How to use osmapi/Nidum-Llama-3.2-3B-Uncensored-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 osmapi/Nidum-Llama-3.2-3B-Uncensored-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 osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF to start chatting
- Pi
How to use osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf osmapi/Nidum-Llama-3.2-3B-Uncensored-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": "osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use osmapi/Nidum-Llama-3.2-3B-Uncensored-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 osmapi/Nidum-Llama-3.2-3B-Uncensored-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 osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF with Docker Model Runner:
docker model run hf.co/osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF:Q4_K_M
- Lemonade
How to use osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull osmapi/Nidum-Llama-3.2-3B-Uncensored-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Nidum-Llama-3.2-3B-Uncensored-GGUF-Q4_K_M
List all available models
lemonade list
Kesavan commited on
Commit ·
bc42c8d
1
Parent(s): 9700a84
Add GGUF model files
Browse files- .gitattributes +1 -0
- Nidum-Llama-3.2-3B-Uncensored-F16.gguf +3 -0
- model-Q2_K.gguf +3 -0
- model-Q3_K_L.gguf +3 -0
- model-Q3_K_M.gguf +3 -0
- model-Q3_K_S.gguf +3 -0
- model-Q4_0_4_4.gguf +3 -0
- model-Q4_0_4_8.gguf +3 -0
- model-Q4_0_8_8.gguf +3 -0
- model-Q4_K_M.gguf +3 -0
- model-Q4_K_S.gguf +3 -0
- model-Q5_K_M.gguf +3 -0
- model-Q5_K_S.gguf +3 -0
- model-Q6_K.gguf +3 -0
- model-TQ1_0.gguf +3 -0
- model-TQ2_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ 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 |
+
*.gguf filter=lfs diff=lfs merge=lfs -text
|
Nidum-Llama-3.2-3B-Uncensored-F16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:767f7d00431b076da787cf79a9179846a7cfbe4a6d60820d4930ce15c9888459
|
| 3 |
+
size 6433688032
|
model-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0eafb04b1efc61aeb5828da51e3f84529878df702adcebe604670d1150490d5b
|
| 3 |
+
size 1363935712
|
model-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5d496388a257ebef8d0515da29c571d11afc6d053df8395828eaac10f46154f
|
| 3 |
+
size 1815347680
|
model-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01004ee1572e35af05173508bb4c1b3b693d65eda2fcf408cf0cb064b8f9a897
|
| 3 |
+
size 1687159264
|
model-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76570e9965eb3affc896a375aa81df4e3993348f9b94b0edfaaaf5aec5626b47
|
| 3 |
+
size 1542848992
|
model-Q4_0_4_4.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b0e2a8cd2fa282ed7083d6493b519bc4abf4624c26843b8bb588cc809b02ac3
|
| 3 |
+
size 1917190624
|
model-Q4_0_4_8.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90cfd651466305fe62d4e04de71fcade9d66a54faab3805f89e7815a6dba8eee
|
| 3 |
+
size 1917190624
|
model-Q4_0_8_8.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4b6d63532e6da1a64056e9a12b798bd78befc1540a178a8e1ff9be0b3afac950
|
| 3 |
+
size 1917190624
|
model-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f71ffc4383890374d140a69cd8d6da6179ab4cc00cc9609deadcb3c8766bb387
|
| 3 |
+
size 2019377632
|
model-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dcde8577e5963a0a10f7b3de5fa299e2d24bc03bd2bb22b2c953440b0c23a9df
|
| 3 |
+
size 1928200672
|
model-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c91827f6e1285b60b901f38a6100ac977af1570c9389b547f4470c3f7e7bc3d
|
| 3 |
+
size 2322153952
|
model-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a132d8b1ca9243358ee0277d1b6b03be71e87196e402f553828f2b6db4b3127e
|
| 3 |
+
size 2269512160
|
model-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8a147548a4ccdc51b958a7fc09f311283893621845ccb1f15db413ed06cd9ae
|
| 3 |
+
size 2643853792
|
model-TQ1_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b494f733a564dae0020a78178c33bbfa8bf5d23627a618bf60d574c68df2c2ec
|
| 3 |
+
size 926286304
|
model-TQ2_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:153693c8664c367ce62a3d2247d4308ff1994cfda6e4354b476b5b3c7cb1577f
|
| 3 |
+
size 1058406880
|