Transformers
GGUF
English
text-generation-inference
unsloth
mistral
trl
sft
TensorBlock
GGUF
conversational
Instructions to use tensorblock/AlSamCur123_NemoContinuedFine-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/AlSamCur123_NemoContinuedFine-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/AlSamCur123_NemoContinuedFine-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/AlSamCur123_NemoContinuedFine-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/AlSamCur123_NemoContinuedFine-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/AlSamCur123_NemoContinuedFine-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/AlSamCur123_NemoContinuedFine-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/AlSamCur123_NemoContinuedFine-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/AlSamCur123_NemoContinuedFine-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/AlSamCur123_NemoContinuedFine-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/AlSamCur123_NemoContinuedFine-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/AlSamCur123_NemoContinuedFine-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/AlSamCur123_NemoContinuedFine-GGUF:Q2_K
- LM Studio
- Jan
- Ollama
How to use tensorblock/AlSamCur123_NemoContinuedFine-GGUF with Ollama:
ollama run hf.co/tensorblock/AlSamCur123_NemoContinuedFine-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/AlSamCur123_NemoContinuedFine-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 tensorblock/AlSamCur123_NemoContinuedFine-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 tensorblock/AlSamCur123_NemoContinuedFine-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/AlSamCur123_NemoContinuedFine-GGUF to start chatting
- Pi
How to use tensorblock/AlSamCur123_NemoContinuedFine-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/AlSamCur123_NemoContinuedFine-GGUF:Q2_K
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": "tensorblock/AlSamCur123_NemoContinuedFine-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use tensorblock/AlSamCur123_NemoContinuedFine-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/AlSamCur123_NemoContinuedFine-GGUF:Q2_K
- Lemonade
How to use tensorblock/AlSamCur123_NemoContinuedFine-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/AlSamCur123_NemoContinuedFine-GGUF:Q2_K
Run and chat with the model
lemonade run user.AlSamCur123_NemoContinuedFine-GGUF-Q2_K
List all available models
lemonade list
- Hermes Agent
How to use tensorblock/AlSamCur123_NemoContinuedFine-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/AlSamCur123_NemoContinuedFine-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/AlSamCur123_NemoContinuedFine-GGUF:Q2_K
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use tensorblock/AlSamCur123_NemoContinuedFine-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/AlSamCur123_NemoContinuedFine-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/AlSamCur123_NemoContinuedFine-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- NemoContinuedFine-Q3_K_L.gguf +0 -3
- NemoContinuedFine-Q3_K_M.gguf +0 -3
- NemoContinuedFine-Q3_K_S.gguf +0 -3
- NemoContinuedFine-Q4_0.gguf +0 -3
- NemoContinuedFine-Q4_K_M.gguf +0 -3
- NemoContinuedFine-Q4_K_S.gguf +0 -3
- NemoContinuedFine-Q5_0.gguf +0 -3
- NemoContinuedFine-Q5_K_M.gguf +0 -3
- NemoContinuedFine-Q5_K_S.gguf +0 -3
- NemoContinuedFine-Q6_K.gguf +0 -3
- NemoContinuedFine-Q8_0.gguf +0 -3
NemoContinuedFine-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e597cef64c6e583570ed6344cb70b183e046590ffd7d401e8bccb53da8323ed8
|
| 3 |
-
size 6561506144
|
|
|
|
|
|
|
|
|
|
|
|
NemoContinuedFine-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:9ab8bf81ec2591aa0194602de1f2f4e24d042f48e20026f7b878c2a67b99283f
|
| 3 |
-
size 6083093344
|
|
|
|
|
|
|
|
|
|
|
|
NemoContinuedFine-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:bfd48606506c44fda62ce9931897ed8c885807cc1aa3595d3d6733e1f3707486
|
| 3 |
-
size 5534229344
|
|
|
|
|
|
|
|
|
|
|
|
NemoContinuedFine-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:bb3ccc3d375773fdbb38fd79aec24d525df17c9eae5bdcbc5682ead67cb5afb6
|
| 3 |
-
size 7071703904
|
|
|
|
|
|
|
|
|
|
|
|
NemoContinuedFine-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c6f5bc37346ccfcba1d39e94636432d4a34841af2e8f5b991cc3d39f0d6fd4b7
|
| 3 |
-
size 7477207904
|
|
|
|
|
|
|
|
|
|
|
|
NemoContinuedFine-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:cc7391a2114a4263fd910536f773b7e5d6e0aa41742a9bd62f82c6da99a64d6c
|
| 3 |
-
size 7120200544
|
|
|
|
|
|
|
|
|
|
|
|
NemoContinuedFine-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:46419f96a9b97d86870af2958ba03fad2348b159275d5a6185f723f313a45ce1
|
| 3 |
-
size 8518738784
|
|
|
|
|
|
|
|
|
|
|
|
NemoContinuedFine-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:122d8fdbcce440eaf3bae2ffc137d8d7e1cb6d8c0bc302971c1a21c992c197f8
|
| 3 |
-
size 8727634784
|
|
|
|
|
|
|
|
|
|
|
|
NemoContinuedFine-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:131814f1368dba1daec046c6266409a6606985207e5770f9f6b6ca7bb03c7513
|
| 3 |
-
size 8518738784
|
|
|
|
|
|
|
|
|
|
|
|
NemoContinuedFine-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:71bbec0c4dd7c80fbb9324e7594ac9135b8030b365641a08470644678bb71010
|
| 3 |
-
size 10056213344
|
|
|
|
|
|
|
|
|
|
|
|
NemoContinuedFine-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d0916b2fd5b9f8e2a4e28e73b74885148188bd64207c725bc069a4638246b498
|
| 3 |
-
size 13022372704
|
|
|
|
|
|
|
|
|
|
|
|