Edit model card
YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)

Harry Potter Chatbot

This model is a chatbot designed to generate responses in the style of Harry Potter, the protagonist from J.K. Rowling's popular book series and its movie adaptations.

Model Architecture

The harry_potter_chatbot is based on the DialoGPT-medium model, a powerful GPT-based architecture designed for generating conversational responses. It has been fine-tuned on a dataset of Harry Potter's dialogues from movie transcripts.

Usage

You can use this model to generate responses for a given input text using the following code:

from transformers import AutoModelForCausalLM, AutoTokenizer

tokenizer = AutoTokenizer.from_pretrained("diabolic6045/harry_potter_chatbot")
model = AutoModelForCausalLM.from_pretrained("diabolic6045/harry_potter_chatbot")

input_text = "What's your favorite spell?"
input_tokens = tokenizer.encode(input_text, return_tensors='pt')
output_tokens = model.generate(input_tokens, max_length=50, num_return_sequences=1)
output_text = tokenizer.decode(output_tokens[0], skip_special_tokens=True)

print(output_text)

Limitations

This model is specifically designed to generate responses in the style of Harry Potter and may not provide accurate or coherent answers to general knowledge questions. It may also sometimes generate inappropriate responses. Be cautious while using this model in a public setting or for critical applications.

Training Data

The model was fine-tuned on a dataset of Harry Potter's dialogues from movie transcripts. The dataset was collected from publicly available movie scripts and includes conversations and quotes from various Harry Potter films.

Acknowledgments

This model was trained using the Hugging Face Transformers library, and it is based on the DialoGPT-medium model by Microsoft. Special thanks to the Hugging Face team and Microsoft for their contributions to the NLP community.


Feel free to test the model and provide feedback or report any issues. Enjoy chatting with Harry Potter!

Downloads last month
107
Safetensors
Model size
380M params
Tensor type
F32
·
BOOL
·

Space using diabolic6045/harry_potter_chatbot 1