srivatsavdamaraju commited on
Commit
c827dd2
1 Parent(s): f204998

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ from llama_cpp import Llama
6
  from torchvision.models import vgg16
7
 
8
  # Load your gguf model (LLaMA or similar)
9
- llm = Llama(model_path="path/to/ggml-model-IQ3_M.gguf")
10
 
11
  # Load a pre-trained image recognition model (VGG16 in this case)
12
  vgg_model = vgg16(pretrained=True).eval()
 
6
  from torchvision.models import vgg16
7
 
8
  # Load your gguf model (LLaMA or similar)
9
+ llm = Llama(model_path="ggml-model-IQ3_M.gguf")
10
 
11
  # Load a pre-trained image recognition model (VGG16 in this case)
12
  vgg_model = vgg16(pretrained=True).eval()