Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -118,31 +118,31 @@ def processing_data(comments):
|
|
118 |
|
119 |
def main():
|
120 |
global sentiment_model
|
|
|
|
|
|
|
121 |
sentiment_model = create_sentiment_bert()
|
122 |
st.title("댓글 필터링 서비스")
|
123 |
|
124 |
# URL 입력 받기
|
125 |
-
|
126 |
-
|
127 |
url = st.text_input("url을 입력하세요",value=st.query_params['q'])
|
128 |
-
else:
|
129 |
-
url = st.text_input("url을 입력하세요")
|
130 |
-
|
131 |
-
|
132 |
-
if value:
|
133 |
title, content, comments = get_comments(url)
|
|
|
|
|
|
|
|
|
134 |
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
if evaluation_predict(comment) == 1:
|
145 |
-
st.write(comment)
|
146 |
|
147 |
|
148 |
if st.button("스크랩 시작"):
|
|
|
118 |
|
119 |
def main():
|
120 |
global sentiment_model
|
121 |
+
title = ''
|
122 |
+
content = ''
|
123 |
+
comments = []
|
124 |
sentiment_model = create_sentiment_bert()
|
125 |
st.title("댓글 필터링 서비스")
|
126 |
|
127 |
# URL 입력 받기
|
128 |
+
if "q" in st.query_params:
|
129 |
+
value = st.query_params['q']
|
130 |
url = st.text_input("url을 입력하세요",value=st.query_params['q'])
|
|
|
|
|
|
|
|
|
|
|
131 |
title, content, comments = get_comments(url)
|
132 |
+
|
133 |
+
# 결과 표시
|
134 |
+
st.subheader("기사 제목")
|
135 |
+
st.write(title)
|
136 |
|
137 |
+
st.subheader("본문 내용")
|
138 |
+
st.write(content)
|
139 |
+
|
140 |
+
st.subheader("댓글")
|
141 |
+
for comment in comments:
|
142 |
+
if evaluation_predict(comment) == 1:
|
143 |
+
st.write(comment)
|
144 |
+
else:
|
145 |
+
url = st.text_input("url을 입력하세요")
|
|
|
|
|
146 |
|
147 |
|
148 |
if st.button("스크랩 시작"):
|