Instructions to use QuantFactory/llama2_7b_chat_uncensored-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use QuantFactory/llama2_7b_chat_uncensored-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="QuantFactory/llama2_7b_chat_uncensored-GGUF", filename="llama2_7b_chat_uncensored.Q2_K.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use QuantFactory/llama2_7b_chat_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 QuantFactory/llama2_7b_chat_uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf QuantFactory/llama2_7b_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-server -hf QuantFactory/llama2_7b_chat_uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf QuantFactory/llama2_7b_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 QuantFactory/llama2_7b_chat_uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf QuantFactory/llama2_7b_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 QuantFactory/llama2_7b_chat_uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf QuantFactory/llama2_7b_chat_uncensored-GGUF:Q4_K_M
Use Docker
docker model run hf.co/QuantFactory/llama2_7b_chat_uncensored-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use QuantFactory/llama2_7b_chat_uncensored-GGUF with Ollama:
ollama run hf.co/QuantFactory/llama2_7b_chat_uncensored-GGUF:Q4_K_M
- Unsloth Studio new
How to use QuantFactory/llama2_7b_chat_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 QuantFactory/llama2_7b_chat_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 QuantFactory/llama2_7b_chat_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 QuantFactory/llama2_7b_chat_uncensored-GGUF to start chatting
- Docker Model Runner
How to use QuantFactory/llama2_7b_chat_uncensored-GGUF with Docker Model Runner:
docker model run hf.co/QuantFactory/llama2_7b_chat_uncensored-GGUF:Q4_K_M
- Lemonade
How to use QuantFactory/llama2_7b_chat_uncensored-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull QuantFactory/llama2_7b_chat_uncensored-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.llama2_7b_chat_uncensored-GGUF-Q4_K_M
List all available models
lemonade list
output = llm(
"Once upon a time,",
max_tokens=512,
echo=True
)
print(output)QuantFactory/llama2_7b_chat_uncensored-GGUF
This is quantized version of georgesung/llama2_7b_chat_uncensored created using llama.cpp
Original Model Card
Overview
Fine-tuned Llama-2 7B with an uncensored/unfiltered Wizard-Vicuna conversation dataset (originally from ehartford/wizard_vicuna_70k_unfiltered). Used QLoRA for fine-tuning. Trained for one epoch on a 24GB GPU (NVIDIA A10G) instance, took ~19 hours to train.
The version here is the fp16 HuggingFace model.
GGML & GPTQ versions
Thanks to TheBloke, he has created the GGML and GPTQ versions:
- https://huggingface.co/TheBloke/llama2_7b_chat_uncensored-GGML
- https://huggingface.co/TheBloke/llama2_7b_chat_uncensored-GPTQ
Running in Ollama
https://ollama.com/library/llama2-uncensored
Prompt style
The model was trained with the following prompt style:
### HUMAN:
Hello
### RESPONSE:
Hi, how are you?
### HUMAN:
I'm fine.
### RESPONSE:
How can I help you?
...
Training code
Code used to train the model is available here.
To reproduce the results:
git clone https://github.com/georgesung/llm_qlora
cd llm_qlora
pip install -r requirements.txt
python train.py configs/llama2_7b_chat_uncensored.yaml
Fine-tuning guide
https://georgesung.github.io/ai/qlora-ift/
Open LLM Leaderboard Evaluation Results
Detailed results can be found here
| Metric | Value |
|---|---|
| Avg. | 43.39 |
| ARC (25-shot) | 53.58 |
| HellaSwag (10-shot) | 78.66 |
| MMLU (5-shot) | 44.49 |
| TruthfulQA (0-shot) | 41.34 |
| Winogrande (5-shot) | 74.11 |
| GSM8K (5-shot) | 5.84 |
| DROP (3-shot) | 5.69 |
- Downloads last month
- 170
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="QuantFactory/llama2_7b_chat_uncensored-GGUF", filename="", )