Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -7,8 +7,8 @@ nltk.download('punkt')
|
|
| 7 |
nltk.download('stopwords')
|
| 8 |
|
| 9 |
#loading models
|
| 10 |
-
clf = pickle.load(open('clf.
|
| 11 |
-
tfidf = pickle.load(open('tfidf.
|
| 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)
|