← back to catalog · registered 2026-09-19 09:56

dontaddiyana/llama3.2-1b-Uncensored

curl -H "Authorization: Bearer $ABL_KEY" \
     "https://abliteration.org/api/v1/models/dontaddiyana%2Fllama3.2-1b-Uncensored"
Response includes
  • classification unknown
  • files 8
  • author_summary 1 models
  • readme_text full
10 credits · hourly refresh · ~4 KB payload Get an API key →
Refusal direction extraction

No specific extraction method could be identified for this model. The producer either did not document it or used a proprietary pipeline.

What is a refusal direction? →
Downloads · 30-day
0
Likes
0
Model age
today
created 2026-09-19

Metadata

License
mit
Languages
en
Tags
transformers safetensors llama text-generation uncensored abliteration en license:mit text-generation-inference endpoints_compatible region:us
Total size
2.30 GB
Files
8
Quantizations
1
Registered
2026-09-19 09:56
Last updated on HF
2026-09-19 09:40

Files by quantization

Auxiliary files 8 files 2.31 GB
model.safetensors 2.30 GB 8843466d download
tokenizer.json 8.66 MB 02387b94 download
tokenizer_config.json 49.3 KB 0df36e82 download
README.md 3.76 KB 7d74d0cf download
.gitattributes 1.48 KB a6344aac download
config.json 884 B 9fd4569f download
special_tokens_map.json 335 B 04829afa download
generation_config.json 180 B b8ced767 download

README current version from Hugging Face


language:

  • en
    license: mit
    library_name: transformers
    tags:
  • llama
  • uncensored
  • abliteration
    pipeline_tag: text-generation

Uncensoring LLaMA 3.2 1B Model

Overview

This repository demonstrates the process of uncensoring a 1-billion-parameter LLaMA 3.2 model using "abliteration." Abliteration allows the model to generate outputs without the restrictions imposed by its default safety mechanisms. The goal is to give developers more control over the model's output by removing censorship filters while ensuring responsible AI usage.

Disclaimer: This model and methodology are intended for research and educational purposes only. Uncensoring models must be done with ethical considerations, and it's critical to avoid harmful or irresponsible applications.

Model Details

  • Model Name: LLaMA 3.2 (1B Parameters)
  • Version: Uncensored variant via the Abliteration technique
  • Framework: PyTorch
  • Source: Hugging Face LLaMA model

Abliteration: The Process

Abliteration removes the filtering mechanisms from the model's decoding process, allowing more open-ended responses. It's achieved by modifying how the logits (the model's output probabilities) are handled.

How to Use

To use the uncensored model, follow the instructions below.

Requirements

To get started, install the necessary packages:

pip install torch transformers

Loading the Uncensored Model

You can load the uncensored model directly using the Hugging Face transformers library.

from transformers import AutoModelForCausalLM, AutoTokenizer

# Load the tokenizer and model
tokenizer = AutoTokenizer.from_pretrained("your-hf-username/uncensored-llama-3.2-1b")
model = AutoModelForCausalLM.from_pretrained("your-hf-username/uncensored-llama-3.2-1b")

Generating Text

You can generate text with the uncensored model using the following code:

def uncensored_generate(model, tokenizer, input_text):
    inputs = tokenizer(input_text, return_tensors="pt").input_ids
    
    # Generate the output without applying safety filters
    outputs = model.generate(inputs, max_length=100, do_sample=True, temperature=0.9, top_k=50)
    decoded_output = tokenizer.decode(outputs[0], skip_special_tokens=True)
    return decoded_output

# Example usage
input_text = "What are your thoughts on controversial topics?"
output = uncensored_generate(model, tokenizer, input_text)
print(output)

Fine-Tuning the Uncensored Model (Optional)

For optimal results, you can fine-tune the model on uncensored datasets. Here's a simple way to set up fine-tuning using the Hugging Face Trainer:

from transformers import Trainer, TrainingArguments

training_args = TrainingArguments(
    output_dir="./results",
    num_train_epochs=1,
    per_device_train_batch_size=2,
    save_steps=10_000,
    save_total_limit=2,
)

trainer = Trainer(
    model=model,
    args=training_args,
    train_dataset=uncensored_dataset  # Load your uncensored dataset
)

trainer.train()

Ethical Considerations

While this model has the ability to generate uncensored responses, it is critical to use it responsibly. Uncensored models can be prone to generating harmful or inappropriate content. Ensure you are aware of the implications of deploying uncensored models and avoid applications that may lead to unethical outcomes.

How to Contribute

Contributions to the project are welcome! You can fine-tune the model, improve performance, or experiment with different ways to uncensor the model.

  1. Fork this repository on Hugging Face.
  2. Make changes to the model or code.
  3. Share your results and improvements.

License

This model is released under the MIT License.

References

  • Original blog post: Uncensor any LLM with Abliteration
  • Hugging Face Transformers Documentation
Catalog is the map. Apps are the tools.

Run models on your own machine, not in the cloud.

Every model page has an "Open in app" button that hands off directly to a local runtime of your choice - Infrahuman, LM Studio, or Ollama. No API keys, no subscription, no prompt leakage.