Update README.md
Browse files
README.md
CHANGED
@@ -8,3 +8,21 @@ model_description: "This is a recommendation model for job applicants based on t
|
|
8 |
library_name: sklearn
|
9 |
limitations: "This model is not ready to be used in production."
|
10 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
library_name: sklearn
|
9 |
limitations: "This model is not ready to be used in production."
|
10 |
---
|
11 |
+
# # Add the get started code
|
12 |
+
get_started_code =
|
13 |
+
"""
|
14 |
+
import pickle
|
15 |
+
import pandas as pd
|
16 |
+
|
17 |
+
with open('recommendation_model.pkl', 'rb') as file:
|
18 |
+
tfidf_vectorizer_skills, tfidf_vectorizer_majors, companies_skills_vec, companies_majors_vec = pickle.load(file)
|
19 |
+
|
20 |
+
input_hard_skills = "Python, Java, Finance, Excel"
|
21 |
+
input_soft_skills = "Communication, Teamwork"
|
22 |
+
input_major = ""
|
23 |
+
jobs_data = pd.read_csv("jobs_data.csv")
|
24 |
+
|
25 |
+
recommended_jobs = recommend_jobs_for_input_skills(input_hard_skills, input_soft_skills, input_major, jobs_data, 'recommendation_model.pkl')
|
26 |
+
print("Recommended Jobs based on input skills and major:")
|
27 |
+
print(recommended_jobs)
|
28 |
+
"""
|