Spaces:
Runtime error
Runtime error
Shunfeng Zheng
commited on
Delete README.md
Browse files
README.md
DELETED
@@ -1,67 +0,0 @@
|
|
1 |
-
# GeospaCy
|
2 |
-
|
3 |
-
|
4 |
-
**GeospaCy** is a web application built in Python language used for extracting spatial relation entities (spatRE) from text and Geo-referenced them.
|
5 |
-
|
6 |
-
## Installation
|
7 |
-
There are few Python packages that are needed to install for running the application
|
8 |
-
|
9 |
-
1. Install spacy for natural language processing (NLP) tasks
|
10 |
-
```sh
|
11 |
-
pip install spacy
|
12 |
-
```
|
13 |
-
2. Install gensim library for data preprocessing
|
14 |
-
```sh
|
15 |
-
pip install gensim
|
16 |
-
```
|
17 |
-
3. Install streamit library for running web application
|
18 |
-
```sh
|
19 |
-
pip install streamlit
|
20 |
-
```
|
21 |
-
4. Install spacy-streamlit for display named entities (spatRE) in the text
|
22 |
-
```sh
|
23 |
-
pip install spacy-streamlit
|
24 |
-
```
|
25 |
-
|
26 |
-
5. Install GeoPandas
|
27 |
-
```sh
|
28 |
-
pip install geopandas
|
29 |
-
```
|
30 |
-
6. Install folium library for manipulating your data in Python, then visualize it in a Leaflet map via folium.
|
31 |
-
|
32 |
-
```sh
|
33 |
-
pip install folium
|
34 |
-
```
|
35 |
-
7. Install streamlit-folium library to visualize Leaflet map in streamlit web application
|
36 |
-
|
37 |
-
```sh
|
38 |
-
pip install streamlit-folium
|
39 |
-
```
|
40 |
-
|
41 |
-
## How to run the web application
|
42 |
-
|
43 |
-
```sh
|
44 |
-
streamlit run 1_🏠_Parser.py
|
45 |
-
```
|
46 |
-
|
47 |
-
## [Cite this work](https://github.com/mehtab-alam/GeospaCy/)
|
48 |
-
|
49 |
-
```latex
|
50 |
-
@inproceedings{mehtab-alam-etal-2024-geospacy,
|
51 |
-
title = "GeospaCy: A tool for extraction and geographical referencing of spatial expressions in textual data",
|
52 |
-
author = "Mehtab Alam, Syed and
|
53 |
-
Arsevska, Elena and
|
54 |
-
Roche, Mathieu and
|
55 |
-
Teisseire, Maguelonne",
|
56 |
-
editor = "Aletras, Nikolaos and
|
57 |
-
De Clercq, Orphee",
|
58 |
-
booktitle = "Proceedings of the 18th Conference of the European Chapter of the Association for Computational Linguistics: System Demonstrations",
|
59 |
-
month = mar,
|
60 |
-
year = "2024",
|
61 |
-
address = "St. Julians, Malta",
|
62 |
-
publisher = "Association for Computational Linguistics",
|
63 |
-
url = "https://aclanthology.org/2024.eacl-demo.13",
|
64 |
-
pages = "115--126",
|
65 |
-
}
|
66 |
-
```
|
67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|