Question Answering
Transformers
PyTorch
English
llama
text-generation
chat
text-generation-inference
Instructions to use Joshi-Aryan/llama2_test_wikidata with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Joshi-Aryan/llama2_test_wikidata with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="Joshi-Aryan/llama2_test_wikidata")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Joshi-Aryan/llama2_test_wikidata") model = AutoModelForCausalLM.from_pretrained("Joshi-Aryan/llama2_test_wikidata") - Notebooks
- Google Colab
- Kaggle