nsajadi commited on
Commit
9acd6b5
1 Parent(s): 2419cbf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,7 +3,7 @@ import streamlit as st
3
  import torch
4
 
5
  device = "cuda:0" if torch.cuda.is_available() else "cpu"
6
- pipe = pipeline('chat-response', model='liuhaotian/llava-v1.5-13b', device=device )
7
  text = st.text_area('Enter some text here!')
8
 
9
  if text:
 
3
  import torch
4
 
5
  device = "cuda:0" if torch.cuda.is_available() else "cpu"
6
+ pipe = pipeline('LLaVA', model='liuhaotian/llava-v1.5-13b', device=device )
7
  text = st.text_area('Enter some text here!')
8
 
9
  if text: