VivekMalipatel23
commited on
Commit
•
78d147a
1
Parent(s):
92ae1cd
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,23 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
license: mit
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
tags:
|
5 |
+
- text-classification
|
6 |
+
- zero-shot-classification
|
7 |
+
pipeline_tag: zero-shot-classification
|
8 |
+
library_name: transformers
|
9 |
license: mit
|
10 |
+
base_model: MoritzLaurer/deberta-v3-xsmall-zeroshot-v1.1-all-33
|
11 |
---
|
12 |
+
|
13 |
+
Model Finetuned with custom Emails data for tracking job applications from email mailbox.
|
14 |
+
|
15 |
+
Hypothesis used for NLI Inference,
|
16 |
+
```python
|
17 |
+
{
|
18 |
+
"Applied": "The email is related to a job application that the recipient has submitted, for instance, a confirmation email received after applying for a job.",
|
19 |
+
"Rejected": "The email is related to a rejection from a job application, indicating that the recipient was not selected for the job role or that the application will not be moving forward.",
|
20 |
+
"Irrelevant": "The email is not related to job applications, such as applying, being rejected, or being accepted for a job role. It does not pertain to the status or process of job applications.",
|
21 |
+
"Accepted": "The email is related to the acceptance of a job application, indicating that the recipient has not just applied but been selected or accepted for a job role following an application."
|
22 |
+
}
|
23 |
+
```
|