bragour/Palestinian_Truth_English
Viewer • Updated • 29.9k • 23 • 2
How to use bragour/Camel-7b-chat with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("table-question-answering", model="bragour/Camel-7b-chat") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("bragour/Camel-7b-chat")
model = AutoModelForCausalLM.from_pretrained("bragour/Camel-7b-chat")