Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
title: Named Entity Recognition
type: community
group: Natural Language Processing
order: 3
image: /static/templates/named-entity-recognition.png
details: |
  <h1>Extract named entities from text</h1>
  <dl>
    <dt>Industry Applications</dt>
    <dd>legal documents, contracts, medical records, clinical notes, news articles, journalism, financial documents, compliance, regulatory, due diligence, document processing, text mining, knowledge extraction, structured data extraction</dd>
    <dt>Associated Models</dt>
    <dd>BERT, spaCy, Stanford NER, Flair, transformer models</dd>
    <dt>Domain Terminology</dt>
    <dd>NLP, NER, information extraction, entity extraction, entity linking</dd>
  </dl>
config: |
  <View>
    <Labels name="label" toName="text">
      <Label value="PER" background="red"/>
      <Label value="ORG" background="darkorange"/>
      <Label value="LOC" background="orange"/>
      <Label value="MISC" background="green"/>
    </Labels>
 
    <Text name="text" value="$text"/>
  </View>