Update app.py
Browse files
app.py
CHANGED
@@ -63,13 +63,7 @@ with st.sidebar:
|
|
63 |
|
64 |
|
65 |
|
66 |
-
|
67 |
-
import pandas as pd
|
68 |
-
from pypdf import PdfReader
|
69 |
-
from transformers import pipeline
|
70 |
-
from sklearn.feature_extraction.text import TfidfVectorizer
|
71 |
-
from sklearn.metrics.pairwise import cosine_similarity
|
72 |
-
import plotly.express as px
|
73 |
|
74 |
txt = st.text_area("Job description", key="text 1")
|
75 |
job = pd.Series(txt, name="Text")
|
|
|
63 |
|
64 |
|
65 |
|
66 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
|
68 |
txt = st.text_area("Job description", key="text 1")
|
69 |
job = pd.Series(txt, name="Text")
|