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

tokenizer = AutoTokenizer.from_pretrained("AlbedoAI/DialoGPT-medium-Albedo")
model = AutoModelForCausalLM.from_pretrained("AlbedoAI/DialoGPT-medium-Albedo")
Quick Links

Albedo Medium DialoGPT Model Casual

This model does not do well with short greetings. But it can handle question and answer types of conversations most of the time.

It is trained on Albedo's dialogues from his story quests Princeps Cretaceus Chapter and Shadows Amidst Snowstorms Event Story

Socials

Downloads last month
7
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support