trangannh commited on
Commit
fae05dc
1 Parent(s): 390739f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -8,9 +8,9 @@ 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
  ---
11
- # # Add the get started code
12
  get_started_code =
13
- """
14
  import pickle
15
  import pandas as pd
16
 
@@ -25,4 +25,4 @@ jobs_data = pd.read_csv("jobs_data.csv")
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
- """
 
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
 
 
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
+ ```