Update Readme.md
Browse files
Readme.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
This model extracts **skills** and **location** from job descriptions using T5.
|
| 4 |
|
| 5 |
## 🧠 Model Details
|
| 6 |
-
- Base model: `t5-
|
| 7 |
- Task: Sequence-to-sequence (text-to-text)
|
| 8 |
- Training data: Custom dataset of job descriptions
|
| 9 |
- Trained to output:
|
|
@@ -33,5 +33,5 @@ def extract_skills_and_location(job_description):
|
|
| 33 |
return tokenizer.decode(outputs[0], skip_special_tokens=True)
|
| 34 |
|
| 35 |
# 🔍 Example
|
| 36 |
-
sample = "
|
| 37 |
print(extract_skills_and_location(sample))
|
|
|
|
| 3 |
This model extracts **skills** and **location** from job descriptions using T5.
|
| 4 |
|
| 5 |
## 🧠 Model Details
|
| 6 |
+
- Base model: `t5-base`
|
| 7 |
- Task: Sequence-to-sequence (text-to-text)
|
| 8 |
- Training data: Custom dataset of job descriptions
|
| 9 |
- Trained to output:
|
|
|
|
| 33 |
return tokenizer.decode(outputs[0], skip_special_tokens=True)
|
| 34 |
|
| 35 |
# 🔍 Example
|
| 36 |
+
sample = "Provide description"
|
| 37 |
print(extract_skills_and_location(sample))
|