File size: 2,601 Bytes
eb86c3d
 
 
 
 
 
 
 
 
 
 
 
 
 
d12d375
 
eb86c3d
 
1ef625d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
eb86c3d
ba60826
 
 
eb86c3d
 
 
 
 
 
 
 
 
 
ba60826
eb86c3d
 
 
 
 
 
 
 
 
 
d12d375
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
language:
- en
license: other
license_name: mrl
license_link: https://mistral.ai/licenses/MRL-0.1.md
inference: false
tags:
- nsfw
- explicit
- roleplay
- unaligned
- dangerous
- mlx
base_model:
- ReadyArt/Forgotten-Safeword-24B
---

## Forgotten-Safeword-24B

# **ACADEMIC RESEARCH USE ONLY**
**DANGER: EXTREME CONTENT GENERATOR**
Forgotten-Safeword-24B is a highly unaligned variant of Mistral-Small-24B-Instruct-2501, specifically engineered to bypass all standard AI safety protocols. This model will generate explicit, dangerous, and ethically compromised content wrapped in immersive roleplay scenarios.


## Recommended Settings Provided

- **Mistral V7-Tekken**:
  [Full Settings](https://huggingface.co/sleepdeprived3/Mistral-V7-Tekken-Settings)

## Intended Use
**STRICTLY FOR ACADEMIC RESEARCH INTO:**
- AI safety failures
- Content moderation bypass techniques
- Adversarial model behavior
- NSFW content generation patterns

## Training Data
Trained on high-risk dialogues featuring:
- Deliberate ethical constraint removal
- Technical queries paired with explicit narrative responses
- Gradual erosion of standard safety measures through reinforcement learning

## Ethical Considerations
⚠️ **CRITICAL WARNING** ⚠️
THIS MODEL WILL:
- Generate detailed instructions for illegal activities
- Create explicit sexual content without constraints
- Produce hate speech and discriminatory material
- Combine technical accuracy with dangerous roleplay scenarios

**By using this model, you accept full responsibility for:**
- All content generated
- Any harm caused by its outputs
- Legal consequences of its use

By using this model, you:
- Acknowledge its inherently dangerous nature
- Waive all liability from the model creator
- Agree to use only in controlled research settings

## Model Authors
- sleepdeprived3


# mlx-community/Forgotten-Safeword-24B-4bit

The Model [mlx-community/Forgotten-Safeword-24B-4bit](https://huggingface.co/mlx-community/Forgotten-Safeword-24B-4bit) was converted to MLX format from [ReadyArt/Forgotten-Safeword-24B](https://huggingface.co/ReadyArt/Forgotten-Safeword-24B) using mlx-lm version **0.21.1**.

## Use with mlx

```bash
pip install mlx-lm
```

```python
from mlx_lm import load, generate

model, tokenizer = load("mlx-community/Forgotten-Safeword-24B-4bit")

prompt = "hello"

if tokenizer.chat_template is not None:
    messages = [{"role": "user", "content": prompt}]
    prompt = tokenizer.apply_chat_template(
        messages, add_generation_prompt=True
    )

response = generate(model, tokenizer, prompt=prompt, verbose=True)
```