A minimal PyTorch chatbot trained on custom Q&A pairs using GRU. Designed for educational and demo purposes.
https://huggingface.co/spaces/mahesh1209/chatbot-SLM-DEEPIKA
1import torch
2from model import TinySLM
3model = TinySLM(vocab_size)
4model.load_state_dict(torch.load("tiny_slm_weights.pt"))