Spaces:
Runtime error
Runtime error
File size: 456 Bytes
4ed18a3 4314e20 4ed18a3 4314e20 98b3c4f 4314e20 98b3c4f 2be0626 98b3c4f 2be0626 4314e20 98b3c4f 4314e20 98b3c4f 4314e20 98b3c4f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import streamlit as st
import pickle
import pandas
# from sentence_transformers import SentenceTransformer, util
st.title('Arxiv Paper Recommendation')
text_input = st.text_input(
"Enter the title of any paper you like 👇",
placeholder = "Paper title of your choice"
)
print(text_input)
# Calculating the similarity between titles
# cosine_scores = util.cos_sim(embeddings, model.encode(paper_you_like))
# print(cosine_scores)
|