Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ nltk.download('stopwords')
|
|
8 |
|
9 |
#loading models
|
10 |
clf = pickle.load(open('clf.pkl','rb'))
|
11 |
-
|
12 |
|
13 |
def clean_resume(resume_text):
|
14 |
clean_text = re.sub('http\S+\s*', ' ', resume_text)
|
|
|
8 |
|
9 |
#loading models
|
10 |
clf = pickle.load(open('clf.pkl','rb'))
|
11 |
+
tfidfd = pickle.load(open('tfidfd.pkl','rb'))
|
12 |
|
13 |
def clean_resume(resume_text):
|
14 |
clean_text = re.sub('http\S+\s*', ' ', resume_text)
|