Update README.md
Browse files
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: " +
|
| 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)
|