dereju commited on
Commit
420b00a
1 Parent(s): aea3a77

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -65,7 +65,7 @@ This model represents a fine-tuned version of the facebook/bart-large model, spe
65
  job_description = "your job_description here"
66
 
67
  # Concatenate the resume and job description with a delimiter
68
- combined_text = "Resume: " + request_data["resume"] + " Job Description: " + request_data["job_description"]
69
 
70
 
71
  inputs = tokenizer(combined_text, return_tensors="pt", truncation=True, padding="max_length", max_length=1024)
 
65
  job_description = "your job_description here"
66
 
67
  # Concatenate the resume and job description with a delimiter
68
+ combined_text = "Resume: " + ["resume"] + " Job Description: " + ["job_description"]
69
 
70
 
71
  inputs = tokenizer(combined_text, return_tensors="pt", truncation=True, padding="max_length", max_length=1024)