Instructions to use YokaiKoibito/llama2_70b_chat_uncensored-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use YokaiKoibito/llama2_70b_chat_uncensored-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 YokaiKoibito/llama2_70b_chat_uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf YokaiKoibito/llama2_70b_chat_uncensored-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 YokaiKoibito/llama2_70b_chat_uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf YokaiKoibito/llama2_70b_chat_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 YokaiKoibito/llama2_70b_chat_uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf YokaiKoibito/llama2_70b_chat_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 YokaiKoibito/llama2_70b_chat_uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf YokaiKoibito/llama2_70b_chat_uncensored-GGUF:Q4_K_M
Use Docker
docker model run hf.co/YokaiKoibito/llama2_70b_chat_uncensored-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use YokaiKoibito/llama2_70b_chat_uncensored-GGUF with Ollama:
ollama run hf.co/YokaiKoibito/llama2_70b_chat_uncensored-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use YokaiKoibito/llama2_70b_chat_uncensored-GGUF with Docker Model Runner:
docker model run hf.co/YokaiKoibito/llama2_70b_chat_uncensored-GGUF:Q4_K_M
- Lemonade
How to use YokaiKoibito/llama2_70b_chat_uncensored-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull YokaiKoibito/llama2_70b_chat_uncensored-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.llama2_70b_chat_uncensored-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
This is an GGUF version of jarradh/llama2_70b_chat_uncensored
(Arguable a better name for this model would be something like Llama-2-70B_Wizard-Vicuna-Uncensored-GGUF, but to avoid confusion I'm sticking with jarradh's naming scheme.)
About GGUF
GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp.
The key benefit of GGUF is that it is a extensible, future-proof format which stores more information about the model as metadata. It also includes significantly improved tokenization code, including for the first time full support for special tokens. This should improve performance, especially with models that use new special tokens and implement custom prompt templates.
As of August 25th, here is a list of clients and libraries that are known to support GGUF:
- llama.cpp.
- text-generation-webui, the most widely used web UI. Supports GGUF with GPU acceleration via the ctransformers backend - llama-cpp-python backend should work soon too.
- KoboldCpp, now supports GGUF as of release 1.41! A powerful GGML web UI, with full GPU accel. Especially good for story telling.
- LM Studio, version 0.2.2 and later support GGUF. A fully featured local GUI with GPU acceleration on both Windows (NVidia and AMD), and macOS.
- LoLLMS Web UI, should now work, choose the
c_transformersbackend. A great web UI with many interesting features. Supports CUDA GPU acceleration. - ctransformers, now supports GGUF as of version 0.2.24! A Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
- llama-cpp-python, supports GGUF as of version 0.1.79. A Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
- candle, added GGUF support on August 22nd. Candle is a Rust ML framework with a focus on performance, including GPU support, and ease of use.
The clients and libraries below are expecting to add GGUF support shortly:
Repositories available
- GPTQ models for GPU inference, with multiple quantisation parameter options.
- 2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference
- 2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference, plus fp16 GGUF for requantizing
- Jarrad Hope's unquantised model in fp16 pytorch format, for GPU inference and further conversions
- Jarrad Hope's original unquantised fp32 model in pytorch format, for further conversions
Prompt template: Human-Response
### HUMAN:
{prompt}
### RESPONSE:
- Downloads last month
- 405
2-bit
3-bit
4-bit
5-bit