Giter VIP home page Giter VIP logo

nlp's Introduction

nlp

NLP (Natrual Language Processing) API via the pke (Python Keyphrase Extraction) engine to extract keywords and analyse topics from text. Salience

This library ships with supervised models trained on the SemEval-2010 dataset.

made-with-python

Authentication & URL

  • Main production API URL sits at https://nlp-vqyb5tu4fq-ew.a.run.app Note - This will likely change.
  • The base URL of the application is /api/v1 and must be prepended to every request.
  • A token must be passed for request to this application, it must be set as a header with the key of X-Auth-Token.

Endpoints

Below is a list of endpoints the API serves.

Ping

➡️ GET /api/v1/

Heartbeat endpoint that doesn't require any authorisation.

Example response:

{
	"status": 200,
	"message": "PONG",
	"error": false,
	"data": null
}

Extraction

➡️ POST /api/v1/

This endpoint extracts keywords from a given piece of text. The JSON body for the endpoint is described below. A slice of objects is returned on successful submission which details the keyword and salience score.

Key Example Value Default Value Required Notes
language "en" en See below for available language keys
limit 10 30 The amount of keywords to extract.
text "My keywords" N/A The content to extract the keywords from
stopwords ["exclude"] N/A Specific words to exclude
dirty ["exclude"] N/A Words that contain a substring to exclude

Example response:

{
	"status": 200,
	"message": "Successfully obtained keywords.",
	"error": false,
	"data": [
		{
			"term": "seo",
			"salience": 165.13790907034348
		},
		{
			"term": "reddico",
			"salience": 100.51872726020909
		},
		{
			"term": "serp",
			"salience": 28.719636360059738
		},
		{
			"term": "brands",
			"salience": 25.899545450074672
		},
		{
			"term": "insights",
			"salience": 23.97899999016428
		},
		{
			"term": "unique technology",
			"salience": 21.539727270044803
		},
		{
			"term": "blackrock",
			"salience": 21.539727270044803
		},
		{
			"term": "reddico digital",
			"salience": 21.539727270044803
		},
		{
			"term": "technology",
			"salience": 21.251797342284842
		},
		{
			"term": "learn",
			"salience": 20.368295910502656
		},
		{
			"term": "agency",
			"salience": 20.04992044286311
		},
		{
			"term": "optimised",
			"salience": 19.43192398051029
		},
		{
			"term": "talent",
			"salience": 18.539727270044803
		},
		{
			"term": "company",
			"salience": 18.16462612505645
		},
		{
			"term": "team",
			"salience": 16.725550003417045
		}
	]
}

Languages

The available languages and keys for the library is listed below.

 "da": "danish"
 "du": "dutch"
 "en": "english"
 "fi": "finnish"
 "fr": "french"
 "ge": "german"
 "it": "italian"
 "no": "norwegian"
 "po": "portuguese"
 "ro": "romanian"
 "ru": "russian"
 "sp": "spanish"
 "sw": "swedish"

Excluding Words

To exclude words from the extraction you can either pass stopwords or dirty in the JSON body of the request, the difference is explained below. If you notice a pattern with a word regularly occurring, please add the word to ./exclude/stopwords.json or ./exclude/dirty.json and make a pull request.

Stopwords

Stopwords are specific words to exclude from the analysis.

Dirty

Dirty words will be compared by a substring to see if the keyword contains the word passed, if it does it will be excluded from the analysis.

Implemented Models

This library currently implements the following keyphrase extraction models:

Development

To get started with local development for the project, please see the following steps below.

Setup

This library relies on relies on spacy (>= 3.2.3) for text processing and requires models to be installed. To set up the dependencies of the project, run the following setup script.

sudo chmod -R 777 ./bin
./bin/start.sh

Token

Export the environment variable NLP_TOKEN to set an authorisation token to be used for the API. Subsequent requests should use X-Auth-Token with the value of the exported token.

export NLP_TOKEN=mytoken

Docker

A dockerfile is included in this project, so you can run the API locally.

docker build . nlp
docker run -it -p 8080:8080 nlp

nlp's People

Contributors

ainsleyclark avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

rhc3

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.