panchadip commited on
Commit
fca9c94
·
verified ·
1 Parent(s): 958c744

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ nltk.download('stopwords')
8
 
9
  #loading models
10
  clf = pickle.load(open('clf.pkl','rb'))
11
- model = pickle.load(open('model.pkl','rb'))
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)