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="prithivMLmods/Stablelm-3b-abliterated")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("prithivMLmods/Stablelm-3b-abliterated")
model = AutoModelForCausalLM.from_pretrained("prithivMLmods/Stablelm-3b-abliterated", 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]:]))
Quick Links

Stablelm-3b-abliterated

Stablelm-3b-abliterated is a multilingual large language model (LLM) designed for text-based generative AI applications. It is a 3-billion parameter model optimized for dialogue-based interactions, including summarization, retrieval-augmented generation, and creative writing. This model is based on the StableLmForCausalLM architecture and is instruction-tuned to handle a variety of conversational and agentic tasks.

Features

  • Multilingual Capabilities: Supports multiple languages for diverse use cases.
  • Optimized for Dialogue: Trained for natural, context-aware conversation.
  • Instruction-Tuned: Fine-tuned for task-specific instructions and prompt adherence.
  • Lightweight & Efficient: Designed for fast inference with optimized transformer-based architecture.
  • Agentic Retrieval & Summarization: Performs well in knowledge retrieval and text summarization tasks.

Installation & Setup

Ensure you have the latest version of transformers installed:

pip install --upgrade transformers

Usage with Transformers

You can load and use the model via the transformers library:

import torch
from transformers import pipeline

model_id = "stabilityai/Stablelm-3b-abliterated"
pipe = pipeline(
    "text-generation",
    model=model_id,
    torch_dtype=torch.bfloat16,
    device_map="auto",
)

messages = [
    {"role": "system", "content": "You are a scientific assistant who provides precise, well-researched answers."},
    {"role": "user", "content": "Explain quantum entanglement in simple terms."},
]

outputs = pipe(
    messages,
    max_new_tokens=256,
)

print(outputs[0]["generated_text"][-1])

Intended Use

Primary Applications

  • Conversational AI: Virtual assistants, chatbots, and interactive AI systems.
  • Content Generation: Creative writing, storytelling, and ideation.
  • Knowledge Retrieval: Summarization and information extraction from large datasets.
  • Code Assistance: Generating code snippets and debugging suggestions.
  • Multilingual NLP: Applications requiring language understanding across multiple languages.

Limitations

  • Not suitable for real-time decision-making: Should not be used where human safety is critical.
  • May produce incorrect or biased outputs: Like all LLMs, this model is dependent on its training data.
  • Requires Computational Resources: While optimized, it still needs GPUs for efficient inference.
Downloads last month
13
Safetensors
Model size
3B params
Tensor type
F16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for prithivMLmods/Stablelm-3b-abliterated

Quantizations
2 models

Collection including prithivMLmods/Stablelm-3b-abliterated