austen_em commited on
Commit
2f090e4
·
1 Parent(s): 32c1460
Files changed (2) hide show
  1. app.py +1 -1
  2. requirements.txt +1 -1
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import streamlit as st
2
  from transformers import pipeline
3
 
4
- arg_pipeline = pipeline(task="text-generation", model="austenem/Llama-2-7b-arg-quality")
5
 
6
  st.title("Arg Quality Ranker")
7
  st.write("Enter an argument and topic to analyze argument quality:")
 
1
  import streamlit as st
2
  from transformers import pipeline
3
 
4
+ arg_pipeline = pipeline("text-generation", model="austenem/Llama-2-7b-arg-quality")
5
 
6
  st.title("Arg Quality Ranker")
7
  st.write("Enter an argument and topic to analyze argument quality:")
requirements.txt CHANGED
@@ -1,3 +1,3 @@
1
- streamlit
2
  transformers
 
3
  torch
 
 
1
  transformers
2
+ streamlit
3
  torch