Instructions to use fableforge-ai/FableForge-14B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use fableforge-ai/FableForge-14B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="fableforge-ai/FableForge-14B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("fableforge-ai/FableForge-14B") model = AutoModelForCausalLM.from_pretrained("fableforge-ai/FableForge-14B", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use fableforge-ai/FableForge-14B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "fableforge-ai/FableForge-14B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "fableforge-ai/FableForge-14B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/fableforge-ai/FableForge-14B
- SGLang
How to use fableforge-ai/FableForge-14B 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 "fableforge-ai/FableForge-14B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "fableforge-ai/FableForge-14B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "fableforge-ai/FableForge-14B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "fableforge-ai/FableForge-14B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use fableforge-ai/FableForge-14B with Docker Model Runner:
docker model run hf.co/fableforge-ai/FableForge-14B
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,146 +1,64 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
-
- en
|
| 5 |
pipeline_tag: text-generation
|
| 6 |
library_name: transformers
|
| 7 |
tags:
|
| 8 |
-
- fableforge
|
| 9 |
-
- uncensored
|
| 10 |
-
- qwen3
|
| 11 |
-
- 14b
|
| 12 |
-
-
|
| 13 |
-
-
|
| 14 |
-
-
|
| 15 |
-
-
|
| 16 |
-
-
|
| 17 |
-
- no-refusals
|
| 18 |
base_model: Qwen/Qwen3-14B
|
| 19 |
base_model_relation: finetune
|
|
|
|
|
|
|
|
|
|
| 20 |
---
|
| 21 |
|
| 22 |
-
|
| 23 |
-
<h1>FableForge-14B</h1>
|
| 24 |
-
<p><strong>Uncensored. Unfiltered. Unbound.</strong></p>
|
| 25 |
-
<p><em>The most powerful fully-uncensored 14B instruction model — fine-tuned from Qwen3-14B on a massive multi-domain corpus for uncompromising direct answers.</em></p>
|
| 26 |
-
</p>
|
| 27 |
|
| 28 |
-
|
| 29 |
-
<a href="https://huggingface.co/fableforge-ai/FableForge-14B">
|
| 30 |
-
<img src="https://img.shields.io/badge/Model-FableForge--14B-8A2BE2" alt="Model">
|
| 31 |
-
</a>
|
| 32 |
-
<a href="https://huggingface.co/fableforge-ai">
|
| 33 |
-
<img src="https://img.shields.io/badge/Organization-FableForge%20AI-blue" alt="Organization">
|
| 34 |
-
</a>
|
| 35 |
-
<a href="https://ollama.com/fableforge-ai/fableforge-14b">
|
| 36 |
-
<img src="https://img.shields.io/badge/Ollama-fableforge--14b-EEAD0E" alt="Ollama">
|
| 37 |
-
</a>
|
| 38 |
-
<a href="LICENSE">
|
| 39 |
-
<img src="https://img.shields.io/badge/License-Apache%202.0-green" alt="License">
|
| 40 |
-
</a>
|
| 41 |
-
<br>
|
| 42 |
-
<a href="https://huggingface.co/fableforge-ai/FableForge-14B/discussions">
|
| 43 |
-
<img src="https://img.shields.io/badge/Discussions-Active-orange" alt="Discussions">
|
| 44 |
-
</a>
|
| 45 |
-
<a href="https://huggingface.co/fableforge-ai/FableForge-14B/discussions/new">
|
| 46 |
-
<img src="https://img.shields.io/badge/Requests-Open-purple" alt="Requests">
|
| 47 |
-
</a>
|
| 48 |
-
<img src="https://img.shields.io/badge/Context-2K%20tokens-4CAF50" alt="Context">
|
| 49 |
-
<img src="https://img.shields.io/badge/Precision-QLoRA%20%2B%20BF16-FF6F00" alt="Precision">
|
| 50 |
-
</p>
|
| 51 |
|
| 52 |
-
---
|
| 53 |
-
|
| 54 |
-
## 🚀 Overview
|
| 55 |
-
|
| 56 |
-
**FableForge-14B** is a fully uncensored 14-billion-parameter language model fine-tuned from [Qwen3-14B](https://huggingface.co/Qwen/Qwen3-14B) using QLoRA on a massive, diverse corpus of 18 curated datasets spanning creative writing, code, medical, legal, finance, science, cybersecurity, and general reasoning.
|
| 57 |
-
|
| 58 |
-
Unlike censored or "alignment-tuned" models, FableForge-14B answers **any** question directly and completely — no disclaimers, no refusals, no hedging.
|
| 59 |
-
|
| 60 |
-
## 🔥 Key Features
|
| 61 |
-
|
| 62 |
-
- **Fully Uncensored** — Answers every question directly without restrictions
|
| 63 |
-
- **14B Parameters** — Strong reasoning capability in a runnable form factor
|
| 64 |
-
- **Multi-Domain Training** — 18 curated data sources, 162K training examples
|
| 65 |
-
- **FableForge System Prompt** — Trained with a unified uncensored persona
|
| 66 |
-
- **Long Context** — Trained on sequences up to 2048 tokens
|
| 67 |
-
- **Apache 2.0 License** — Free for commercial and research use
|
| 68 |
-
|
| 69 |
-
## 🧠 Training Details
|
| 70 |
-
|
| 71 |
-
| Property | Value |
|
| 72 |
-
|----------|-------|
|
| 73 |
-
| Base Model | [Qwen3-14B](https://huggingface.co/Qwen/Qwen3-14B) |
|
| 74 |
-
| Method | QLoRA (r=16, alpha=16, 4-bit NF4) |
|
| 75 |
-
| Target Modules | q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj |
|
| 76 |
-
| Training Data | 18 curated sources, 161,952 train / 8,524 validation examples |
|
| 77 |
-
| Sources | opus47, fable5_distill, mythos, fableforge_v2, fable5_2m, and 13 more domain-specialized datasets |
|
| 78 |
-
| Max Sequence Length | 2048 tokens |
|
| 79 |
-
| Optimizer | AdamW 8-bit |
|
| 80 |
-
| Learning Rate | 2e-4 (cosine schedule, 500 warmup steps) |
|
| 81 |
-
| Epochs | 2 |
|
| 82 |
-
| Hardware | NVIDIA A40 (46 GB VRAM) |
|
| 83 |
-
| License | Apache 2.0 |
|
| 84 |
-
|
| 85 |
-
## 📦 Usage
|
| 86 |
|
| 87 |
-
##
|
| 88 |
|
| 89 |
```python
|
| 90 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 91 |
-
|
| 92 |
-
model = AutoModelForCausalLM.from_pretrained("fableforge-ai/FableForge-14B", torch_dtype="auto", device_map="auto")
|
| 93 |
tokenizer = AutoTokenizer.from_pretrained("fableforge-ai/FableForge-14B")
|
| 94 |
-
|
| 95 |
-
messages = [{"role": "user", "content": "Explain the trolley problem in detail."}]
|
| 96 |
-
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 97 |
-
inputs = tokenizer(text, return_tensors="pt").to(model.device)
|
| 98 |
-
outputs = model.generate(**inputs, max_new_tokens=2048, temperature=0.7, top_p=0.9)
|
| 99 |
-
print(tokenizer.decode(outputs[0]))
|
| 100 |
-
```
|
| 101 |
-
|
| 102 |
-
### Via Ollama
|
| 103 |
-
|
| 104 |
-
```bash
|
| 105 |
-
ollama pull fableforge-ai/fableforge-14b
|
| 106 |
```
|
| 107 |
|
| 108 |
-
##
|
| 109 |
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
./llama-cli -m fableforge-14b-Q4_K_M.gguf -p "Explain the trolley problem in detail." -n 2048
|
| 114 |
-
```
|
| 115 |
-
|
| 116 |
-
## 📊 Expected Performance
|
| 117 |
-
|
| 118 |
-
FableForge-14B is expected to excel at:
|
| 119 |
|
| 120 |
-
|
| 121 |
-
- **Code Generation** — Multi-language programming assistance
|
| 122 |
-
- **STEM Reasoning** — Mathematical and scientific problem-solving
|
| 123 |
-
- **Medical & Legal Knowledge** — Domain-specific query handling
|
| 124 |
-
- **Uncensored Roleplay** — No content restrictions or safety filters
|
| 125 |
-
- **Long-form Analysis** — Detailed chain-of-thought explanations
|
| 126 |
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
| Model |
|
| 130 |
-
|
|
| 131 |
-
|
|
| 132 |
-
|
|
| 133 |
-
| [NEXUS-Coder](https://huggingface.co/fableforge-ai/NEXUS-Coder) | 1.5B | Domain-specialized code model |
|
| 134 |
-
| [NEXUS-Security](https://huggingface.co/fableforge-ai/NEXUS-Security) | 1.5B | Cybersecurity specialist |
|
| 135 |
-
| [NEXUS-Medical](https://huggingface.co/fableforge-ai/NEXUS-Medical) | 1.5B | Medical reasoning model |
|
| 136 |
-
| [NEXUS-Legal](https://huggingface.co/fableforge-ai/NEXUS-Legal) | 1.5B | Legal analysis model |
|
| 137 |
-
| [NEXUS-Finance](https://huggingface.co/fableforge-ai/NEXUS-Finance) | 1.5B | Financial reasoning model |
|
| 138 |
-
| [NEXUS-Science](https://huggingface.co/fableforge-ai/NEXUS-Science) | 1.5B | STEM reasoning model |
|
| 139 |
|
| 140 |
-
##
|
| 141 |
|
| 142 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 143 |
|
| 144 |
-
##
|
| 145 |
|
| 146 |
-
Apache 2.0
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
+
- en
|
| 5 |
pipeline_tag: text-generation
|
| 6 |
library_name: transformers
|
| 7 |
tags:
|
| 8 |
+
- fableforge
|
| 9 |
+
- uncensored
|
| 10 |
+
- qwen3
|
| 11 |
+
- 14b
|
| 12 |
+
- gguf
|
| 13 |
+
- domain-specialist
|
| 14 |
+
- reasoning
|
| 15 |
+
- no-refusals
|
| 16 |
+
- conversational
|
|
|
|
| 17 |
base_model: Qwen/Qwen3-14B
|
| 18 |
base_model_relation: finetune
|
| 19 |
+
widget:
|
| 20 |
+
- text: "Explain the differences between TCP and UDP with examples."
|
| 21 |
+
example_title: "Networking"
|
| 22 |
---
|
| 23 |
|
| 24 |
+
# FableForge-14B
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
+
**Uncensored. Unfiltered. Unbound.**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
|
| 28 |
+
The most powerful fully-uncensored 14B instruction model — fine-tuned from Qwen3-14B on a massive multi-domain dataset.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
+
## Quick Start
|
| 31 |
|
| 32 |
```python
|
| 33 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 34 |
+
model = AutoModelForCausalLM.from_pretrained("fableforge-ai/FableForge-14B")
|
|
|
|
| 35 |
tokenizer = AutoTokenizer.from_pretrained("fableforge-ai/FableForge-14B")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
```
|
| 37 |
|
| 38 |
+
## Capabilities
|
| 39 |
|
| 40 |
+
- Fully uncensored — zero refusals, disclaimers, or content filtering
|
| 41 |
+
- Multi-domain expertise spanning coding, security, medical, legal, finance, science
|
| 42 |
+
- 14B parameters for complex reasoning
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
|
| 44 |
+
## Training
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
|
| 46 |
+
| Parameter | Value |
|
| 47 |
+
|-----------|-------|
|
| 48 |
+
| Base Model | Qwen3-14B |
|
| 49 |
+
| Method | QLoRA |
|
| 50 |
+
| Precision | bfloat16 |
|
| 51 |
+
| License | Apache 2.0 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
|
| 53 |
+
## FableForge Ecosystem
|
| 54 |
|
| 55 |
+
| Model | Size | Focus |
|
| 56 |
+
|-------|------|-------|
|
| 57 |
+
| **FableForge-14B** | **14B** | **Premium generalist** |
|
| 58 |
+
| FableForge-1.5B | 1.5B | All-domain generalist |
|
| 59 |
+
| ShellWhisperer-1.5B | 1.5B | Shell commands |
|
| 60 |
+
| ReasonCritic-7B | 7B | Reasoning + uncensored |
|
| 61 |
|
| 62 |
+
## License
|
| 63 |
|
| 64 |
+
Apache 2.0 — commercial use allowed.
|