A customer support chatbot built on Google's T5 architecture and fine-tuned using the bitext/Bitext-customer-support-llm-chatbot-training-dataset. Designed to understand natural language and provide accurate, efficient responses for a wide range of customer service scenarios. Ideal for automating support, answering queries, and enhancing user experience in customer-facing applications.
1from transformers import T5Tokenizer, T5ForConditionalGeneration
2
3model_name = "sunbv56/T5_Chatbot_CustomerSupport"
4tokenizer = T5Tokenizer.from_pretrained(model_name, legacy=False)
5model = T5ForConditionalGeneration.from_pretrained(model_name)