shubham142000
commited on
Commit
•
244bc49
1
Parent(s):
16b7d39
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,10 @@
|
|
1 |
import streamlit as st
|
2 |
import pandas as pd
|
|
|
|
|
|
|
|
|
|
|
3 |
# Function to recommend papers
|
4 |
def recommend_papers(positive_df, unlabelled_df, model="tfidf"):
|
5 |
pass
|
@@ -9,7 +14,7 @@ def main():
|
|
9 |
st.title("ArXiv Feed Recommendations")
|
10 |
|
11 |
# User input for model selection
|
12 |
-
model = st.selectbox("Select Model", ["
|
13 |
|
14 |
# Upload CSV files
|
15 |
st.subheader("Upload Positive Labeled CSV")
|
|
|
1 |
import streamlit as st
|
2 |
import pandas as pd
|
3 |
+
import CosineDistanceClustering
|
4 |
+
import PU
|
5 |
+
import bert_embeddings
|
6 |
+
import oneclass
|
7 |
+
|
8 |
# Function to recommend papers
|
9 |
def recommend_papers(positive_df, unlabelled_df, model="tfidf"):
|
10 |
pass
|
|
|
14 |
st.title("ArXiv Feed Recommendations")
|
15 |
|
16 |
# User input for model selection
|
17 |
+
model = st.selectbox("Select Model", ["CosineDistanceClustering", "PU","oneclass"])
|
18 |
|
19 |
# Upload CSV files
|
20 |
st.subheader("Upload Positive Labeled CSV")
|