# deepner **Repository Path**: wangsihong/deepner ## Basic Information - **Project Name**: deepner - **Description**: NER use BiGRU + CRF - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-08-02 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #### Deep NER Base on tensorflow version >= 1.4.0 #### Install tensorflow ``` pip install tensorflow==1.8.0 ``` #### Install ``` pip install deep-text pip install deepner ``` #### code ``` import deepner texts = ["北京市西城区车公庄北街新华里16号京桥国际公馆2号楼", "明天早晨去南京"] entities = deepner.analysis(texts) ``` Result: [[('北京市西城区车公庄北街新华里16号京桥国际公馆2号楼', 'LOC', 0, 26)], [('明天早晨', 'TIME', 0, 4), ('南京', 'LOC', 5, 7)]]