Gowtham commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Job Parser Model (Qwen Fine-Tuned)
|
| 2 |
|
| 3 |
This repository contains a fine-tuned version of the [Qwen](https://huggingface.co/Qwen) model, specifically adapted to parse job descriptions into structured JSON format.
|
|
@@ -61,4 +64,4 @@ You are a helpful assistant that extracts structured information from job descri
|
|
| 61 |
|
| 62 |
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
|
| 63 |
outputs = model.generate(**inputs, max_new_tokens=1024)
|
| 64 |
-
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
---
|
| 4 |
# Job Parser Model (Qwen Fine-Tuned)
|
| 5 |
|
| 6 |
This repository contains a fine-tuned version of the [Qwen](https://huggingface.co/Qwen) model, specifically adapted to parse job descriptions into structured JSON format.
|
|
|
|
| 64 |
|
| 65 |
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
|
| 66 |
outputs = model.generate(**inputs, max_new_tokens=1024)
|
| 67 |
+
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|