https://github.com/chakki-works/entitypedia
Entitypedia is an Extended Named Entity Dictionary from Wikipedia.
https://github.com/chakki-works/entitypedia
corpus dictionary machine-learning named-entity-recognition natural-language-processing
Last synced: about 1 year ago
JSON representation
Entitypedia is an Extended Named Entity Dictionary from Wikipedia.
- Host: GitHub
- URL: https://github.com/chakki-works/entitypedia
- Owner: chakki-works
- License: mit
- Created: 2017-11-08T04:09:40.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T23:43:55.000Z (over 3 years ago)
- Last Synced: 2025-04-04T17:02:22.044Z (over 1 year ago)
- Topics: corpus, dictionary, machine-learning, named-entity-recognition, natural-language-processing
- Language: Jupyter Notebook
- Homepage:
- Size: 2.51 MB
- Stars: 13
- Watchers: 5
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Entitypedia
Entitypedia is an [Extended Named Entity](https://sites.google.com/site/extendednamedentity711/) Dictionary from Wikipedia.
## Getting started with the API
In this short tutorial, we introduce Entitypedia API.
### Request
```json
{
"text": "東京",
"type": "prefix"
}
```
### Response
```json
{
"entities": [
{
"entity": "東京都",
"type": "Location.GPE.Province",
"uri": "http://ja.dbpedia.org/resource/東京都"
}
},
{
"entity": "東京テレポート駅",
"type": "Facility.Line.Station",
"uri": "http://ja.dbpedia.org/resource/東京テレポート駅"
}
},
...
]
}
```
Entities would be sorted by their importance.