manueltonneau
commited on
Commit
•
5f6b326
1
Parent(s):
59ee685
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language: en
|
3 |
+
widget:
|
4 |
+
- text: Still unemployed...
|
5 |
+
datasets:
|
6 |
+
- worldbank/twitter-labor-market
|
7 |
+
---
|
8 |
+
|
9 |
+
# Detection of employment status disclosures on Twitter
|
10 |
+
|
11 |
+
## Model main characteristics:
|
12 |
+
- class: Is Unemployed (1), else (0)
|
13 |
+
- country: US
|
14 |
+
- language: English
|
15 |
+
- architecture: BERT base
|
16 |
+
|
17 |
+
## Model description
|
18 |
+
This model is a version of `DeepPavlov/bert-base-cased-conversational` finetuned by [@manueltonneau](https://huggingface.co/manueltonneau) to recognize English tweets where a user mentions that she is unemployed. It was trained on English tweets from US-based users. The task is framed as a binary classification problem with:
|
19 |
+
- the positive class referring to tweets mentioning that a user is currently unemployed (label=1)
|
20 |
+
- the negative class referring to all other tweets (label=0)
|
21 |
+
|
22 |
+
## Resources
|
23 |
+
|
24 |
+
The dataset of English tweets on which this classifier was trained is open-sourced [here](https://huggingface.co/datasets/worldbank/twitter-labor-market).
|
25 |
+
Details on the performance can be found in our [ACL 2022 paper](https://aclanthology.org/2022.acl-long.453/).
|
26 |
+
|
27 |
+
## Citation
|
28 |
+
|
29 |
+
If you find this model useful, please cite our paper:
|
30 |
+
|
31 |
+
```
|
32 |
+
@inproceedings{tonneau-etal-2022-multilingual,
|
33 |
+
title = "Multilingual Detection of Personal Employment Status on {T}witter",
|
34 |
+
author = "Tonneau, Manuel and
|
35 |
+
Adjodah, Dhaval and
|
36 |
+
Palotti, Joao and
|
37 |
+
Grinberg, Nir and
|
38 |
+
Fraiberger, Samuel",
|
39 |
+
booktitle = "Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
|
40 |
+
month = may,
|
41 |
+
year = "2022",
|
42 |
+
address = "Dublin, Ireland",
|
43 |
+
publisher = "Association for Computational Linguistics",
|
44 |
+
url = "https://aclanthology.org/2022.acl-long.453",
|
45 |
+
doi = "10.18653/v1/2022.acl-long.453",
|
46 |
+
pages = "6564--6587",
|
47 |
+
}
|
48 |
+
```
|