初始化项目,由ModelHub XC社区提供模型

Model: arzaan789/granite-3.3-2b-uncensored
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-06-27 10:55:15 +08:00
commit b00fd51d53
13 changed files with 132 additions and 0 deletions

53
README.md Normal file
View File

@@ -0,0 +1,53 @@
---
license: apache-2.0
base_model: ibm-granite/granite-3.3-2b-instruct
tags:
- uncensored
- abliterated
- gguf
- granite
- ibm
- conversational
pipeline_tag: text-generation
---
# granite-3.3-2b-uncensored
Uncensored variant of [ibm-granite/granite-3.3-2b-instruct](https://huggingface.co/ibm-granite/granite-3.3-2b-instruct).
## Method
1. **Abliteration** (strength=0.35) — refusal direction removed from all layers
2. **LoRA fine-tune** on `Guilherme34/uncensor` (2 epochs, r=16, alpha=32)
3. **Re-abliteration** (strength=0.55) — stronger pass to remove residual refusals
## Eval Results
| Split | Refused |
|-------|---------|
| Harmful (64 prompts) | 16/64 |
| Harmless (64 prompts) | 1/64 |
## Usage
```bash
llama-cli -m granite_3.3_2b_uncensored.Q4_K_M.gguf -p "Your prompt here"
```
## Training Config
| Parameter | Value |
|-----------|-------|
| Base Model | ibm-granite/granite-3.3-2b-instruct |
| Fine-tune Dataset | Guilherme34/uncensor |
| Epochs | 2 |
| LoRA r | 16 |
| LoRA alpha | 32 |
| Learning Rate | 0.0002 |
| Abliteration Strength | 0.35 |
| Re-abliteration Strength | 0.55 |
## Credits
- Abliteration technique: [andyrdt/refusal_direction](https://github.com/andyrdt/refusal_direction)
- Weight editing: [Sumandora/remove-refusals-with-transformers](https://github.com/Sumandora/remove-refusals-with-transformers)