subhaganesh commited on
Commit
aa605c9
·
verified ·
1 Parent(s): 06b1ad6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,8 +7,8 @@ nltk.download('punkt')
7
  nltk.download('stopwords')
8
 
9
  #loading models
10
- clf = pickle.load(open('clf.sav','rb'))
11
- tfidf = pickle.load(open('tfidf.sav','rb'))
12
 
13
  def clean_resume(resume_text):
14
  clean_text = re.sub('http\S+\s*', ' ', resume_text)
 
7
  nltk.download('stopwords')
8
 
9
  #loading models
10
+ clf = pickle.load(open('clf.pkl','rb'))
11
+ tfidf = pickle.load(open('tfidf.pkl','rb'))
12
 
13
  def clean_resume(resume_text):
14
  clean_text = re.sub('http\S+\s*', ' ', resume_text)