Instructions to use georgesung/llama3_8b_chat_uncensored with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use georgesung/llama3_8b_chat_uncensored with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="georgesung/llama3_8b_chat_uncensored")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("georgesung/llama3_8b_chat_uncensored") model = AutoModelForCausalLM.from_pretrained("georgesung/llama3_8b_chat_uncensored") - llama-cpp-python
How to use georgesung/llama3_8b_chat_uncensored with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="georgesung/llama3_8b_chat_uncensored", filename="llama3_8b_chat_uncensored_q4_0.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use georgesung/llama3_8b_chat_uncensored with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf georgesung/llama3_8b_chat_uncensored:Q4_0 # Run inference directly in the terminal: llama-cli -hf georgesung/llama3_8b_chat_uncensored:Q4_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf georgesung/llama3_8b_chat_uncensored:Q4_0 # Run inference directly in the terminal: llama-cli -hf georgesung/llama3_8b_chat_uncensored:Q4_0
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 georgesung/llama3_8b_chat_uncensored:Q4_0 # Run inference directly in the terminal: ./llama-cli -hf georgesung/llama3_8b_chat_uncensored:Q4_0
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 georgesung/llama3_8b_chat_uncensored:Q4_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf georgesung/llama3_8b_chat_uncensored:Q4_0
Use Docker
docker model run hf.co/georgesung/llama3_8b_chat_uncensored:Q4_0
- LM Studio
- Jan
- vLLM
How to use georgesung/llama3_8b_chat_uncensored with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "georgesung/llama3_8b_chat_uncensored" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "georgesung/llama3_8b_chat_uncensored", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/georgesung/llama3_8b_chat_uncensored:Q4_0
- SGLang
How to use georgesung/llama3_8b_chat_uncensored with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "georgesung/llama3_8b_chat_uncensored" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "georgesung/llama3_8b_chat_uncensored", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "georgesung/llama3_8b_chat_uncensored" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "georgesung/llama3_8b_chat_uncensored", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use georgesung/llama3_8b_chat_uncensored with Ollama:
ollama run hf.co/georgesung/llama3_8b_chat_uncensored:Q4_0
- Unsloth Studio new
How to use georgesung/llama3_8b_chat_uncensored 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 georgesung/llama3_8b_chat_uncensored 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 georgesung/llama3_8b_chat_uncensored to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for georgesung/llama3_8b_chat_uncensored to start chatting
- Docker Model Runner
How to use georgesung/llama3_8b_chat_uncensored with Docker Model Runner:
docker model run hf.co/georgesung/llama3_8b_chat_uncensored:Q4_0
- Lemonade
How to use georgesung/llama3_8b_chat_uncensored with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull georgesung/llama3_8b_chat_uncensored:Q4_0
Run and chat with the model
lemonade run user.llama3_8b_chat_uncensored-Q4_0
List all available models
lemonade list
Overview
Fine-tuned Llama-3 8B with an uncensored/unfiltered Wizard-Vicuna conversation dataset. Used QLoRA for fine-tuning.
The model here includes the fp32 HuggingFace version, plus a quantized 4-bit q4_0 gguf version.
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/llama3_8b_chat_uncensored.yaml
Fine-tuning guide
https://georgesung.github.io/ai/qlora-ift/
Ollama inference
First, install Ollama. Based on instructions here, run the following:
cd $MODEL_DIR_OF_CHOICE
wget https://huggingface.co/georgesung/llama3_8b_chat_uncensored/resolve/main/llama3_8b_chat_uncensored_q4_0.gguf
Create a file called llama3-uncensored.modelfile with the following:
FROM ./llama3_8b_chat_uncensored_q4_0.gguf
TEMPLATE """{{ .System }}
### HUMAN:
{{ .Prompt }}
### RESPONSE:
"""
PARAMETER stop "### HUMAN:"
PARAMETER stop "### RESPONSE:"
Then run:
ollama create llama3-uncensored -f llama3-uncensored.modelfile
ollama run llama3-uncensored
- Downloads last month
- 1,067
4-bit