https://github.com/idf/tagr
Corpus-free auto tagging.
https://github.com/idf/tagr
Last synced: about 1 year ago
JSON representation
Corpus-free auto tagging.
- Host: GitHub
- URL: https://github.com/idf/tagr
- Owner: idf
- License: bsd-3-clause
- Created: 2015-04-23T05:05:25.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-13T11:56:18.000Z (almost 11 years ago)
- Last Synced: 2023-03-22T13:04:10.161Z (about 3 years ago)
- Language: Python
- Homepage:
- Size: 938 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tagr
Corpus-free auto tagging for text in any length. Web: http://tagr.deepreader.io/
# Public API
Post the document text to be analyzed to URL `/` in the json format of:
```json
{"text": "the document text to be analyzed"}
```
The response json format is:
```json
{"keywords": ["phrase1", "phrase2"]}
```
# Design
* AngularJS + Django
* Main logic is calculation rather than data storage.
* [Rapid Automatic Keyword Extraction (RAKE) algorithm](http://www.researchgate.net/publication/227988510_Automatic_Keyword_Extraction_from_Individual_Documents)
* [RAKE Python code](https://github.com/aneesha/RAKE)