Edit model card

Open Named Entity Recognition (Multilingual)

You can read the details in this post.

from transformers import pipeline

nlp = pipeline('token-classification', 'yongsun-yoon/deberta-v3-base-open-ner', aggregation_strategy='simple')

text = '30์ผ ์ „์ฃผ์ง€๋ฒ• ๊ตฐ์‚ฐ์ง€์› ์ œ1ํ˜•์‚ฌ๋ถ€๋Š” ๋ฐ• ์‹œ์žฅ์— ๋Œ€ํ•œ ์„ ๊ณ ๊ณตํŒ์—์„œ ๋ฒŒ๊ธˆ 500๋งŒ์›์„ ์„ ๊ณ ํ–ˆ๋‹ค.'
entity_type = 'event'
input_text = f'{text}{nlp.tokenizer.sep_token}{entity_type}' # [SEP]

nlp(input_text) # ์„ ๊ณ ๊ณตํŒ
Downloads last month
54
Inference Examples
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social visibility and check back later, or deploy to Inference Endpoints (dedicated) instead.