Spaces:
Sleeping
Sleeping
austen_em
commited on
Commit
·
2f090e4
1
Parent(s):
32c1460
debug
Browse files- app.py +1 -1
- 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(
|
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
|