Coder Social home page Coder Social logo

pytorch-chinesener's Introduction

ChineseNER

这是一个基于BiLSTM-CRF的字级别的中文命名实体识别库,可以从文本中抽取出人名、地名、组织名三大类实体。

installation

pip install ChineseNER

使用

from ChineseNER import model  
text = '国务院总理李克强在中南海紫光阁会见来华访问的德国总理默克尔'  
ner = model.load()  
dict1 = ner.get_entity_from_sent(text)

你将得到字典:{'location': ['中南海', '紫光阁', '华', '德国'], 'orgnization': ['国务院'], 'person': ['李克强', '默克尔']}

也可以从一个文本文件中抽取实体,得到一个实体文件:

from ChineseNER import model  
ner = model.load()  
ner.get_entity_from_file('1.txt', '2.txt')  

输入文件'1.txt',将得到文件'2.txt'。1.txt和2.txt如下图所示:
1.txt
2.txt

pytorch-chinesener's People

Contributors

cswangjiawei avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.