Transformers How to use sudipto-ducs/InLegalLLaMA-Instruct with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("table-question-answering", model="sudipto-ducs/InLegalLLaMA-Instruct") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("sudipto-ducs/InLegalLLaMA-Instruct")
model = AutoModelForCausalLM.from_pretrained("sudipto-ducs/InLegalLLaMA-Instruct")