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

tokenizer = AutoTokenizer.from_pretrained("Lazycuber/Janemalion-6B")
model = AutoModelForCausalLM.from_pretrained("Lazycuber/Janemalion-6B")
Quick Links

This is a model mix of Pyg V8 + GPT-J-6B-Janeway 60/40

Mainly use for SFW and NSFW roleplay.

It kinda... works?

Downloads last month
905
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Spaces using Lazycuber/Janemalion-6B 33