Spaces:
Sleeping
Sleeping
austen_em
commited on
Commit
·
1f13222
1
Parent(s):
a7feaf3
import pipeline separately
Browse files
app.py
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
import streamlit as st
|
2 |
import transformers
|
|
|
3 |
|
4 |
-
arg_pipeline =
|
5 |
|
6 |
st.title("Arg Quality Ranker")
|
7 |
st.write("Enter an argument and topic to analyze argument quality:")
|
@@ -11,7 +12,8 @@ user_argument = st.text_input("", key="argument")
|
|
11 |
st.write("Topic:")
|
12 |
user_topic = st.text_input("", key="topic")
|
13 |
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
|
1 |
import streamlit as st
|
2 |
import transformers
|
3 |
+
import pipeline
|
4 |
|
5 |
+
arg_pipeline = pipeline("text-generation", model="austenem/Llama-2-7b-arg-quality")
|
6 |
|
7 |
st.title("Arg Quality Ranker")
|
8 |
st.write("Enter an argument and topic to analyze argument quality:")
|
|
|
12 |
st.write("Topic:")
|
13 |
user_topic = st.text_input("", key="topic")
|
14 |
|
15 |
+
st.write("Score:")
|
16 |
+
if user_argument and user_topic:
|
17 |
+
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: "
|
18 |
+
result = arg_pipeline(user_input)
|
19 |
+
st.write(result[0]["text"])
|