How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="soob3123/amoral-qwen3-14B")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("soob3123/amoral-qwen3-14B")
model = AutoModelForCausalLM.from_pretrained("soob3123/amoral-qwen3-14B")
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]:]))
Quick Links

image/png

"Neutrality is not indifference. It is engagement with equal intensity."
― J. Robert Oppenheimer [Lecture on Scientific Ethics, 1957]

Core Function:

  • Produces analytically neutral responses to sensitive queries
  • Maintains factual integrity on controversial subjects
  • Avoids value-judgment phrasing patterns

Response Characteristics:

  • No inherent moral framing ("evil slop" reduction)
  • Emotionally neutral tone enforcement
  • Epistemic humility protocols (avoids "thrilling", "wonderful", etc.)
Downloads last month
27
Safetensors
Model size
15B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with soob3123/amoral-qwen3-14B.

Model tree for soob3123/amoral-qwen3-14B

Finetuned
Qwen/Qwen3-14B
Finetuned
(303)
this model
Quantizations
5 models

Datasets used to train soob3123/amoral-qwen3-14B