EntityRecognizer

koalanlp/proc. EntityRecognizer

개체명 인식기 Wrapper

참고

개체명 인식 은 문장에서 인물, 장소, 기관, 대상 등을 인식하는 기술입니다.

예) '철저한 진상 조사를 촉구하는 국제사회의 목소리가 커지고 있는 가운데, 트럼프 미국 대통령은 되레 사우디를 감싸고 나섰습니다.'에서, 다음을 인식하는 기술입니다.

  • '트럼프': 인물
  • '미국' : 국가
  • '대통령' : 직위
  • '사우디' : 국가

아래를 참고해보세요.

Constructor

new EntityRecognizer(apinon-null, optionsopt)

Source:

개체명 인식기를 초기화합니다.

Example
import { EntityRecognizer } from 'koalanlp/proc';
import { ETRI } from 'koalanlp/API';

let parser = new EntityRecognizer(ETRI);
parser("문장을 분석해봅니다. 이렇게요.");
Parameters:
Name Type Attributes Description
api API

사용할 분석기의 유형.

options Object <optional>
Properties
Name Type Attributes Default Description
apiKey string

ETRI 분석기의 경우, ETRI에서 발급받은 API Key (2.2.0에서 삭제 예정)

etriKey string

ETRI 분석기의 경우, ETRI에서 발급받은 API Key

isAsyncDefault boolean <optional>
true

객체를 함수처럼 사용할 때, 즉 processor("문장")과 같이 사용할 때, 기본 호출을 async로 할 지 선택합니다. 기본값은 Asynchronous 호출입니다.