austen_em commited on
Commit
8ba447f
·
1 Parent(s): 4618a86

add pipeline back

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -1,15 +1,17 @@
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:")
8
 
 
9
  user_argument = st.text_input("", key="argument")
 
10
  user_topic = st.text_input("", key="topic")
11
 
12
- # if user_argument and user_topic:
13
- # user_input = f"Below is an argument and the topic it relates to. Please rate the quality of the argument on a scale of 0 to 1, where 0 is very poor and 1 is very good. \n ### Argument: {user_argument} \n ### Topic: {user_topic} \n ### Score: "
14
- # result = arg_pipeline(user_input)
15
- # st.write(result[0]["text"])
 
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:")
8
 
9
+ st.write("Argument:")
10
  user_argument = st.text_input("", key="argument")
11
+ st.write("Topic:")
12
  user_topic = st.text_input("", key="topic")
13
 
14
+ if user_argument and user_topic:
15
+ user_input = f"Below is an argument and the topic it relates to. Please rate the quality of the argument on a scale of 0 to 1, where 0 is very poor and 1 is very good. \n ### Argument: {user_argument} \n ### Topic: {user_topic} \n ### Score: "
16
+ result = arg_pipeline(user_input)
17
+ st.write(result[0]["text"])