Update app.py
Browse files
app.py
CHANGED
@@ -286,9 +286,9 @@ if st.button('Check for Infringement'):
|
|
286 |
st.markdown(f"#### Cosine Score: {cosine_score:.4f}")
|
287 |
col1, col2 = st.columns(2)
|
288 |
with col1:
|
289 |
-
st.markdown(f"**Main Text:** {imporve_text(main_text)}")
|
290 |
with col2:
|
291 |
-
st.markdown(f"**Similar Text:** {imporve_text(similar_text)}")
|
292 |
|
293 |
st.markdown("---")
|
294 |
|
|
|
286 |
st.markdown(f"#### Cosine Score: {cosine_score:.4f}")
|
287 |
col1, col2 = st.columns(2)
|
288 |
with col1:
|
289 |
+
st.markdown(f"**Main Text:** \n{imporve_text(main_text)}")
|
290 |
with col2:
|
291 |
+
st.markdown(f"**Similar Text:** \n{imporve_text(similar_text)}")
|
292 |
|
293 |
st.markdown("---")
|
294 |
|