removing gguf and adding relevant ggml model file 6368c53
Shravan Motipally commited on
How to use shravanm/CS633_LLaMa2_7B with AllenNLP:
import allennlp_models
from allennlp.predictors.predictor import Predictor
predictor = Predictor.from_path("hf://shravanm/CS633_LLaMa2_7B")
predictor_input = {"passage": "My name is Wolfgang and I live in Berlin", "question": "Where do I live?"}
predictions = predictor.predict_json(predictor_input)