open-r1/OpenR1-Math-220k
Viewer • Updated • 450k • 124k • 786
How to use Ansh989/Chatbot with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="Ansh989/Chatbot") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("Ansh989/Chatbot", device_map="auto")Base model
openai-community/gpt2