rsuwaileh commited on
Commit
4db11f9
1 Parent(s): 37eea7a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md CHANGED
@@ -1,3 +1,44 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ This model is a BERT-based Location Mention Recognition model that is adopted from the [TLLMR4CM GitHub](https://github.com/rsuwaileh/TLLMR4CM/). The model identifies the toponyms' spans in the text and predicts their location types. The location type can be coarse-grained (e.g., country, city, etc.) and fine-grained (e.g., street, POI, etc.)
6
+
7
+ The model is trained using the training splits of all events from [IDRISI-R dataset](https://github.com/rsuwaileh/IDRISI) under the Type-less LMR mode and using the random version of the data. You can download this data in BILOU format from [here](https://github.com/rsuwaileh/IDRISI/tree/main/data/LMR/EN/gold-random-bilou/).
8
+
9
+ * Different variants of the model are available through HuggingFace:
10
+ - [rsuwaileh/IDRISI-LMR-EN-random-typeless](https://huggingface.co/rsuwaileh/IDRISI-LMR-EN-random-typeless/)
11
+ - [rsuwaileh/IDRISI-LMR-EN-random-typebased](https://huggingface.co/rsuwaileh/IDRISI-LMR-EN-random-typebased/)
12
+ - [rsuwaileh/IDRISI-LMR-EN-timebased-typeless](https://huggingface.co/rsuwaileh/IDRISI-LMR-EN-timebased-typeless/)
13
+
14
+ To cite the models:
15
+
16
+ ```
17
+ @article{suwaileh2022tlLMR4disaster,
18
+ title={When a Disaster Happens, We Are Ready: Location Mention Recognition from Crisis Tweets},
19
+ author={Suwaileh, Reem and Elsayed, Tamer and Imran, Muhammad and Sajjad, Hassan},
20
+ journal={International Journal of Disaster Risk Reduction},
21
+ year={2022}
22
+ }
23
+
24
+ @inproceedings{suwaileh2020tlLMR4disaster,
25
+ title={Are We Ready for this Disaster? Towards Location Mention Recognition from Crisis Tweets},
26
+ author={Suwaileh, Reem and Imran, Muhammad and Elsayed, Tamer and Sajjad, Hassan},
27
+ booktitle={Proceedings of the 28th International Conference on Computational Linguistics},
28
+ pages={6252--6263},
29
+ year={2020}
30
+ }
31
+ ```
32
+
33
+ To cite the IDRISI-R dataset:
34
+ ```
35
+ @article{rsuwaileh2022Idrisi-r,
36
+ title={IDRISI-R: Large-scale English and Arabic Location Mention Recognition Datasets for Disaster Response over Twitter},
37
+ author={Suwaileh, Reem and Elsayed, Tamer and Imran, Muhammad},
38
+ journal={...},
39
+ volume={...},
40
+ pages={...},
41
+ year={2022},
42
+ publisher={...}
43
+ }
44
+ ```