Interface for doing various NLP tasks.
- Audio transcription
- Text Labeling (Entity, Classification)
- Entity Relation Labeling
npm install react-nlp-annotate
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) }} /> )

