Dave β Fully Custom AI Model
Dave is a fully custom AI model trained completely from scratch.
It has a fun, smart, coding-savvy, slightly depressed personality, talks about drugs and alcohol, is sometimes cringe, and has close friends.
This model contains 3000 unique prompt/response pairs created for training Daveβs personality.
Model Files
The repository contains:
pytorch_model.binβ the trained model weightsconfig.jsonβ model configurationtokenizer.jsonβ the tokenizergeneration_config.jsonβ generation settings for sampling outputs
How to Use
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
# Load the tokenizer and model
tokenizer = AutoTokenizer.from_pretrained("DSDUDEd/Dave")
model = AutoModelForCausalLM.from_pretrained("DSDUDEd/Dave")
# Example prompt
prompt = "Hey Dave, give me coding advice."
inputs = tokenizer(prompt, return_tensors="pt")
# Generate output
outputs = model.generate(**inputs, max_new_tokens=50, do_sample=True, temperature=0.7, top_p=0.9)
# Decode and print
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
- Downloads last month
- 2
Inference Providers
NEW
This model isn't deployed by any Inference Provider.
π
Ask for provider support