Instructions to use babycommando/babydolphin-8b-llama3-uncensored with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use babycommando/babydolphin-8b-llama3-uncensored with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("babycommando/babydolphin-8b-llama3-uncensored", dtype="auto") - llama-cpp-python
How to use babycommando/babydolphin-8b-llama3-uncensored with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="babycommando/babydolphin-8b-llama3-uncensored", filename="babydolphin-8b-llama3.F16.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use babycommando/babydolphin-8b-llama3-uncensored with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf babycommando/babydolphin-8b-llama3-uncensored:Q4_K_M # Run inference directly in the terminal: llama-cli -hf babycommando/babydolphin-8b-llama3-uncensored:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf babycommando/babydolphin-8b-llama3-uncensored:Q4_K_M # Run inference directly in the terminal: llama-cli -hf babycommando/babydolphin-8b-llama3-uncensored: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 babycommando/babydolphin-8b-llama3-uncensored:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf babycommando/babydolphin-8b-llama3-uncensored: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 babycommando/babydolphin-8b-llama3-uncensored:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf babycommando/babydolphin-8b-llama3-uncensored:Q4_K_M
Use Docker
docker model run hf.co/babycommando/babydolphin-8b-llama3-uncensored:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use babycommando/babydolphin-8b-llama3-uncensored with Ollama:
ollama run hf.co/babycommando/babydolphin-8b-llama3-uncensored:Q4_K_M
- Unsloth Studio
How to use babycommando/babydolphin-8b-llama3-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 babycommando/babydolphin-8b-llama3-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 babycommando/babydolphin-8b-llama3-uncensored to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for babycommando/babydolphin-8b-llama3-uncensored to start chatting
- Atomic Chat new
- Docker Model Runner
How to use babycommando/babydolphin-8b-llama3-uncensored with Docker Model Runner:
docker model run hf.co/babycommando/babydolphin-8b-llama3-uncensored:Q4_K_M
- Lemonade
How to use babycommando/babydolphin-8b-llama3-uncensored with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull babycommando/babydolphin-8b-llama3-uncensored:Q4_K_M
Run and chat with the model
lemonade run user.babydolphin-8b-llama3-uncensored-Q4_K_M
List all available models
lemonade list
BabyDolphin-8B-LLaMA3-Uncensored
- Developed by: babycommando
- License: apache-2.0
- Finetuned from model : unsloth/llama-3-8b-bnb-4bit
This model, babydolphin-8b-llama3-uncensored, is an 8-billion parameter subset of the larger LLaMA (Large Language Model by Meta) and has been fine-tuned on the cognitivecomputations/dolphin dataset specifically for the FLAN1M-Alpaca-Uncensored tasks. It incorporates cutting-edge transformer architectures optimized for a balance between performance and efficiency.
Model Description
babydolphin-8b-llama3-uncensored is designed to deliver powerful language understanding and generation capabilities while ensuring compliance with non-censorship standards for diverse application scenarios. This version is ideal for applications requiring high-quality text generation where content restrictions are minimal.
Technical Details
- Base Model: LLaMA3
- Parameters: 8 billion
- Fine-tuning Dataset: cognitivecomputations/dolphin FLAN1M-Alpaca-Uncensored
Quantization and Configuration
This model is available in multiple configurations to best suit different deployment needs:
- f16: Fastest conversion, retains 100% accuracy but is slow and memory-intensive.
- q4_k_m: Recommended for general use, balancing between speed and efficiency.
- q3_k_m: Good for environments where model size and speed are more critical than detailed accuracy.
- q3_k_s: Maximizes speed and minimizes model size, suitable for very resource-constrained environments.
Intended Use
This model is intended for researchers and developers needing advanced natural language processing capabilities without censorship restrictions. It is particularly well-suited for generating text in scenarios where nuanced, unrestricted content generation is crucial.
How to Use
For Ollama, check their docs for running a GGUF model on Ollama
Here is how to load and use the model in your projects using Hugging Face Transformers:
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "babycommando/babydolphin-8b-llama3-uncensored"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)
inputs = tokenizer("Hello, world!", return_tensors="pt")
outputs = model.generate(inputs["input_ids"])
print(tokenizer.decode(outputs[0]))
Training Loss Over 60 Epochs
-
This llama model was trained 2x faster with Unsloth and Huggingface's TRL library.
Usage
Copy this markdown content into your model's page on the Hugging Face Model Hub to provide users with a clear, informative description of what your model can do and how it can be used. Adjust the model_name variable in the Python code snippet to reflect the actual path to your model on Hugging Face for ease of use by others.
- Downloads last month
- 319
3-bit
4-bit
8-bit
16-bit
Model tree for babycommando/babydolphin-8b-llama3-uncensored
Base model
meta-llama/Meta-Llama-3-8B

