Transformers How to use rbel/llama2-test-new with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="rbel/llama2-test-new") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("rbel/llama2-test-new")
model = AutoModelForCausalLM.from_pretrained("rbel/llama2-test-new")