Skip to content

eusebiuchiriac/react-nlp-annotate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React NLP Annotate

Interface for doing various NLP tasks.

  • Audio transcription
  • Text Labeling (Entity, Classification)
  • Entity Relation Labeling

screenshot 1

screenshot 2

screenshot 3

Installation

npm install react-nlp-annotate

Usage

Document Classification

import NLPAnnotator from "react-nlp-annotate" const MyComponent = () => ( <NLPAnnotator type="label-document" labels={[ { "id": "gryffindor", "displayName": "Gryffindor", "description": "Daring, strong nerve and chivalry." }, { "id": "slytherin", "displayName": "Slytherin", "description": "Cunning and ambitious. Possibly dark wizard." } ]} multipleLabels={false} document="Harry" onChange={(classification) => { console.log("Harry is a " + classification) }} /> )

About

Interface for making NLP annotations.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.5%
  • HTML 1.4%
  • CSS 0.1%