[go: up one dir, main page]

CN106569998A - Text named entity recognition method based on Bi-LSTM, CNN and CRF - Google Patents

Text named entity recognition method based on Bi-LSTM, CNN and CRF Download PDF

Info

Publication number
CN106569998A
CN106569998A CN201610959519.1A CN201610959519A CN106569998A CN 106569998 A CN106569998 A CN 106569998A CN 201610959519 A CN201610959519 A CN 201610959519A CN 106569998 A CN106569998 A CN 106569998A
Authority
CN
China
Prior art keywords
vector
word
character
time
information
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN201610959519.1A
Other languages
Chinese (zh)
Inventor
汤斯亮
吴飞
张宁
戴洪良
庄越挺
张寅�
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Zhejiang University ZJU
Original Assignee
Zhejiang University ZJU
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Zhejiang University ZJU filed Critical Zhejiang University ZJU
Priority to CN201610959519.1A priority Critical patent/CN106569998A/en
Publication of CN106569998A publication Critical patent/CN106569998A/en
Pending legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F40/00Handling natural language data
    • G06F40/20Natural language analysis
    • G06F40/279Recognition of textual entities
    • G06F40/289Phrasal analysis, e.g. finite state techniques or chunking
    • G06F40/295Named entity recognition
    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06NCOMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
    • G06N3/00Computing arrangements based on biological models
    • G06N3/02Neural networks
    • G06N3/08Learning methods

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Health & Medical Sciences (AREA)
  • Health & Medical Sciences (AREA)
  • Artificial Intelligence (AREA)
  • General Physics & Mathematics (AREA)
  • Computational Linguistics (AREA)
  • General Engineering & Computer Science (AREA)
  • Biomedical Technology (AREA)
  • Evolutionary Computation (AREA)
  • Molecular Biology (AREA)
  • Computing Systems (AREA)
  • Data Mining & Analysis (AREA)
  • Biophysics (AREA)
  • Mathematical Physics (AREA)
  • Software Systems (AREA)
  • Life Sciences & Earth Sciences (AREA)
  • Audiology, Speech & Language Pathology (AREA)
  • Machine Translation (AREA)

Abstract

本发明公开了一种基于Bi‑LSTM、CNN和CRF的文本命名实体识别方法。该方法包括如下步骤:(1)利用卷积神经网络对文本单词字符层面的信息进行编码转换成字符向量;(2)将字符向量与词向量进行组合并作为输入传到双向LSTM神经网络来对每个单词的上下文信息进行建模;(3)在LSTM神经网络的输出端,利用连续的条件随机场来对整个句子进行标签解码,并标注句子中的实体。本发明是一个端到端的模型,不需要未标注语料集中除预训练好的词向量之外的数据预处理,因此本发明能在不同的语言和领域的语句标注中有广泛应用。The invention discloses a text named entity recognition method based on Bi-LSTM, CNN and CRF. The method includes the following steps: (1) using a convolutional neural network to encode information at the character level of text words into character vectors; (2) combining character vectors and word vectors and passing them as input to a bidirectional LSTM neural network to The context information of each word is modeled; (3) at the output of the LSTM neural network, the continuous conditional random field is used to decode the label of the entire sentence and mark the entities in the sentence. The present invention is an end-to-end model that does not require data preprocessing in the unlabeled corpus except for pre-trained word vectors, so the present invention can be widely used in sentence labeling in different languages and fields.

Description

Bi-LSTM, CNN and CRF-based text named entity identification method
Technical Field
The invention relates to natural language processing, in particular to a text named entity recognition method based on a bidirectional LSTM neural network, a convolutional neural network and a Conditional Random Field (CRF).
Background
Natural Language Processing (NLP) is a cross discipline integrating linguistics and computer disciplines. Named Entity Recognition (NER) is a basic task in natural language processing, and aims to recognize proper nouns and meaningful quantitative phrases in natural language texts and classify the proper nouns and meaningful quantitative phrases. With the rise of information extraction and big data concepts, named entity recognition tasks are increasingly emphasized by people and become important components of natural language processing such as public opinion analysis, information retrieval, automatic question answering and machine translation. How to automatically, accurately and quickly identify named entities from massive internet text information gradually becomes a hot problem concerned by academia and industry.
High performance named entity recognition methods typically employ Conditional Random Fields (CRFs), SVMs, and perceptrons to model manually processed features. Some researchers have proposed an efficient neural network model that requires only a small amount of feature engineering, and the model does not need important word vector features learned from a large amount of unlabeled data, but rather extracts vector features from a large amount of data through an unsupervised learning method.
However, this model has many limitations. First, the model utilizes a simple feedforward neural network that limits the context information for each word to a fixed length window, which gives up information between long-distance words; secondly, because only the word vector information is relied on, the method can not explore the character hierarchy characteristics of the words, such as prefix information and suffix information, and the information is often useful, especially in the new words expressed by word vectors with poor training effect. We seek a more efficient neural network model that addresses the above problems.
A Recurrent Neural Network (RNN) is capable of handling variable length input vectors and of long term memory in the process. In recent years, RNNs have had great success in the processing of diverse NLP tasks such as speech recognition, machine translation, and language modeling. Long-short term memory artificial neural network (LSTM) with forget gate allows important dependencies of Long-distance dependencies to be easily learned.
For sequence labeling tasks such as named entity recognition and speech recognition, the Bi-directional LSTM (Bi-LSTM) neural network is efficient for word indeterminate length context problems, or context constraint problems: when LSTMs are learned from past information in the named entity recognition task, limitations in computing power and quality of word vectors can limit their efficiency.
Convolutional Neural Network (CNN) is also used in NLP task to model information at character level, and there is an example of successfully applying CNN to extract character features and apply the features to named entity recognition task.
Disclosure of Invention
The invention aims to detect and label entities in natural texts to obtain effective text information, and provides a text named entity identification method based on a bidirectional LSTM neural network, a convolutional neural network and a Conditional Random Field (CRF).
The text named entity recognition method based on Bi-LSTM, CNN and CRF comprises the following steps:
(1) performing data preprocessing according to text data, and performing sentence segmentation and word segmentation on the text to obtain character feature vectors;
(2) extracting character feature vectors of each word by using a convolutional neural network;
(3) combining the character feature vectors and the word vectors, transmitting the character feature vectors and the word vectors into an LSTM neural network, and training by using a bidirectional LSTM neural network to obtain input sentence information features;
(4) and (4) aiming at the semantic features obtained in the step (3), carrying out entity labeling on each word by using a conditional random field, and marking entity information in the sentence sequence.
The steps can be realized in the following way:
the steps of preprocessing the text data, and performing sentence segmentation and word segmentation on the text to obtain the character feature vector can be specifically realized as follows:
(1) sentence and word segmentation is carried out on the document by adopting a natural language processing tool, so that the document is presented in sentences and one token per sentence;
(2) counting the sentences, words and labels obtained in the step (1) to form a sentence table, a vocabulary table and a label table;
(3) counting the characters in the word list in the last step (1) to form a character list;
(4) and forming a character feature vector by using the existing pre-trained word vector and the character table.
The step of extracting the character feature vector of each word by using the convolutional neural network can be specifically realized as follows:
(1) let C be the character table, d be the dimension of each character vector, and the character vector matrix be Q ∈ Rd×|C|
(2) The predetermined word k ∈ V is composed of consecutive characters c1,c2,...,cl]Where l is the length of the word k, the character vector matrix for k is composed of Ck∈Rd×lGiven, where the ith column is the character ciThe vector of (a);
(3) at CkAnd a kernel H ∈ R of width wd×wAfter that, adding bias value bias to the convolution layer, and carrying out nonlinear regression on the whole convolution result to realize the feature mapping map fk∈Rl-w+1Wherein the function f is mappedkThe ith element fk[i]Is given by formula (1);
fk[i]=tanh(<Ck[*,i:i+w-1],H>+b) (1)
wherein is all rows, Ck[*,i:i+w-1]Is CkFrom the ith column to the (i + w-1) th column,<,>is Frobenius inner product, b is offset vector;
(4) finally, toExpressed as the corresponding characteristic of the kernel H.
Combining the character feature vectors and the word vectors, transmitting the character feature vectors and the word vectors into an LSTM neural network, and training by using a bidirectional LSTM neural network to obtain the information features of the input sentences by the following steps:
(1) definition of xtIs the input character feature vector at time t, htFor the hidden layer state vector to store all useful information at time t, σ is sigmoid regression layer, and x is inner product, Ui,Uf,Uc,UoFor input x in different statestWeight matrix of Wi,Wf,Wc,WoIs a hidden layer state htWeight matrix of bi,bf,bc,boIs a bias vector;
(2) the calculation of the forget gate at time t is shown in equation (2):
ft=σ(Wfht-1+Ufxt+bf) (2)
(3) update h at time tt-1The calculation formula of all the information stored in (1) is shown as (3) and (4):
it=σ(Wiht-1+Uixt+bi) (3)
whereinA vector that can be added to the cell state at time t;
(4) and updating the information stored at the time t-1 to the stored information at the time t, wherein the calculation formula is shown as an expression (5):
whereinA vector of a cell state at the time t;
(5) the output at time t is as shown in equation (6), and h is updatedtThe calculation formula is shown in formula (7):
ot=σ(Woht-1+Uoxt+bo) (6)
ht=ot*tanh(Ct) (7)
wherein o istIs the output at time t; h istA vector of a hidden layer at time t;
(6) h in the above steptStoring all the past time information, and setting a g again by the same methodtFor storing future information, the last two hidden layer information are concatenated to form the final output vector.
The method for marking out the entity information in the sentence sequence by using the conditional random field to mark the entity of each word comprises the following specific steps:
(1) with z ═ z1,z2,...,znDenotes the input sequence, where n is the length of the input sequence, ziIs the input vector of the ith word, y ═ y1,y2,...,ynY (z) ═ y'1,y'2,...,y'nA possible output tag sequence of z;
(2) the conditional random field probability model defines the conditional probability p (yz; W, b) over all possible tag sequences y' for a given input sequence z:
wherein,w is a weight vector and b is a bias vector for the potential gain function;and by',yWeight vectors and bias vectors corresponding to the tag pair (y', y), respectively;
(3) a Conditional Random Field (CRF) training phase, using a maximum conditional likelihood estimation method to select the parameters that maximize likelihood L (W, b), for a training set { (z)i,yi) The logarithm of likelihood is:
(4) finding the y with the highest conditional probability among the tag sequences to tag the sequences:
compared with the prior art, the invention has the beneficial effects that:
the invention uses a method of combining a convolution neural network and a bidirectional LSTM neural network to extract character features and word features, and compares the character features and the word features with the traditional method such as a hidden Markov model; the method combines the neural network and the conditional random field, has wide application scenes, can solve the problem of labeling the named entities in multiple fields only by training different data corresponding to different problems once, and has the advantage of end-to-end.
Drawings
FIG. 1 is a key step workflow diagram for Bi-LSTM, CNN and CRF based textual named entity recognition;
FIG. 2 is a schematic diagram of a convolutional neural network architecture;
FIG. 3 is a schematic diagram of a bi-directional LSTM neural network.
FIG. 4 is a named entity recognition model training process algorithm based on bidirectional LSTM and CRF.
Detailed Description
The invention is further described with reference to the following figures and detailed description.
The invention mainly combines the neural networks aiming at the named entity recognition task, presents a bidirectional LSTM and CNN-based hybrid model, and the model can simultaneously learn character feature vectors and word vectors, and labels the learned feature vectors through a conditional random field on the basis. Therefore, efficient and accurate named entity recognition results are obtained. As shown in fig. 1, which is a work flow diagram of key steps of text named entity recognition based on Bi-LSTM, CNN and CRF, wherein the character expression of each word is completed by the convolutional neural network structure of fig. 2; the result of cascading the character feature vector and the word vector is input into a bidirectional LSTM neural network, wherein the LSTM neural network is shown in FIG. 3, and a dotted line in FIG. 1 indicates that a dropout layer is arranged on both the input vector and the output vector (to prevent the neural network from generating overfitting).
The text named entity recognition method based on Bi-LSTM, CNN and CRF comprises the following specific steps (1) - (4):
(1) and performing data preprocessing according to the text data, and performing sentence segmentation and word segmentation on the text to obtain character feature vectors. The method comprises the following specific steps:
(1.1) performing sentence and word segmentation on the document by adopting a natural language processing tool, so that the document is presented in sentences and one word per sentence (token);
(1.2) carrying out statistics on sentences, words and labels to form a sentence table, a vocabulary table and a label table;
(1.3) counting the characters in the word list to form a character list;
and (1.4) forming a character feature vector by using the existing pre-trained word vector and the character table.
(2) And extracting the character feature vector of each word by using a convolutional neural network. The method comprises the following specific steps:
(2.1) let C be the character table, d be the dimension of each character vector, and the character vector matrix be Q ∈ Rd×C
(2.2) Preset word k ∈ V consisting of consecutive characters [ c ]1,c2,...,cl]Where l is the length of the word k, the character vector matrix for k is composed of Ck∈Rd×lGiven, where the ith column is the character ciThe vector of (a);
(2.3) at CkAnd a kernel H ∈ R of width wd×wAfter that, adding bias value bias to the convolution layer, and carrying out nonlinear regression on the whole convolution result to realize the feature mapping map fk∈Rl-w+1Wherein the function f is mappedkThe ith element fk[i]Is given by formula (1);
fk[i]=tanh(<Ck[*,i:i+w-1],H>+b) (1)
wherein is all rows, Ck[*,i:i+w-1]Is CkFrom the ith column to the (i + w-1) th column,<,>is Frobenius inner product, b is offset vector;
(2.4) finally, byExpressed as the corresponding characteristic of the kernel H.
(3) And combining the character feature vectors and the word vectors, and transmitting the character feature vectors and the word vectors into an LSTM neural network. As shown in FIG. 4, the input sentence information features are trained using a bi-directional LSTM neural network. The method comprises the following specific steps:
(3.1) definition of xtIs the input character feature vector at time t, htFor the hidden layer state vector to store all useful information at time t, σ is sigmoid regression layer, and x is inner product, Ui,Uf,Uc,UoFor input x in different statestWeight matrix of Wi,Wf,Wc,WoIs a hidden layer state htWeight matrix of bi,bf,bc,boIs a bias vector;
(3.2) the calculation of the forget gate at time t is shown in equation (2):
ft=σ(Wfht-1+Ufxt+bf) (2)
(3.3) update h at time tt-1The calculation formula of all the information stored in (1) is shown as (3) and (4):
it=σ(Wiht-1+Uixt+bi) (3)
whereinA vector that can be added to the cell state at time t;
(3.4) updating the information stored at the time t-1 to the stored information at the time t, wherein the calculation formula is shown as an expression (5):
whereinA vector of a cell state at the time t;
(3.5) the output at time t is as shown in equation (6), and h is updatedtThe calculation formula is shown in formula (7):
ot=σ(Woht-1+Uoxt+bo) (6)
ht=ot*tanh(Ct) (7)
wherein o istIs the output at time t; h istA vector of a hidden layer at time t;
(3.6) h in the above steptStoring all the past time information, and setting a g again by the same methodtFor storing future information, the last two hidden layer information are concatenated to form the final output vector.
(4) And (4) aiming at the semantic features obtained in the step (3), carrying out entity labeling on each word by using a conditional random field, and marking entity information in the sentence sequence. The method comprises the following specific steps:
(4.1) with z ═ z1,z2,...,znDenotes the input sequence, where n is the length of the input sequence, ziIs the input vector of the ith word, y ═ y1,y2,...,ynY (z) ═ y'1,y'2,...,y'nA possible output tag sequence of z;
(4.2) the conditional random field probability model defines the conditional probability p (yz; W, b) over all possible tag sequences y' for a given input sequence z:
wherein,w is a weight vector and b is a bias vector for the potential gain function;and by',yWeight vectors and bias vectors corresponding to the tag pair (y', y), respectively;
(4.3) Conditional Random Field (CRF) training orderA section for selecting a parameter for maximizing the likelihood L (W, b) using a maximum conditional likelihood estimation method, for the training set { (z)i,yi) The logarithm of likelihood is:
(4.4) finding the highest conditional probability y in the tag sequence to tag the sequence:
examples
Taking documents of English news of New York Times as an example, the method is applied to text named entity recognition, and specific parameters and methods in each step are as follows:
1. sentence and word segmentation are carried out on the document by adopting a natural language processing tool, so that each word of the document is a line, and the sentences are spaced by spaces;
2. respectively counting sentences, words and labels in 1 to form a sentence table, a word table and a label table, wherein five types of labels including ' PER (person name) ' LOC (place name) ' ORG (organization) ' FAC (organization) ' and ' GPE (geopolitical name) ' are marked in a training document, and all the labels in a test document are ' marked ', and the 1 Chinese document has 17 sentences and 466 words through counting;
3. carrying out character statistics on the word list in the step 1 to form a character list C;
4. combining the trained GloVe 100-dimensional vector disclosed by 6 hundred million Stanford with the word list in 2 to form a 100-dimensional word vector;
extracting character feature vectors of each word by using a convolutional neural network:
5. let C be the character table, d be the dimension of each character vector, and the character vector matrix be Q ∈ Rd×|C|
6. Suppose the word k ∈ V consists of consecutive characters c1,c2,...,cl]Where l is the length of the word k, the character vector matrix for k is composed of Ck∈Rd×lGiven, where the ith column is the character ciThe vector of (a);
7. at CkAnd a kernel H ∈ R of width wd×wAfter that, adding bias value bias to the convolution layer, and carrying out nonlinear regression on the whole convolution result to realize the feature mapping map fk∈Rl-w+1In particular, fkIs given by the formula (1):
fk[i]=tanh(<Ck[*,i:i+w-1],H>+b) (1)
wherein is all rows, Ck[*,i:i+w-1]Is CkFrom the ith column to the (i + w-1) th column,<A,B>=Tr(ABT) Is Frobenius inner product.
8. To be provided withExpressed as a corresponding characteristic of kernel H;
and inputting the character vector features obtained in the step 8 and the word vectors obtained in the step 4 into the bidirectional LSTM neural network:
9. the two-way LSTM neural network parameter updating mode is that a stochastic gradient descent algorithm with 30 being batch size and 0.9 being momentum term is used for updating, the initial learning rate is 0.015, and after each iteration, the learning rate updating formula is
ηt=η0(1+ρt) (1)
Wherein, the delay rate rho is 0.05, and t is the number of times of completing iteration;
10. definition of xtIs the input character feature vector at time t, htFor the hidden layer state vector to store all useful information at time t, σ is sigmoid regression layer, and x is inner product, Ui,Uf,Uc,UoFor input x in different statestWeight matrix of Wi,Wf,Wc,WoIs a hidden layer state htWeight matrix of bi,bf,bc,boIs a bias vector;
11. the calculation of the forget gate at time t is shown in equation (2):
ft=σ(Wfht-1+Ufxt+bf) (2)
12. update h at time tt-1The calculation formula of all the information stored in (1) is shown as (3) and (4):
it=σ(Wiht-1+Uixt+bi) (3)
13. and updating the information stored at the time t-1 to the stored information at the time t, wherein the calculation formula is shown as an expression (5):
14. the output at time t is as shown in equation (6), and h is updatedtThe calculation formula is shown in formula (7):
ot=σ(Woht-1+Uoxt+bo) (6)
ht=ot*tanh(Ct) (7)
15. in the above stepH oftStoring all the past time information, and setting a g again by the same methodtFor storing future information, the last two hidden layer information are concatenated to form the final output vector.
Entity labeling is performed on each word using Conditional Random Fields (CRFs):
16. with z ═ z1,z2,...,znDenotes an input sequence, where ziIs the input vector of the ith word, y ═ y1,y2,...,ynY (z) ═ y'1,y'2,...,y'nA possible output tag sequence of z;
17. a Conditional Random Field (CRF) probabilistic model defines the conditional probability p (y | z; W, b) over all possible tag sequences y for a given input sequence z:
wherein,w is a weight vector and b is a bias vector for the potential gain function;and by',yWeight vectors and bias vectors corresponding to the tag pair (y', y), respectively;
18. conditional Random Field (CRF) training phase, we use maximum conditional likelihood estimation for the training set { (z)i,yi) The logarithm of likelihood is:
the maximum likelihood training process selects the parameters that maximize the likelihood L (W, b).
19. Finding the y with the highest conditional probability among the tag sequences to tag the sequences:
20. and identifying the position of the marked words in the original file, and neatly feeding back the marked result to the user.
The following table is the partial final annotation result for the selected news document.

Claims (5)

1.一种基于Bi-LSTM、CNN和CRF的文本命名实体识别方法,其特征在于包括如下步骤:1. a text named entity recognition method based on Bi-LSTM, CNN and CRF, is characterized in that comprising the steps: (1)根据文本数据进行数据预处理,对文本进行分句、分词,得到字符特征向量;(1) Carry out data preprocessing according to the text data, divide the text into sentences and words, and obtain character feature vectors; (2)利用卷积神经网络对每一个单词进行字符特征向量提取;(2) utilize convolutional neural network to carry out character feature vector extraction to each word; (3)将字符特征向量与词向量组合,传入到LSTM神经网络,利用双向LSTM神经网络来训练得到输入语句信息特征;(3) Combining character feature vectors and word vectors, importing them into the LSTM neural network, and using the two-way LSTM neural network to train to obtain the input sentence information features; (4)针对(3)中所得到的语义特征,利用条件随机场来对每个单词进行实体标注,标记出语句序列中的实体信息。(4) For the semantic features obtained in (3), use the conditional random field to carry out entity labeling for each word, and mark the entity information in the sentence sequence. 2.根据权利要求1所述的一种基于Bi-LSTM、CNN和CRF的文本命名实体识别方法,其特征在于对文本数据进行数据预处理,对文本进行分句、分词,得到字符特征向量的步骤如下:2. a kind of text named entity recognition method based on Bi-LSTM, CNN and CRF according to claim 1, it is characterized in that text data is carried out data preprocessing, text is carried out sentence, participle, obtains the character feature vector Proceed as follows: (1)采用自然语言处理工具对文档进行分句和分词,使得文档以句子和每句一个token呈现;(1) Use natural language processing tools to segment the document into sentences and words, so that the document is presented as sentences and a token for each sentence; (2)对句子、单词和标签进行统计,形成句表、词汇表和标签表;(2) Sentences, words and tags are counted to form sentence tables, vocabulary lists and tag tables; (3)对单词表中字符进行统计,形成字符表;(3) counting characters in the word table to form a character table; (4)利用已有的预训练好的词向量和字符表来形成字符特征向量。(4) Use the existing pre-trained word vectors and character tables to form character feature vectors. 3.根据权利要求1所述的一种基于Bi-LSTM、CNN和CRF的文本命名实体识别方法,其特征在于所述的利用卷积神经网络对每一个单词进行字符特征向量提取的步骤如下:3. a kind of text named entity recognition method based on Bi-LSTM, CNN and CRF according to claim 1, it is characterized in that described utilize convolutional neural network to carry out the step of character feature vector extraction to each word as follows: (1)令C为字符表,d为每个字符向量的维度,字符向量矩阵为:Q∈Rd×|C|(1) Let C be the character list, d be the dimension of each character vector, and the character vector matrix is: Q∈R d×|C| ; (2)预设单词k∈V由连续的字符[c1,c2,...,cl]组成,其中l为单词k的长度,则k的字符向量矩阵由Ck∈Rd×l给出,其中第i列为字符ci的向量;(2) The preset word k∈V consists of continuous characters [c 1 ,c 2 ,...,c l ], where l is the length of word k, then the character vector matrix of k is composed of C k ∈ R d× l is given, where the i-th column is a vector of characters c i ; (3)在Ck和一个宽度为w的内核H∈Rd×w之间实现卷积层,在此之后给卷积层添加偏置值bias,并将整个卷积结果进行非线性回归来实现特征映射map fk∈Rl-w+1,其中,映射函数fk的第i个元素fk[i]由(1)式给出;(3) Realize the convolution layer between C k and a kernel H∈R d×w with a width of w, after which add a bias value bias to the convolution layer, and perform nonlinear regression on the entire convolution result to Realize the feature map f k ∈ R l-w+1 , where the i-th element f k [i] of the mapping function f k is given by (1); fk[i]=tanh(<Ck[*,i:i+w-1],H>+b) (1)f k [i]=tanh(<C k [*,i:i+w-1],H>+b) (1) 其中*为所有行数,Ck[*,i:i+w-1]为Ck中第i列到第i+w-1列,<,>为Frobenius内积,b为偏置向量;Where * is the number of all rows, C k [*,i:i+w-1] is the i-th column to i+w-1 column in C k , <,> is the Frobenius inner product, and b is the bias vector; (4)最后,以作为内核H的对应特征表达。(4) Finally, with as the corresponding feature expression of the kernel H. 4.根据权利要求1所述的一种基于Bi-LSTM、CNN和CRF的文本命名实体识别方法,其特征在于将字符特征向量与词向量组合,传入到LSTM神经网络,利用双向LSTM神经网络来训练得到输入语句信息特征的步骤如下:4. a kind of text named entity recognition method based on Bi-LSTM, CNN and CRF according to claim 1, it is characterized in that character feature vector and word vector are combined, import into LSTM neural network, utilize two-way LSTM neural network The steps to train and obtain the information features of the input sentence are as follows: (1)定义xt为t时刻的输入字符特征向量,ht为在t时刻存储所有有用信息的隐藏层状态向量,σ为sigmoid回归层,*为内积,Ui,Uf,Uc,Uo为不同状态下针对输入xt的权重矩阵,Wi,Wf,Wc,Wo为隐藏层状态ht的权重矩阵,bi,bf,bc,bo为偏置向量;(1) Define x t as the input character feature vector at time t, h t is the hidden layer state vector storing all useful information at time t, σ is the sigmoid regression layer, * is the inner product, U i , U f , U c , U o is the weight matrix for the input x t in different states, W i , W f , W c , W o are the weight matrices of the hidden layer state h t , b i , b f , b c , b o are the bias vector; (2)在t时刻forget gate的计算如(2)式所示:(2) The calculation of the forget gate at time t is shown in formula (2): ft=σ(Wfht-1+Ufxt+bf) (2)f t =σ(W f h t-1 +U f x t +b f ) (2) (3)在t时刻更新ht-1中存储的所有信息,计算公式如(3)、(4)式所示:(3) Update all information stored in h t-1 at time t, and the calculation formulas are shown in (3) and (4): it=σ(Wiht-1+Uixt+bi) (3)i t =σ(W i h t-1 +U i x t +b i ) (3) CC ~~ tt == tanhtanh (( WW cc hh tt -- 11 ++ Uu cc xx tt ++ bb cc )) -- -- -- (( 44 )) 其中为t时刻可以被加入到cell state的向量;in is a vector that can be added to the cell state at time t; (4)在t时刻将t-1时刻存储的信息更新为t时刻的存储信息,计算公式为式(5):(4) Update the information stored at time t-1 to the stored information at time t at time t, and the calculation formula is formula (5): CC tt == ff tt ** CC tt -- 11 ++ ii tt ** CC ~~ tt -- -- -- (( 55 )) 其中为t时刻cell state的向量;in is the vector of the cell state at time t; (5)在t时刻的输出如式(6)所示,并更新ht,计算公式如式(7):(5) The output at time t is shown in formula (6), and h t is updated, and the calculation formula is shown in formula (7): ot=σ(Woht-1+Uoxt+bo) (6)o t =σ(W o h t-1 +U o x t +b o ) (6) ht=ot*tanh(Ct) (7)h t =o t *tanh(C t ) (7) 其中ot为t时刻的输出;ht为t时刻隐藏层的向量;Where o t is the output at time t; h t is the vector of the hidden layer at time t; (6)上述步骤中的ht存储过去时刻的所有信息,用同样的方法再设置一个gt用于存储未来的信息,最后两个隐藏层信息通过级联来形成最后的输出向量。(6) h t in the above steps stores all the information of the past time, and another g t is set in the same way to store future information, and the last two hidden layer information are concatenated to form the final output vector. 5.根据权利要求1所述的一种基于Bi-LSTM、CNN和CRF的文本命名实体识别方法,其特征在于利用条件随机场来对每个单词进行实体标注,标记出语句序列中的实体信息的步骤如下:5. a kind of text named entity recognition method based on Bi-LSTM, CNN and CRF according to claim 1, it is characterized in that utilize conditional random field to carry out entity label to each word, mark out the entity information in the sentence sequence The steps are as follows: (1)用z={z1,z2,...,zn}表示输入序列,其中n为输入序列的长度,zi为第i个词的输入向量,y={y1,y2,...,yn}为z的实际输出标签序列,Y(z)={y'1,y'2,...,y'n}为z的可能的输出标签序列;(1) Use z={z 1 ,z 2 ,...,z n } to represent the input sequence, where n is the length of the input sequence, z i is the input vector of the i-th word, y={y 1 ,y 2 ,...,y n } is the actual output label sequence of z, Y(z)={y' 1 ,y' 2 ,...,y' n } is the possible output label sequence of z; (2)条件随机场概率模型定义对于给定输入序列z在所有可能标签序列y'上的条件概率p(y|z;W,b):(2) The conditional random field probability model defines the conditional probability p(y|z; W, b) for a given input sequence z on all possible label sequences y': pp (( ythe y || zz ;; WW ,, bb )) == &Pi;&Pi; ii == 11 nno &psi;&psi; ii (( ythe y ii -- 11 ,, ythe y ii ,, zz )) &Sigma;&Sigma; ythe y &prime;&prime; &Element;&Element; YY (( zz )) &Pi;&Pi; ii == 11 nno &psi;&psi; ii (( ythe y &prime;&prime; ii -- 11 ,, ythe y &prime;&prime; ii ,, zz )) -- -- -- (( 88 )) 其中,为潜在增益函数,W为权重向量,b为偏置向量;和by',y分别为与标签对(y',y)相对应的权重向量和偏置向量;in, is the potential gain function, W is the weight vector, and b is the bias vector; and b y', y are the weight vector and bias vector corresponding to the label pair (y', y), respectively; (3)条件随机场(CRF)训练阶段,使用最大条件似然估计方法选择使得似然率L(W,b)最大的参数,对于训练集{(zi,yi)},似然率的对数为:(3) In the conditional random field (CRF) training stage, the maximum conditional likelihood estimation method is used to select the parameter that maximizes the likelihood rate L(W,b). For the training set {(z i ,y i )}, the likelihood rate The logarithm of is: LL (( WW ,, bb )) == &Sigma;&Sigma; ii loglog pp (( ythe y || zz ;; WW ,, bb )) -- -- -- (( 99 )) (4)在标签序列中找到最高条件概率的y来对序列进行标签标注:(4) Find the y with the highest conditional probability in the label sequence to label the sequence: ythe y == argmaxargmax ythe y &Element;&Element; YY (( zz )) pp (( ythe y || zz ;; WW ,, bb )) -- -- -- (( 1010 )) ..
CN201610959519.1A 2016-10-27 2016-10-27 Text named entity recognition method based on Bi-LSTM, CNN and CRF Pending CN106569998A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201610959519.1A CN106569998A (en) 2016-10-27 2016-10-27 Text named entity recognition method based on Bi-LSTM, CNN and CRF

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201610959519.1A CN106569998A (en) 2016-10-27 2016-10-27 Text named entity recognition method based on Bi-LSTM, CNN and CRF

Publications (1)

Publication Number Publication Date
CN106569998A true CN106569998A (en) 2017-04-19

Family

ID=58535610

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201610959519.1A Pending CN106569998A (en) 2016-10-27 2016-10-27 Text named entity recognition method based on Bi-LSTM, CNN and CRF

Country Status (1)

Country Link
CN (1) CN106569998A (en)

Cited By (210)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107168957A (en) * 2017-06-12 2017-09-15 云南大学 A kind of Chinese word cutting method
CN107220506A (en) * 2017-06-05 2017-09-29 东华大学 Breast cancer risk assessment and analysis system based on deep convolutional neural network
CN107247704A (en) * 2017-06-09 2017-10-13 阿里巴巴集团控股有限公司 Term vector processing method, device and electronic equipment
CN107451433A (en) * 2017-06-27 2017-12-08 中国科学院信息工程研究所 A kind of information source identification method and apparatus based on content of text
CN107526799A (en) * 2017-08-18 2017-12-29 武汉红茶数据技术有限公司 A kind of knowledge mapping construction method based on deep learning
CN107526798A (en) * 2017-08-18 2017-12-29 武汉红茶数据技术有限公司 A kind of Entity recognition based on neutral net and standardization integrated processes and model
CN107545571A (en) * 2017-09-22 2018-01-05 深圳天琴医疗科技有限公司 A kind of image detecting method and device
CN107562784A (en) * 2017-07-25 2018-01-09 同济大学 Short text classification method based on ResLCNN models
CN107562716A (en) * 2017-07-18 2018-01-09 阿里巴巴集团控股有限公司 Term vector processing method, device and electronic equipment
CN107608970A (en) * 2017-09-29 2018-01-19 百度在线网络技术(北京)有限公司 part-of-speech tagging model generating method and device
CN107609009A (en) * 2017-07-26 2018-01-19 北京大学深圳研究院 Text sentiment analysis method, device, storage medium and computer equipment
CN107622050A (en) * 2017-09-14 2018-01-23 武汉烽火普天信息技术有限公司 Text sequence labeling system and method based on Bi LSTM and CRF
CN107644014A (en) * 2017-09-25 2018-01-30 南京安链数据科技有限公司 A kind of name entity recognition method based on two-way LSTM and CRF
CN107679224A (en) * 2017-10-20 2018-02-09 竹间智能科技(上海)有限公司 It is a kind of towards the method and system without structure text intelligent answer
CN107679234A (en) * 2017-10-24 2018-02-09 上海携程国际旅行社有限公司 Customer service information providing method, device, electronic equipment, storage medium
CN107729326A (en) * 2017-09-25 2018-02-23 沈阳航空航天大学 Neural machine translation method based on Multi BiRNN codings
CN107797987A (en) * 2017-10-12 2018-03-13 北京知道未来信息技术有限公司 A kind of mixing language material name entity recognition method based on Bi LSTM CNN
CN107797992A (en) * 2017-11-10 2018-03-13 北京百分点信息科技有限公司 Name entity recognition method and device
CN107797989A (en) * 2017-10-16 2018-03-13 平安科技(深圳)有限公司 Enterprise name recognition methods, electronic equipment and computer-readable recording medium
CN107797988A (en) * 2017-10-12 2018-03-13 北京知道未来信息技术有限公司 A kind of mixing language material name entity recognition method based on Bi LSTM
CN107832289A (en) * 2017-10-12 2018-03-23 北京知道未来信息技术有限公司 A kind of name entity recognition method based on LSTM CNN
CN107832400A (en) * 2017-11-01 2018-03-23 山东大学 A kind of method that location-based LSTM and CNN conjunctive models carry out relation classification
CN107844472A (en) * 2017-07-18 2018-03-27 阿里巴巴集团控股有限公司 Term vector processing method, device and electronic equipment
CN107885721A (en) * 2017-10-12 2018-04-06 北京知道未来信息技术有限公司 A kind of name entity recognition method based on LSTM
CN107908614A (en) * 2017-10-12 2018-04-13 北京知道未来信息技术有限公司 A kind of name entity recognition method based on Bi LSTM
CN107943847A (en) * 2017-11-02 2018-04-20 平安科技(深圳)有限公司 Business connection extracting method, device and storage medium
CN107967251A (en) * 2017-10-12 2018-04-27 北京知道未来信息技术有限公司 A kind of name entity recognition method based on Bi-LSTM-CNN
CN107977353A (en) * 2017-10-12 2018-05-01 北京知道未来信息技术有限公司 A kind of mixing language material name entity recognition method based on LSTM-CNN
CN107992468A (en) * 2017-10-12 2018-05-04 北京知道未来信息技术有限公司 A kind of mixing language material name entity recognition method based on LSTM
CN108038104A (en) * 2017-12-22 2018-05-15 北京奇艺世纪科技有限公司 A kind of method and device of Entity recognition
CN108170675A (en) * 2017-12-27 2018-06-15 哈尔滨福满科技有限责任公司 A kind of name entity recognition method based on deep learning towards medical field
CN108182976A (en) * 2017-12-28 2018-06-19 西安交通大学 A kind of clinical medicine information extracting method based on neural network
CN108228564A (en) * 2018-01-04 2018-06-29 苏州大学 The name entity recognition method of confrontation study is carried out in crowdsourcing data
CN108228568A (en) * 2018-01-24 2018-06-29 上海互教教育科技有限公司 A kind of mathematical problem semantic understanding method
CN108229582A (en) * 2018-02-01 2018-06-29 浙江大学 Entity recognition dual training method is named in a kind of multitask towards medical domain
CN108268444A (en) * 2018-01-10 2018-07-10 南京邮电大学 A kind of Chinese word cutting method based on two-way LSTM, CNN and CRF
CN108268643A (en) * 2018-01-22 2018-07-10 北京邮电大学 A kind of Deep Semantics matching entities link method based on more granularity LSTM networks
CN108334567A (en) * 2018-01-16 2018-07-27 北京奇艺世纪科技有限公司 Rubbish text method of discrimination, device and server
CN108363695A (en) * 2018-02-23 2018-08-03 西南交通大学 A kind of user comment attribute extraction method based on bidirectional dependency syntax tree characterization
CN108388560A (en) * 2018-03-17 2018-08-10 北京工业大学 GRU-CRF meeting title recognition methods based on language model
CN108460013A (en) * 2018-01-30 2018-08-28 大连理工大学 A kind of sequence labelling model based on fine granularity vocabulary representation model
CN108491382A (en) * 2018-03-14 2018-09-04 四川大学 A kind of semi-supervised biomedical text semantic disambiguation method
CN108536679A (en) * 2018-04-13 2018-09-14 腾讯科技(成都)有限公司 Name entity recognition method, device, equipment and computer readable storage medium
CN108536754A (en) * 2018-03-14 2018-09-14 四川大学 Electronic health record entity relation extraction method based on BLSTM and attention mechanism
CN108563725A (en) * 2018-04-04 2018-09-21 华东理工大学 A kind of Chinese symptom and sign composition recognition methods
CN108563626A (en) * 2018-01-22 2018-09-21 北京颐圣智能科技有限公司 Medical text name entity recognition method and device
CN108628823A (en) * 2018-03-14 2018-10-09 中山大学 In conjunction with the name entity recognition method of attention mechanism and multitask coordinated training
CN108647225A (en) * 2018-03-23 2018-10-12 浙江大学 A kind of electric business grey black production public sentiment automatic mining method and system
CN108717406A (en) * 2018-05-10 2018-10-30 平安科技(深圳)有限公司 Text mood analysis method, device and storage medium
CN108717410A (en) * 2018-05-17 2018-10-30 达而观信息科技(上海)有限公司 Name entity recognition method and system
CN108762523A (en) * 2018-06-04 2018-11-06 重庆大学 Output characters through input method prediction technique based on capsule networks
CN108805224A (en) * 2018-05-28 2018-11-13 中国人民解放军国防科技大学 Multi-symbol hand-drawn sketch recognition method and device with sustainable learning ability
CN108804654A (en) * 2018-06-07 2018-11-13 重庆邮电大学 A kind of collaborative virtual learning environment construction method based on intelligent answer
CN108829719A (en) * 2018-05-07 2018-11-16 中国科学院合肥物质科学研究院 The non-true class quiz answers selection method of one kind and system
CN108829681A (en) * 2018-06-28 2018-11-16 北京神州泰岳软件股份有限公司 A kind of name entity extraction method and device
CN108874765A (en) * 2017-05-15 2018-11-23 阿里巴巴集团控股有限公司 Term vector processing method and processing device
CN108874997A (en) * 2018-06-13 2018-11-23 广东外语外贸大学 A kind of name name entity recognition method towards film comment
CN108875034A (en) * 2018-06-25 2018-11-23 湖南丹尼尔智能科技有限公司 A kind of Chinese Text Categorization based on stratification shot and long term memory network
CN108920468A (en) * 2018-05-07 2018-11-30 内蒙古工业大学 A kind of bilingual kind of inter-translation method of illiteracy Chinese based on intensified learning
CN108920445A (en) * 2018-04-23 2018-11-30 华中科技大学鄂州工业技术研究院 A kind of name entity recognition method and device based on Bi-LSTM-CRF model
CN108920448A (en) * 2018-05-17 2018-11-30 南京大学 A method of the comparison based on shot and long term memory network extracts
CN108920446A (en) * 2018-04-25 2018-11-30 华中科技大学鄂州工业技术研究院 A kind of processing method of Engineering document
CN108932226A (en) * 2018-05-29 2018-12-04 华东师范大学 A kind of pair of method without punctuate text addition punctuation mark
WO2018218706A1 (en) * 2017-05-27 2018-12-06 中国矿业大学 Method and system for extracting news event based on neural network
CN108959252A (en) * 2018-06-28 2018-12-07 中国人民解放军国防科技大学 Semi-supervised Chinese named entity recognition method based on deep learning
CN108984520A (en) * 2018-06-19 2018-12-11 中国科学院自动化研究所 Stratification text subject dividing method
CN109002436A (en) * 2018-07-12 2018-12-14 上海金仕达卫宁软件科技有限公司 Medical text terms automatic identifying method and system based on shot and long term memory network
CN109117472A (en) * 2018-11-12 2019-01-01 新疆大学 A kind of Uighur name entity recognition method based on deep learning
CN109145286A (en) * 2018-07-02 2019-01-04 昆明理工大学 Based on BiLSTM-CRF neural network model and merge the Noun Phrase Recognition Methods of Vietnamese language feature
CN109165384A (en) * 2018-08-23 2019-01-08 成都四方伟业软件股份有限公司 A kind of name entity recognition method and device
CN109165279A (en) * 2018-09-06 2019-01-08 深圳和而泰数据资源与云技术有限公司 information extraction method and device
CN109213997A (en) * 2018-08-16 2019-01-15 昆明理工大学 A kind of Chinese word cutting method based on two-way length memory network model in short-term
CN109241520A (en) * 2018-07-18 2019-01-18 五邑大学 A kind of sentence trunk analysis method and system based on the multilayer error Feedback Neural Network for segmenting and naming Entity recognition
CN109255020A (en) * 2018-09-11 2019-01-22 浙江大学 A method of talked with using convolution and generates model solution dialogue generation task
CN109255119A (en) * 2018-07-18 2019-01-22 五邑大学 A kind of sentence trunk analysis method and system based on the multitask deep neural network for segmenting and naming Entity recognition
CN109271494A (en) * 2018-08-10 2019-01-25 西安交通大学 A system for automatically extracting the focus of Chinese question and answer statements
CN109271631A (en) * 2018-09-12 2019-01-25 广州多益网络股份有限公司 Segmenting method, device, equipment and storage medium
CN109284361A (en) * 2018-09-29 2019-01-29 深圳追科技有限公司 A kind of entity abstracting method and system based on deep learning
CN109284400A (en) * 2018-11-28 2019-01-29 电子科技大学 A Named Entity Recognition Method Based on Lattice LSTM and Language Model
CN109299458A (en) * 2018-09-12 2019-02-01 广州多益网络股份有限公司 Entity recognition method, device, equipment and storage medium
CN109308304A (en) * 2018-09-18 2019-02-05 深圳和而泰数据资源与云技术有限公司 Information extraction method and device
CN109359291A (en) * 2018-08-28 2019-02-19 昆明理工大学 A Named Entity Recognition Method
CN109388807A (en) * 2018-10-30 2019-02-26 中山大学 The method, apparatus and storage medium of electronic health record name Entity recognition
CN109388795A (en) * 2017-08-07 2019-02-26 芋头科技(杭州)有限公司 A kind of name entity recognition method, language identification method and system
CN109426660A (en) * 2017-08-17 2019-03-05 中国海洋大学 English email composition assistant based on long memory network in short-term
CN109446514A (en) * 2018-09-18 2019-03-08 平安科技(深圳)有限公司 Construction method, device and the computer equipment of news property identification model
CN109446521A (en) * 2018-10-18 2019-03-08 京东方科技集团股份有限公司 Name entity recognition method, device, electronic equipment, machine readable storage medium
CN109471895A (en) * 2018-10-29 2019-03-15 清华大学 Method and system for phenotype extraction and phenotype name normalization from electronic medical records
CN109492215A (en) * 2018-09-18 2019-03-19 平安科技(深圳)有限公司 News property recognition methods, device, computer equipment and storage medium
CN109493956A (en) * 2018-10-15 2019-03-19 海口市人民医院(中南大学湘雅医学院附属海口医院) Diagnosis guiding method
CN109493166A (en) * 2018-10-23 2019-03-19 深圳智能思创科技有限公司 A kind of construction method for e-commerce shopping guide's scene Task conversational system
CN109543764A (en) * 2018-11-28 2019-03-29 安徽省公共气象服务中心 A kind of warning information legitimacy detection method and detection system based on intelligent semantic perception
CN109558569A (en) * 2018-12-14 2019-04-02 昆明理工大学 A kind of Laotian part-of-speech tagging method based on BiLSTM+CRF model
CN109657239A (en) * 2018-12-12 2019-04-19 电子科技大学 The Chinese name entity recognition method learnt based on attention mechanism and language model
CN109657135A (en) * 2018-11-13 2019-04-19 华南理工大学 A kind of scholar user neural network based draws a portrait information extraction method and model
CN109670164A (en) * 2018-04-11 2019-04-23 东莞迪赛软件技术有限公司 Healthy the analysis of public opinion method based on the more word insertion Bi-LSTM residual error networks of deep layer
CN109670172A (en) * 2018-12-06 2019-04-23 桂林电子科技大学 A kind of scenic spot anomalous event abstracting method based on complex neural network
CN109710922A (en) * 2018-12-06 2019-05-03 深港产学研基地产业发展中心 Text recognition method, apparatus, computer equipment and storage medium
CN109753660A (en) * 2019-01-07 2019-05-14 福州大学 An LSTM-based Named Entity Extraction Method for Winning Web Pages
CN109815952A (en) * 2019-01-24 2019-05-28 珠海市筑巢科技有限公司 Brand name recognition methods, computer installation and computer readable storage medium
CN109815253A (en) * 2018-12-26 2019-05-28 出门问问信息科技有限公司 A kind of the subject entity recognition method and device of query statement
CN109871535A (en) * 2019-01-16 2019-06-11 四川大学 A French Named Entity Recognition Method Based on Deep Neural Network
CN109871843A (en) * 2017-12-01 2019-06-11 北京搜狗科技发展有限公司 Character identifying method and device, the device for character recognition
CN109871537A (en) * 2019-01-31 2019-06-11 沈阳雅译网络技术有限公司 A high-accuracy method for Thai clauses
CN109871545A (en) * 2019-04-22 2019-06-11 京东方科技集团股份有限公司 Named Entity Recognition Method and Device
CN109885702A (en) * 2019-01-17 2019-06-14 哈尔滨工业大学(深圳) Sequence labelling method, apparatus, equipment and storage medium in natural language processing
CN109918647A (en) * 2019-01-30 2019-06-21 中国科学院信息工程研究所 A Named Entity Recognition Method and Neural Network Model in Security Domain
CN109933801A (en) * 2019-03-25 2019-06-25 北京理工大学 Two-way LSTM based on predicted position attention names entity recognition method
CN109960782A (en) * 2018-12-27 2019-07-02 同济大学 A Tibetan word segmentation method and device based on deep neural network
CN109992770A (en) * 2019-03-04 2019-07-09 昆明理工大学 A Lao Named Entity Recognition Method Based on Combinatorial Neural Network
CN109992782A (en) * 2019-04-02 2019-07-09 深圳市华云中盛科技有限公司 Legal documents name entity recognition method, device and computer equipment
CN110008469A (en) * 2019-03-19 2019-07-12 桂林电子科技大学 A Multi-level Named Entity Recognition Method
CN110019795A (en) * 2017-11-09 2019-07-16 普天信息技术有限公司 The training method and system of sensitive word detection model
CN110019676A (en) * 2017-12-01 2019-07-16 北京搜狗科技发展有限公司 A kind of method, apparatus and equipment identifying core word in query information
CN110019711A (en) * 2017-11-27 2019-07-16 吴谨准 A kind of control method and device of pair of medicine text data structureization processing
CN110046353A (en) * 2019-04-22 2019-07-23 重庆理工大学 An Aspect-Level Sentiment Analysis Method Based on Multilingual Hierarchical Mechanism
WO2019149135A1 (en) * 2018-02-05 2019-08-08 阿里巴巴集团控股有限公司 Word vector generation method, apparatus and device
CN110110335A (en) * 2019-05-09 2019-08-09 南京大学 A kind of name entity recognition method based on Overlay model
CN110162749A (en) * 2018-10-22 2019-08-23 哈尔滨工业大学(深圳) Information extracting method, device, computer equipment and computer readable storage medium
CN110196963A (en) * 2018-02-27 2019-09-03 北京京东尚科信息技术有限公司 Model generation, the method for semantics recognition, system, equipment and storage medium
CN110223737A (en) * 2019-06-13 2019-09-10 电子科技大学 A kind of chemical composition of Chinese materia medica name entity recognition method and device
CN110222337A (en) * 2019-05-28 2019-09-10 浙江邦盛科技有限公司 A kind of Chinese address segmenting method based on transformer and CRF
CN110263325A (en) * 2019-05-17 2019-09-20 交通银行股份有限公司太平洋信用卡中心 Chinese automatic word-cut
CN110263323A (en) * 2019-05-08 2019-09-20 清华大学 Keyword extraction method and system based on fence-type long-short-term memory neural network
CN110298016A (en) * 2018-03-21 2019-10-01 普天信息技术有限公司 A kind of part-of-speech tagging method and device
CN110298035A (en) * 2019-06-04 2019-10-01 平安科技(深圳)有限公司 Word vector based on artificial intelligence defines method, apparatus, equipment and storage medium
CN110298036A (en) * 2019-06-06 2019-10-01 昆明理工大学 A kind of online medical text symptom identification method based on part of speech increment iterative
CN110308240A (en) * 2019-05-24 2019-10-08 深圳大学 A fast identification method of electronic nose
CN110321566A (en) * 2019-07-10 2019-10-11 北京邮电大学 Chinese name entity recognition method, device, computer equipment and storage medium
CN110321547A (en) * 2018-03-30 2019-10-11 北京四维图新科技股份有限公司 A kind of name entity determines method and device
WO2019205319A1 (en) * 2018-04-25 2019-10-31 平安科技(深圳)有限公司 Commodity information format processing method and apparatus, and computer device and storage medium
CN110444261A (en) * 2019-07-11 2019-11-12 新华三大数据技术有限公司 Sequence labelling network training method, electronic health record processing method and relevant apparatus
CN110490756A (en) * 2019-07-12 2019-11-22 北京邮电大学 Attention Mechanism-Based Method for Portraits of National Security Emergencies in Social Networks
CN110502742A (en) * 2019-07-11 2019-11-26 中国科学院计算技术研究所 A complex entity extraction method, device, medium and system
CN110555207A (en) * 2018-06-01 2019-12-10 海信集团有限公司 Sentence recognition method, sentence recognition device, machine equipment and computer-readable storage medium
CN110619124A (en) * 2019-09-19 2019-12-27 成都数之联科技有限公司 Named entity identification method and system combining attention mechanism and bidirectional LSTM
CN110678881A (en) * 2017-05-19 2020-01-10 易享信息技术有限公司 Natural language processing using context-specific word vectors
CN110688854A (en) * 2019-09-02 2020-01-14 平安科技(深圳)有限公司 Named entity recognition method, device and computer readable storage medium
CN110738182A (en) * 2019-10-21 2020-01-31 四川隧唐科技股份有限公司 LSTM model unit training method and device for high-precision identification of bid amount
CN110738319A (en) * 2019-11-11 2020-01-31 四川隧唐科技股份有限公司 LSTM model unit training method and device for recognizing bid-winning units based on CRF
CN110750992A (en) * 2019-10-09 2020-02-04 吉林大学 Named entity recognition method, device, electronic equipment and medium
CN110750965A (en) * 2019-09-16 2020-02-04 平安科技(深圳)有限公司 English text sequence labeling method and system and computer equipment
CN110826298A (en) * 2019-11-13 2020-02-21 北京万里红科技股份有限公司 Statement coding method used in intelligent auxiliary password-fixing system
CN110851597A (en) * 2019-10-28 2020-02-28 青岛聚好联科技有限公司 Method and device for sentence annotation based on similar entity replacement
CN110852103A (en) * 2019-10-28 2020-02-28 青岛聚好联科技有限公司 Named entity identification method and device
CN110867225A (en) * 2019-11-04 2020-03-06 山东师范大学 Character-level clinical concept extraction named entity recognition method and system
CN110956041A (en) * 2019-11-27 2020-04-03 重庆邮电大学 Depth learning-based co-purchase recombination bulletin summarization method
CN111008526A (en) * 2019-12-06 2020-04-14 安徽理工大学 A Named Entity Recognition Method Based on Two-Channel Neural Network
CN111027325A (en) * 2019-12-09 2020-04-17 北京知道创宇信息技术股份有限公司 Model generation method, entity identification device and electronic equipment
CN111104437A (en) * 2018-10-09 2020-05-05 哈尔滨工业大学 Method and system for unified retrieval of test data based on object model
CN111143574A (en) * 2019-12-05 2020-05-12 大连民族大学 Query and visualization system construction method based on minority culture knowledge graph
CN111160031A (en) * 2019-12-13 2020-05-15 华南理工大学 Social media named entity identification method based on affix perception
CN111177414A (en) * 2019-12-31 2020-05-19 厦门快商通科技股份有限公司 Entity pre-labeling method, device and equipment
CN111191668A (en) * 2018-11-15 2020-05-22 零氪科技(北京)有限公司 Method for identifying disease content in medical record text
CN111191452A (en) * 2019-12-24 2020-05-22 中国铁道科学研究院集团有限公司电子计算技术研究所 Railway text named entity recognition method and device
CN111209738A (en) * 2019-12-31 2020-05-29 浙江大学 A multi-task named entity recognition method for joint text classification
CN111259672A (en) * 2020-02-12 2020-06-09 新疆大学 Chinese tourism field named entity identification method based on graph convolution neural network
CN111274820A (en) * 2020-02-20 2020-06-12 齐鲁工业大学 A kind of intelligent medical named entity recognition method and device based on neural network
CN111274395A (en) * 2020-01-19 2020-06-12 河海大学 Recognition method of power grid monitoring alarm events based on convolution and long short-term memory network
CN111368542A (en) * 2018-12-26 2020-07-03 北京大学 A method and system for text-language association extraction based on recurrent neural network
RU2726739C1 (en) * 2019-07-29 2020-07-15 Бейджин Сяоми Интеллиджент Текнолоджи Ко., Лтд. Method, apparatus and device for natural language processing
CN111444715A (en) * 2020-03-24 2020-07-24 腾讯科技(深圳)有限公司 Entity relationship identification method and device, computer equipment and storage medium
CN111476022A (en) * 2020-05-15 2020-07-31 湖南工商大学 Character embedding of entity features and hybrid LSTM entity recognition method, system and medium
CN111523325A (en) * 2020-04-20 2020-08-11 电子科技大学 Chinese named entity recognition method based on strokes
CN111563380A (en) * 2019-01-25 2020-08-21 浙江大学 A named entity recognition method and device thereof
CN111581474A (en) * 2020-04-02 2020-08-25 昆明理工大学 Evaluation object extraction method of case-related microblog comments based on multi-head attention system
CN111597792A (en) * 2020-03-05 2020-08-28 苏州浪潮智能科技有限公司 Sentence-level convolution LSTM training method, equipment and readable medium
CN111694936A (en) * 2020-04-26 2020-09-22 平安科技(深圳)有限公司 Method and device for identifying AI intelligent interview, computer equipment and storage medium
CN111742322A (en) * 2017-12-29 2020-10-02 罗伯特·博世有限公司 System and method for domain- and language-independent definition extraction using deep neural networks
CN111739520A (en) * 2020-08-10 2020-10-02 腾讯科技(深圳)有限公司 Speech recognition model training method, speech recognition method and device
CN111737949A (en) * 2020-07-22 2020-10-02 江西风向标教育科技有限公司 Topic content extraction method and device, readable storage medium and computer equipment
CN111950277A (en) * 2019-04-30 2020-11-17 中移(苏州)软件技术有限公司 Business entity determination method, device and storage medium
CN111967265A (en) * 2020-08-31 2020-11-20 广东工业大学 Chinese word segmentation and entity identification combined learning method capable of automatically generating data set
WO2020232861A1 (en) * 2019-05-20 2020-11-26 平安科技(深圳)有限公司 Named entity recognition method, electronic device and storage medium
CN112084783A (en) * 2020-09-24 2020-12-15 中国民航大学 Entity identification method and system based on civil aviation non-civilized passengers
CN112115714A (en) * 2020-09-25 2020-12-22 平安国际智慧城市科技股份有限公司 Deep learning sequence labeling method and device and computer readable storage medium
CN112115719A (en) * 2020-08-31 2020-12-22 山东师范大学 Chinese medicine medical record named entity recognition method and system based on multi-head attention mechanism
CN112131350A (en) * 2020-09-30 2020-12-25 腾讯科技(深圳)有限公司 Text label determination method, text label determination device, terminal and readable storage medium
CN112183086A (en) * 2020-09-23 2021-01-05 北京先声智能科技有限公司 English pronunciation continuous reading mark model based on sense group labeling
CN112307764A (en) * 2019-07-30 2021-02-02 百度(美国)有限责任公司 Coreference-aware representation learning for neural named entity recognition
CN112395882A (en) * 2020-12-07 2021-02-23 震坤行网络技术(南京)有限公司 Method, electronic device and storage medium for named entity recognition
CN112599124A (en) * 2020-11-20 2021-04-02 内蒙古电力(集团)有限责任公司电力调度控制分公司 Voice scheduling method and system for power grid scheduling
CN112651245A (en) * 2020-12-28 2021-04-13 南京邮电大学 Sequence annotation model and sequence annotation method
WO2021073179A1 (en) * 2019-10-15 2021-04-22 华为技术有限公司 Named entity identification method and device, and computer-readable storage medium
CN112989796A (en) * 2021-03-10 2021-06-18 北京大学 Text named entity information identification method based on syntactic guidance
CN113035303A (en) * 2021-02-09 2021-06-25 北京工业大学 Method and system for labeling named entity category of Chinese electronic medical record
CN113076127A (en) * 2021-04-25 2021-07-06 南京大学 Method, system, electronic device and medium for extracting question and answer content in programming environment
US11055557B2 (en) 2018-04-05 2021-07-06 Walmart Apollo, Llc Automated extraction of product attributes from images
CN113190602A (en) * 2021-04-09 2021-07-30 桂林电子科技大学 Event joint extraction method integrating word features and deep learning
CN113255320A (en) * 2021-05-13 2021-08-13 北京熙紫智数科技有限公司 Entity relation extraction method and device based on syntax tree and graph attention machine mechanism
CN113326380A (en) * 2021-08-03 2021-08-31 国能大渡河大数据服务有限公司 Equipment measurement data processing method, system and terminal based on deep neural network
CN113377953A (en) * 2021-05-31 2021-09-10 电子科技大学 Entity fusion and classification method based on PALC-DCA model
CN113488196A (en) * 2021-07-26 2021-10-08 西南交通大学 Drug specification text named entity recognition modeling method
CN113515946A (en) * 2021-06-22 2021-10-19 湖北亿咖通科技有限公司 Information processing method and device
CN113536799A (en) * 2021-08-10 2021-10-22 西南交通大学 Medical named entity recognition modeling method based on fusion attention
CN113627190A (en) * 2021-08-27 2021-11-09 上海复深蓝软件股份有限公司 Visualized data conversion method and device, computer equipment and storage medium
CN114021658A (en) * 2021-11-10 2022-02-08 北京交通大学 A training method, application method and system for named entity recognition model
CN114239584A (en) * 2021-12-15 2022-03-25 杭州电子科技大学 Named entity identification method based on self-supervision learning
CN114386425A (en) * 2022-03-24 2022-04-22 天津思睿信息技术有限公司 Big data system establishing method for processing natural language text content
CN114444485A (en) * 2022-01-24 2022-05-06 四川大学 A method for entity identification of network equipment in cloud environment
US11487944B1 (en) * 2019-12-09 2022-11-01 Asapp, Inc. System, method, and computer program for obtaining a unified named entity recognition model with the collective predictive capabilities of teacher models with different tag sets using marginal distillation
US11521639B1 (en) 2021-04-02 2022-12-06 Asapp, Inc. Speech sentiment analysis using a speech sentiment classifier pretrained with pseudo sentiment labels
CN115659981A (en) * 2022-11-09 2023-01-31 大连大学 Named entity recognition method based on neural network model
CN115688777A (en) * 2022-09-28 2023-02-03 北京邮电大学 A Named Entity Recognition System for Nested and Discontinuous Entities in Chinese Financial Texts
US11593558B2 (en) * 2017-08-31 2023-02-28 Ebay Inc. Deep hybrid neural network for named entity recognition
CN115730085A (en) * 2022-11-24 2023-03-03 国网江苏省电力有限公司南京供电分公司 Method and system for constructing power grid dispatching automation system equipment state evaluation model
CN116340530A (en) * 2023-02-17 2023-06-27 江苏科技大学 Intelligent Design Method Based on Mechanical Knowledge Graph
US11763803B1 (en) 2021-07-28 2023-09-19 Asapp, Inc. System, method, and computer program for extracting utterances corresponding to a user problem statement in a conversation between a human agent and a user
US12067363B1 (en) 2022-02-24 2024-08-20 Asapp, Inc. System, method, and computer program for text sanitization
CN119207778A (en) * 2024-11-22 2024-12-27 长春中医药大学 A method for recommending ENT nursing plans based on knowledge graph

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104933152A (en) * 2015-06-24 2015-09-23 北京京东尚科信息技术有限公司 Named entity recognition method and device
CN105260360A (en) * 2015-10-27 2016-01-20 小米科技有限责任公司 Named entity identification method and device
CN105630768A (en) * 2015-12-23 2016-06-01 北京理工大学 Cascaded conditional random field-based product name recognition method and device

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104933152A (en) * 2015-06-24 2015-09-23 北京京东尚科信息技术有限公司 Named entity recognition method and device
CN105260360A (en) * 2015-10-27 2016-01-20 小米科技有限责任公司 Named entity identification method and device
CN105630768A (en) * 2015-12-23 2016-06-01 北京理工大学 Cascaded conditional random field-based product name recognition method and device

Non-Patent Citations (4)

* Cited by examiner, † Cited by third party
Title
C´ICERO NOGUEIRA DOS SANTOS 等: "Learning Character-level Representations for Part-of-Speech Tagging", 《PROCEEDINGS OF THE 31ST INTERNATIONAL CONFERENCE ON MACHINE LEARNING》 *
GUILLAUME LAMPLE 等: "Neural Architectures for Named Entity Recognition", 《PROCEEDINGS OF NAACL-HLT 2016》 *
JASON P.C. CHIU 等: "Named Entity Recognition with Bidirectional LSTM-CNNs", 《TRANSACTIONS OF THE ASSOCIATION FOR COMPUTATIONAL LINGUISTICS》 *
XUEZHE MA 等: "End-to-end Sequence Labeling via Bi-directional LSTM-CNNs-CRF", 《HTTP://ARXIV.ORG/PDF/1603.01354.PDF》 *

Cited By (296)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108874765B (en) * 2017-05-15 2021-12-24 创新先进技术有限公司 Word vector processing method and device
CN108874765A (en) * 2017-05-15 2018-11-23 阿里巴巴集团控股有限公司 Term vector processing method and processing device
CN110678881B (en) * 2017-05-19 2023-10-03 硕动力公司 Natural language processing using context-specific word vectors
CN110678881A (en) * 2017-05-19 2020-01-10 易享信息技术有限公司 Natural language processing using context-specific word vectors
WO2018218706A1 (en) * 2017-05-27 2018-12-06 中国矿业大学 Method and system for extracting news event based on neural network
CN107220506A (en) * 2017-06-05 2017-09-29 东华大学 Breast cancer risk assessment and analysis system based on deep convolutional neural network
CN107247704B (en) * 2017-06-09 2020-09-08 阿里巴巴集团控股有限公司 Word vector processing method and device and electronic equipment
CN107247704A (en) * 2017-06-09 2017-10-13 阿里巴巴集团控股有限公司 Term vector processing method, device and electronic equipment
CN107168957A (en) * 2017-06-12 2017-09-15 云南大学 A kind of Chinese word cutting method
CN107451433B (en) * 2017-06-27 2020-05-22 中国科学院信息工程研究所 A text content-based information source identification method and device
CN107451433A (en) * 2017-06-27 2017-12-08 中国科学院信息工程研究所 A kind of information source identification method and apparatus based on content of text
CN107562716A (en) * 2017-07-18 2018-01-09 阿里巴巴集团控股有限公司 Term vector processing method, device and electronic equipment
CN107844472A (en) * 2017-07-18 2018-03-27 阿里巴巴集团控股有限公司 Term vector processing method, device and electronic equipment
CN107844472B (en) * 2017-07-18 2021-08-24 创新先进技术有限公司 Word vector processing method, device and electronic device
CN107562784A (en) * 2017-07-25 2018-01-09 同济大学 Short text classification method based on ResLCNN models
CN107609009A (en) * 2017-07-26 2018-01-19 北京大学深圳研究院 Text sentiment analysis method, device, storage medium and computer equipment
CN109388795B (en) * 2017-08-07 2022-11-08 芋头科技(杭州)有限公司 Named entity recognition method, language recognition method and system
CN109388795A (en) * 2017-08-07 2019-02-26 芋头科技(杭州)有限公司 A kind of name entity recognition method, language identification method and system
CN109426660A (en) * 2017-08-17 2019-03-05 中国海洋大学 English email composition assistant based on long memory network in short-term
CN107526798B (en) * 2017-08-18 2020-09-01 武汉红茶数据技术有限公司 A joint method and model of entity recognition and normalization based on neural network
CN107526799A (en) * 2017-08-18 2017-12-29 武汉红茶数据技术有限公司 A kind of knowledge mapping construction method based on deep learning
CN107526798A (en) * 2017-08-18 2017-12-29 武汉红茶数据技术有限公司 A kind of Entity recognition based on neutral net and standardization integrated processes and model
US11593558B2 (en) * 2017-08-31 2023-02-28 Ebay Inc. Deep hybrid neural network for named entity recognition
CN107622050A (en) * 2017-09-14 2018-01-23 武汉烽火普天信息技术有限公司 Text sequence labeling system and method based on Bi LSTM and CRF
CN107622050B (en) * 2017-09-14 2021-02-26 武汉烽火普天信息技术有限公司 Bi-LSTM and CRF-based text sequence labeling system and method
CN107545571A (en) * 2017-09-22 2018-01-05 深圳天琴医疗科技有限公司 A kind of image detecting method and device
CN107729326A (en) * 2017-09-25 2018-02-23 沈阳航空航天大学 Neural machine translation method based on Multi BiRNN codings
CN107729326B (en) * 2017-09-25 2020-12-25 沈阳航空航天大学 Multi-BiRNN coding-based neural machine translation method
CN107644014A (en) * 2017-09-25 2018-01-30 南京安链数据科技有限公司 A kind of name entity recognition method based on two-way LSTM and CRF
CN107608970A (en) * 2017-09-29 2018-01-19 百度在线网络技术(北京)有限公司 part-of-speech tagging model generating method and device
CN107608970B (en) * 2017-09-29 2024-04-26 百度在线网络技术(北京)有限公司 Part-of-speech tagging model generation method and device
CN107992468A (en) * 2017-10-12 2018-05-04 北京知道未来信息技术有限公司 A kind of mixing language material name entity recognition method based on LSTM
CN107797987B (en) * 2017-10-12 2021-02-09 北京知道未来信息技术有限公司 Bi-LSTM-CNN-based mixed corpus named entity identification method
CN107885721A (en) * 2017-10-12 2018-04-06 北京知道未来信息技术有限公司 A kind of name entity recognition method based on LSTM
CN107832289A (en) * 2017-10-12 2018-03-23 北京知道未来信息技术有限公司 A kind of name entity recognition method based on LSTM CNN
CN107797988A (en) * 2017-10-12 2018-03-13 北京知道未来信息技术有限公司 A kind of mixing language material name entity recognition method based on Bi LSTM
CN107908614A (en) * 2017-10-12 2018-04-13 北京知道未来信息技术有限公司 A kind of name entity recognition method based on Bi LSTM
CN107977353A (en) * 2017-10-12 2018-05-01 北京知道未来信息技术有限公司 A kind of mixing language material name entity recognition method based on LSTM-CNN
CN107967251A (en) * 2017-10-12 2018-04-27 北京知道未来信息技术有限公司 A kind of name entity recognition method based on Bi-LSTM-CNN
CN107797987A (en) * 2017-10-12 2018-03-13 北京知道未来信息技术有限公司 A kind of mixing language material name entity recognition method based on Bi LSTM CNN
WO2019075967A1 (en) * 2017-10-16 2019-04-25 平安科技(深圳)有限公司 Enterprise name recognition method, electronic device, and computer-readable storage medium
CN107797989A (en) * 2017-10-16 2018-03-13 平安科技(深圳)有限公司 Enterprise name recognition methods, electronic equipment and computer-readable recording medium
CN107679224B (en) * 2017-10-20 2020-09-08 竹间智能科技(上海)有限公司 A method and system for intelligent question answering for unstructured text
CN107679224A (en) * 2017-10-20 2018-02-09 竹间智能科技(上海)有限公司 It is a kind of towards the method and system without structure text intelligent answer
CN107679234B (en) * 2017-10-24 2020-02-11 上海携程国际旅行社有限公司 Customer service information providing method, customer service information providing device, electronic equipment and storage medium
CN107679234A (en) * 2017-10-24 2018-02-09 上海携程国际旅行社有限公司 Customer service information providing method, device, electronic equipment, storage medium
CN107832400B (en) * 2017-11-01 2019-04-16 山东大学 A kind of method that location-based LSTM and CNN conjunctive model carries out relationship classification
CN107832400A (en) * 2017-11-01 2018-03-23 山东大学 A kind of method that location-based LSTM and CNN conjunctive models carry out relation classification
CN107943847B (en) * 2017-11-02 2019-05-17 平安科技(深圳)有限公司 Business connection extracting method, device and storage medium
CN107943847A (en) * 2017-11-02 2018-04-20 平安科技(深圳)有限公司 Business connection extracting method, device and storage medium
CN110019795A (en) * 2017-11-09 2019-07-16 普天信息技术有限公司 The training method and system of sensitive word detection model
CN107797992A (en) * 2017-11-10 2018-03-13 北京百分点信息科技有限公司 Name entity recognition method and device
CN110019711A (en) * 2017-11-27 2019-07-16 吴谨准 A kind of control method and device of pair of medicine text data structureization processing
CN110019676A (en) * 2017-12-01 2019-07-16 北京搜狗科技发展有限公司 A kind of method, apparatus and equipment identifying core word in query information
CN109871843A (en) * 2017-12-01 2019-06-11 北京搜狗科技发展有限公司 Character identifying method and device, the device for character recognition
CN109871843B (en) * 2017-12-01 2022-04-08 北京搜狗科技发展有限公司 Character recognition method and device for character recognition
CN108038104A (en) * 2017-12-22 2018-05-15 北京奇艺世纪科技有限公司 A kind of method and device of Entity recognition
CN108170675A (en) * 2017-12-27 2018-06-15 哈尔滨福满科技有限责任公司 A kind of name entity recognition method based on deep learning towards medical field
CN108182976A (en) * 2017-12-28 2018-06-19 西安交通大学 A kind of clinical medicine information extracting method based on neural network
CN111742322A (en) * 2017-12-29 2020-10-02 罗伯特·博世有限公司 System and method for domain- and language-independent definition extraction using deep neural networks
CN108228564B (en) * 2018-01-04 2021-02-19 苏州大学 Named entity recognition method, device and readable storage medium for counterlearning on crowdsourced data
CN108228564A (en) * 2018-01-04 2018-06-29 苏州大学 The name entity recognition method of confrontation study is carried out in crowdsourcing data
CN108268444B (en) * 2018-01-10 2021-11-02 南京邮电大学 A Chinese word segmentation method based on bidirectional LSTM, CNN and CRF
CN108268444A (en) * 2018-01-10 2018-07-10 南京邮电大学 A kind of Chinese word cutting method based on two-way LSTM, CNN and CRF
CN108334567A (en) * 2018-01-16 2018-07-27 北京奇艺世纪科技有限公司 Rubbish text method of discrimination, device and server
CN108563626A (en) * 2018-01-22 2018-09-21 北京颐圣智能科技有限公司 Medical text name entity recognition method and device
CN108268643A (en) * 2018-01-22 2018-07-10 北京邮电大学 A kind of Deep Semantics matching entities link method based on more granularity LSTM networks
CN108563626B (en) * 2018-01-22 2022-01-25 北京颐圣智能科技有限公司 Medical text named entity recognition method and device
CN108228568B (en) * 2018-01-24 2021-06-04 上海互教教育科技有限公司 Mathematical problem semantic understanding method
CN108228568A (en) * 2018-01-24 2018-06-29 上海互教教育科技有限公司 A kind of mathematical problem semantic understanding method
CN108460013A (en) * 2018-01-30 2018-08-28 大连理工大学 A kind of sequence labelling model based on fine granularity vocabulary representation model
CN108460013B (en) * 2018-01-30 2021-08-20 大连理工大学 A sequence tagging model and method based on a fine-grained word representation model
CN108229582A (en) * 2018-02-01 2018-06-29 浙江大学 Entity recognition dual training method is named in a kind of multitask towards medical domain
WO2019149135A1 (en) * 2018-02-05 2019-08-08 阿里巴巴集团控股有限公司 Word vector generation method, apparatus and device
US11030411B2 (en) 2018-02-05 2021-06-08 Alibaba Group Holding Limited Methods, apparatuses, and devices for generating word vectors
CN108363695A (en) * 2018-02-23 2018-08-03 西南交通大学 A kind of user comment attribute extraction method based on bidirectional dependency syntax tree characterization
CN108363695B (en) * 2018-02-23 2020-04-24 西南交通大学 User comment attribute extraction method based on bidirectional dependency syntax tree representation
CN110196963A (en) * 2018-02-27 2019-09-03 北京京东尚科信息技术有限公司 Model generation, the method for semantics recognition, system, equipment and storage medium
CN108491382A (en) * 2018-03-14 2018-09-04 四川大学 A kind of semi-supervised biomedical text semantic disambiguation method
CN108628823A (en) * 2018-03-14 2018-10-09 中山大学 In conjunction with the name entity recognition method of attention mechanism and multitask coordinated training
CN108536754A (en) * 2018-03-14 2018-09-14 四川大学 Electronic health record entity relation extraction method based on BLSTM and attention mechanism
CN108628823B (en) * 2018-03-14 2022-07-01 中山大学 A Named Entity Recognition Method Combining Attention Mechanism and Multi-task Co-training
CN108388560A (en) * 2018-03-17 2018-08-10 北京工业大学 GRU-CRF meeting title recognition methods based on language model
CN110298016A (en) * 2018-03-21 2019-10-01 普天信息技术有限公司 A kind of part-of-speech tagging method and device
CN108647225A (en) * 2018-03-23 2018-10-12 浙江大学 A kind of electric business grey black production public sentiment automatic mining method and system
CN110321547A (en) * 2018-03-30 2019-10-11 北京四维图新科技股份有限公司 A kind of name entity determines method and device
CN110321547B (en) * 2018-03-30 2024-06-11 北京四维图新科技股份有限公司 A method and device for determining named entity
CN108563725A (en) * 2018-04-04 2018-09-21 华东理工大学 A kind of Chinese symptom and sign composition recognition methods
US11055557B2 (en) 2018-04-05 2021-07-06 Walmart Apollo, Llc Automated extraction of product attributes from images
CN109670164B (en) * 2018-04-11 2024-09-20 东莞迪赛软件技术有限公司 Deep multi-word embedded Bi-LSTM residual network-based healthy public opinion analysis method
CN109670164A (en) * 2018-04-11 2019-04-23 东莞迪赛软件技术有限公司 Healthy the analysis of public opinion method based on the more word insertion Bi-LSTM residual error networks of deep layer
CN108536679B (en) * 2018-04-13 2022-05-20 腾讯科技(成都)有限公司 Named entity recognition method, device, equipment and computer readable storage medium
CN108536679A (en) * 2018-04-13 2018-09-14 腾讯科技(成都)有限公司 Name entity recognition method, device, equipment and computer readable storage medium
CN108920445B (en) * 2018-04-23 2022-06-17 华中科技大学鄂州工业技术研究院 Named entity identification method and device based on Bi-LSTM-CRF model
CN108920445A (en) * 2018-04-23 2018-11-30 华中科技大学鄂州工业技术研究院 A kind of name entity recognition method and device based on Bi-LSTM-CRF model
CN108920446A (en) * 2018-04-25 2018-11-30 华中科技大学鄂州工业技术研究院 A kind of processing method of Engineering document
WO2019205319A1 (en) * 2018-04-25 2019-10-31 平安科技(深圳)有限公司 Commodity information format processing method and apparatus, and computer device and storage medium
CN108829719A (en) * 2018-05-07 2018-11-16 中国科学院合肥物质科学研究院 The non-true class quiz answers selection method of one kind and system
CN108920468A (en) * 2018-05-07 2018-11-30 内蒙古工业大学 A kind of bilingual kind of inter-translation method of illiteracy Chinese based on intensified learning
CN108717406B (en) * 2018-05-10 2021-08-24 平安科技(深圳)有限公司 Text emotion analysis method and device and storage medium
CN108717406A (en) * 2018-05-10 2018-10-30 平安科技(深圳)有限公司 Text mood analysis method, device and storage medium
CN108717410A (en) * 2018-05-17 2018-10-30 达而观信息科技(上海)有限公司 Name entity recognition method and system
CN108920448B (en) * 2018-05-17 2021-09-14 南京大学 Comparison relation extraction method based on long-term and short-term memory network
CN108920448A (en) * 2018-05-17 2018-11-30 南京大学 A method of the comparison based on shot and long term memory network extracts
CN108805224A (en) * 2018-05-28 2018-11-13 中国人民解放军国防科技大学 Multi-symbol hand-drawn sketch recognition method and device with sustainable learning ability
CN108805224B (en) * 2018-05-28 2021-10-01 中国人民解放军国防科技大学 Multi-symbol hand-drawn sketch recognition method and device with sustainable learning ability
CN108932226A (en) * 2018-05-29 2018-12-04 华东师范大学 A kind of pair of method without punctuate text addition punctuation mark
CN110555207A (en) * 2018-06-01 2019-12-10 海信集团有限公司 Sentence recognition method, sentence recognition device, machine equipment and computer-readable storage medium
CN108762523A (en) * 2018-06-04 2018-11-06 重庆大学 Output characters through input method prediction technique based on capsule networks
CN108804654A (en) * 2018-06-07 2018-11-13 重庆邮电大学 A kind of collaborative virtual learning environment construction method based on intelligent answer
CN108874997A (en) * 2018-06-13 2018-11-23 广东外语外贸大学 A kind of name name entity recognition method towards film comment
CN108984520A (en) * 2018-06-19 2018-12-11 中国科学院自动化研究所 Stratification text subject dividing method
CN108875034A (en) * 2018-06-25 2018-11-23 湖南丹尼尔智能科技有限公司 A kind of Chinese Text Categorization based on stratification shot and long term memory network
CN108959252B (en) * 2018-06-28 2022-02-08 中国人民解放军国防科技大学 Semi-supervised Chinese named entity recognition method based on deep learning
CN108959252A (en) * 2018-06-28 2018-12-07 中国人民解放军国防科技大学 Semi-supervised Chinese named entity recognition method based on deep learning
CN108829681A (en) * 2018-06-28 2018-11-16 北京神州泰岳软件股份有限公司 A kind of name entity extraction method and device
CN108829681B (en) * 2018-06-28 2022-11-11 鼎富智能科技有限公司 Named entity extraction method and device
CN109145286A (en) * 2018-07-02 2019-01-04 昆明理工大学 Based on BiLSTM-CRF neural network model and merge the Noun Phrase Recognition Methods of Vietnamese language feature
CN109002436A (en) * 2018-07-12 2018-12-14 上海金仕达卫宁软件科技有限公司 Medical text terms automatic identifying method and system based on shot and long term memory network
CN109255119A (en) * 2018-07-18 2019-01-22 五邑大学 A kind of sentence trunk analysis method and system based on the multitask deep neural network for segmenting and naming Entity recognition
CN109241520A (en) * 2018-07-18 2019-01-18 五邑大学 A kind of sentence trunk analysis method and system based on the multilayer error Feedback Neural Network for segmenting and naming Entity recognition
CN109241520B (en) * 2018-07-18 2023-05-23 五邑大学 Sentence trunk analysis method and system based on multi-layer error feedback neural network for word segmentation and named entity recognition
CN109271494B (en) * 2018-08-10 2021-04-27 西安交通大学 System for automatically extracting focus of Chinese question and answer sentences
CN109271494A (en) * 2018-08-10 2019-01-25 西安交通大学 A system for automatically extracting the focus of Chinese question and answer statements
CN109213997A (en) * 2018-08-16 2019-01-15 昆明理工大学 A kind of Chinese word cutting method based on two-way length memory network model in short-term
CN109213997B (en) * 2018-08-16 2021-11-19 昆明理工大学 Chinese word segmentation method based on bidirectional long-time and short-time memory network model
CN109165384A (en) * 2018-08-23 2019-01-08 成都四方伟业软件股份有限公司 A kind of name entity recognition method and device
CN109359291A (en) * 2018-08-28 2019-02-19 昆明理工大学 A Named Entity Recognition Method
CN109165279A (en) * 2018-09-06 2019-01-08 深圳和而泰数据资源与云技术有限公司 information extraction method and device
CN109255020A (en) * 2018-09-11 2019-01-22 浙江大学 A method of talked with using convolution and generates model solution dialogue generation task
CN109271631B (en) * 2018-09-12 2023-01-24 广州多益网络股份有限公司 Word segmentation method, device, equipment and storage medium
CN109299458A (en) * 2018-09-12 2019-02-01 广州多益网络股份有限公司 Entity recognition method, device, equipment and storage medium
CN109271631A (en) * 2018-09-12 2019-01-25 广州多益网络股份有限公司 Segmenting method, device, equipment and storage medium
CN109299458B (en) * 2018-09-12 2023-03-28 广州多益网络股份有限公司 Entity identification method, device, equipment and storage medium
CN109308304A (en) * 2018-09-18 2019-02-05 深圳和而泰数据资源与云技术有限公司 Information extraction method and device
CN109492215A (en) * 2018-09-18 2019-03-19 平安科技(深圳)有限公司 News property recognition methods, device, computer equipment and storage medium
CN109446514A (en) * 2018-09-18 2019-03-08 平安科技(深圳)有限公司 Construction method, device and the computer equipment of news property identification model
CN109284361A (en) * 2018-09-29 2019-01-29 深圳追科技有限公司 A kind of entity abstracting method and system based on deep learning
CN111104437A (en) * 2018-10-09 2020-05-05 哈尔滨工业大学 Method and system for unified retrieval of test data based on object model
CN109493956A (en) * 2018-10-15 2019-03-19 海口市人民医院(中南大学湘雅医学院附属海口医院) Diagnosis guiding method
CN109446521A (en) * 2018-10-18 2019-03-08 京东方科技集团股份有限公司 Name entity recognition method, device, electronic equipment, machine readable storage medium
CN110162749A (en) * 2018-10-22 2019-08-23 哈尔滨工业大学(深圳) Information extracting method, device, computer equipment and computer readable storage medium
CN109493166A (en) * 2018-10-23 2019-03-19 深圳智能思创科技有限公司 A kind of construction method for e-commerce shopping guide's scene Task conversational system
CN109493166B (en) * 2018-10-23 2021-12-28 深圳智能思创科技有限公司 Construction method for task type dialogue system aiming at e-commerce shopping guide scene
CN109471895B (en) * 2018-10-29 2021-02-26 清华大学 Electronic medical record phenotype extraction and phenotype name normalization method and system
CN109471895A (en) * 2018-10-29 2019-03-15 清华大学 Method and system for phenotype extraction and phenotype name normalization from electronic medical records
CN109388807B (en) * 2018-10-30 2021-09-21 中山大学 Method, device and storage medium for identifying named entities of electronic medical records
CN109388807A (en) * 2018-10-30 2019-02-26 中山大学 The method, apparatus and storage medium of electronic health record name Entity recognition
CN109117472A (en) * 2018-11-12 2019-01-01 新疆大学 A kind of Uighur name entity recognition method based on deep learning
CN109657135B (en) * 2018-11-13 2023-06-23 华南理工大学 Scholars user portrait information extraction method and model based on neural network
CN109657135A (en) * 2018-11-13 2019-04-19 华南理工大学 A kind of scholar user neural network based draws a portrait information extraction method and model
CN111191668B (en) * 2018-11-15 2023-04-28 零氪科技(北京)有限公司 Method for identifying disease content in medical record text
CN111191668A (en) * 2018-11-15 2020-05-22 零氪科技(北京)有限公司 Method for identifying disease content in medical record text
CN109284400A (en) * 2018-11-28 2019-01-29 电子科技大学 A Named Entity Recognition Method Based on Lattice LSTM and Language Model
CN109543764A (en) * 2018-11-28 2019-03-29 安徽省公共气象服务中心 A kind of warning information legitimacy detection method and detection system based on intelligent semantic perception
CN109284400B (en) * 2018-11-28 2020-10-23 电子科技大学 Named entity identification method based on Lattice LSTM and language model
CN109670172A (en) * 2018-12-06 2019-04-23 桂林电子科技大学 A kind of scenic spot anomalous event abstracting method based on complex neural network
CN109710922A (en) * 2018-12-06 2019-05-03 深港产学研基地产业发展中心 Text recognition method, apparatus, computer equipment and storage medium
CN109657239A (en) * 2018-12-12 2019-04-19 电子科技大学 The Chinese name entity recognition method learnt based on attention mechanism and language model
CN109657239B (en) * 2018-12-12 2020-04-21 电子科技大学 Chinese Named Entity Recognition Method Based on Attention Mechanism and Language Model Learning
CN109558569A (en) * 2018-12-14 2019-04-02 昆明理工大学 A kind of Laotian part-of-speech tagging method based on BiLSTM+CRF model
CN109815253A (en) * 2018-12-26 2019-05-28 出门问问信息科技有限公司 A kind of the subject entity recognition method and device of query statement
CN111368542A (en) * 2018-12-26 2020-07-03 北京大学 A method and system for text-language association extraction based on recurrent neural network
CN109960782A (en) * 2018-12-27 2019-07-02 同济大学 A Tibetan word segmentation method and device based on deep neural network
CN109753660A (en) * 2019-01-07 2019-05-14 福州大学 An LSTM-based Named Entity Extraction Method for Winning Web Pages
CN109753660B (en) * 2019-01-07 2023-06-13 福州大学 A named entity extraction method for bid-winning web pages based on LSTM
CN109871535B (en) * 2019-01-16 2020-01-10 四川大学 French named entity recognition method based on deep neural network
CN109871535A (en) * 2019-01-16 2019-06-11 四川大学 A French Named Entity Recognition Method Based on Deep Neural Network
CN109885702A (en) * 2019-01-17 2019-06-14 哈尔滨工业大学(深圳) Sequence labelling method, apparatus, equipment and storage medium in natural language processing
CN109815952A (en) * 2019-01-24 2019-05-28 珠海市筑巢科技有限公司 Brand name recognition methods, computer installation and computer readable storage medium
CN111563380A (en) * 2019-01-25 2020-08-21 浙江大学 A named entity recognition method and device thereof
CN109918647A (en) * 2019-01-30 2019-06-21 中国科学院信息工程研究所 A Named Entity Recognition Method and Neural Network Model in Security Domain
CN109871537B (en) * 2019-01-31 2022-12-27 沈阳雅译网络技术有限公司 High-precision Thai sentence segmentation method
CN109871537A (en) * 2019-01-31 2019-06-11 沈阳雅译网络技术有限公司 A high-accuracy method for Thai clauses
CN109992770A (en) * 2019-03-04 2019-07-09 昆明理工大学 A Lao Named Entity Recognition Method Based on Combinatorial Neural Network
CN110008469B (en) * 2019-03-19 2022-06-07 桂林电子科技大学 Multilevel named entity recognition method
CN110008469A (en) * 2019-03-19 2019-07-12 桂林电子科技大学 A Multi-level Named Entity Recognition Method
CN109933801A (en) * 2019-03-25 2019-06-25 北京理工大学 Two-way LSTM based on predicted position attention names entity recognition method
CN109992782A (en) * 2019-04-02 2019-07-09 深圳市华云中盛科技有限公司 Legal documents name entity recognition method, device and computer equipment
CN109871545A (en) * 2019-04-22 2019-06-11 京东方科技集团股份有限公司 Named Entity Recognition Method and Device
CN110046353B (en) * 2019-04-22 2022-05-13 重庆理工大学 Aspect level emotion analysis method based on multi-language level mechanism
CN110046353A (en) * 2019-04-22 2019-07-23 重庆理工大学 An Aspect-Level Sentiment Analysis Method Based on Multilingual Hierarchical Mechanism
CN111950277A (en) * 2019-04-30 2020-11-17 中移(苏州)软件技术有限公司 Business entity determination method, device and storage medium
CN110263323B (en) * 2019-05-08 2020-08-28 清华大学 Keyword extraction method and system based on barrier type long-time memory neural network
CN110263323A (en) * 2019-05-08 2019-09-20 清华大学 Keyword extraction method and system based on fence-type long-short-term memory neural network
CN110110335A (en) * 2019-05-09 2019-08-09 南京大学 A kind of name entity recognition method based on Overlay model
CN110110335B (en) * 2019-05-09 2023-01-06 南京大学 Named entity identification method based on stack model
CN110263325B (en) * 2019-05-17 2023-05-12 交通银行股份有限公司太平洋信用卡中心 Chinese word segmentation system
CN110263325A (en) * 2019-05-17 2019-09-20 交通银行股份有限公司太平洋信用卡中心 Chinese automatic word-cut
WO2020232861A1 (en) * 2019-05-20 2020-11-26 平安科技(深圳)有限公司 Named entity recognition method, electronic device and storage medium
CN110308240A (en) * 2019-05-24 2019-10-08 深圳大学 A fast identification method of electronic nose
CN110222337B (en) * 2019-05-28 2022-12-02 浙江邦盛科技股份有限公司 Chinese address word segmentation method based on transform and CRF
CN110222337A (en) * 2019-05-28 2019-09-10 浙江邦盛科技有限公司 A kind of Chinese address segmenting method based on transformer and CRF
CN110298035B (en) * 2019-06-04 2023-12-01 平安科技(深圳)有限公司 Word vector definition method, device, equipment and storage medium based on artificial intelligence
CN110298035A (en) * 2019-06-04 2019-10-01 平安科技(深圳)有限公司 Word vector based on artificial intelligence defines method, apparatus, equipment and storage medium
CN110298036A (en) * 2019-06-06 2019-10-01 昆明理工大学 A kind of online medical text symptom identification method based on part of speech increment iterative
CN110298036B (en) * 2019-06-06 2022-07-22 昆明理工大学 An online medical text symptom recognition method based on part-of-speech incremental iteration
CN110223737A (en) * 2019-06-13 2019-09-10 电子科技大学 A kind of chemical composition of Chinese materia medica name entity recognition method and device
CN110321566A (en) * 2019-07-10 2019-10-11 北京邮电大学 Chinese name entity recognition method, device, computer equipment and storage medium
CN110321566B (en) * 2019-07-10 2020-11-13 北京邮电大学 Chinese named entity recognition method and device, computer equipment and storage medium
CN110444261A (en) * 2019-07-11 2019-11-12 新华三大数据技术有限公司 Sequence labelling network training method, electronic health record processing method and relevant apparatus
CN110502742A (en) * 2019-07-11 2019-11-26 中国科学院计算技术研究所 A complex entity extraction method, device, medium and system
CN110444261B (en) * 2019-07-11 2023-02-03 新华三大数据技术有限公司 Sequence labeling network training method, electronic medical record processing method and related device
CN110490756A (en) * 2019-07-12 2019-11-22 北京邮电大学 Attention Mechanism-Based Method for Portraits of National Security Emergencies in Social Networks
RU2726739C1 (en) * 2019-07-29 2020-07-15 Бейджин Сяоми Интеллиджент Текнолоджи Ко., Лтд. Method, apparatus and device for natural language processing
US11501078B2 (en) 2019-07-29 2022-11-15 Beijing Xiaomi Intelligent Technology Co., Ltd. Method and device for performing reinforcement learning on natural language processing model and storage medium
CN112307764B (en) * 2019-07-30 2024-01-19 百度(美国)有限责任公司 Coreference-aware representation learning for neural named entity recognition
CN112307764A (en) * 2019-07-30 2021-02-02 百度(美国)有限责任公司 Coreference-aware representation learning for neural named entity recognition
CN110688854A (en) * 2019-09-02 2020-01-14 平安科技(深圳)有限公司 Named entity recognition method, device and computer readable storage medium
CN110750965A (en) * 2019-09-16 2020-02-04 平安科技(深圳)有限公司 English text sequence labeling method and system and computer equipment
CN110750965B (en) * 2019-09-16 2023-06-30 平安科技(深圳)有限公司 English text sequence tagging method, system and computer equipment
WO2021051574A1 (en) * 2019-09-16 2021-03-25 平安科技(深圳)有限公司 English text sequence labelling method and system, and computer device
CN110619124B (en) * 2019-09-19 2023-06-16 成都数之联科技股份有限公司 Named entity identification method and system combining attention mechanism and bidirectional LSTM
CN110619124A (en) * 2019-09-19 2019-12-27 成都数之联科技有限公司 Named entity identification method and system combining attention mechanism and bidirectional LSTM
CN110750992A (en) * 2019-10-09 2020-02-04 吉林大学 Named entity recognition method, device, electronic equipment and medium
WO2021073179A1 (en) * 2019-10-15 2021-04-22 华为技术有限公司 Named entity identification method and device, and computer-readable storage medium
CN110738182A (en) * 2019-10-21 2020-01-31 四川隧唐科技股份有限公司 LSTM model unit training method and device for high-precision identification of bid amount
CN110852103A (en) * 2019-10-28 2020-02-28 青岛聚好联科技有限公司 Named entity identification method and device
CN110851597A (en) * 2019-10-28 2020-02-28 青岛聚好联科技有限公司 Method and device for sentence annotation based on similar entity replacement
CN110867225A (en) * 2019-11-04 2020-03-06 山东师范大学 Character-level clinical concept extraction named entity recognition method and system
CN110738319A (en) * 2019-11-11 2020-01-31 四川隧唐科技股份有限公司 LSTM model unit training method and device for recognizing bid-winning units based on CRF
CN110826298A (en) * 2019-11-13 2020-02-21 北京万里红科技股份有限公司 Statement coding method used in intelligent auxiliary password-fixing system
CN110956041A (en) * 2019-11-27 2020-04-03 重庆邮电大学 Depth learning-based co-purchase recombination bulletin summarization method
CN111143574A (en) * 2019-12-05 2020-05-12 大连民族大学 Query and visualization system construction method based on minority culture knowledge graph
CN111008526A (en) * 2019-12-06 2020-04-14 安徽理工大学 A Named Entity Recognition Method Based on Two-Channel Neural Network
CN111027325B (en) * 2019-12-09 2023-11-28 北京知道创宇信息技术股份有限公司 Model generation method, entity identification device and electronic equipment
US11487944B1 (en) * 2019-12-09 2022-11-01 Asapp, Inc. System, method, and computer program for obtaining a unified named entity recognition model with the collective predictive capabilities of teacher models with different tag sets using marginal distillation
CN111027325A (en) * 2019-12-09 2020-04-17 北京知道创宇信息技术股份有限公司 Model generation method, entity identification device and electronic equipment
CN111160031A (en) * 2019-12-13 2020-05-15 华南理工大学 Social media named entity identification method based on affix perception
CN111191452A (en) * 2019-12-24 2020-05-22 中国铁道科学研究院集团有限公司电子计算技术研究所 Railway text named entity recognition method and device
CN111177414A (en) * 2019-12-31 2020-05-19 厦门快商通科技股份有限公司 Entity pre-labeling method, device and equipment
CN111209738A (en) * 2019-12-31 2020-05-29 浙江大学 A multi-task named entity recognition method for joint text classification
CN111209738B (en) * 2019-12-31 2021-03-26 浙江大学 Multi-task named entity recognition method combining text classification
CN111274395A (en) * 2020-01-19 2020-06-12 河海大学 Recognition method of power grid monitoring alarm events based on convolution and long short-term memory network
CN111259672A (en) * 2020-02-12 2020-06-09 新疆大学 Chinese tourism field named entity identification method based on graph convolution neural network
CN111274820A (en) * 2020-02-20 2020-06-12 齐鲁工业大学 A kind of intelligent medical named entity recognition method and device based on neural network
CN111274820B (en) * 2020-02-20 2023-04-07 齐鲁工业大学 Intelligent medical named entity identification method and device based on neural network
CN111597792A (en) * 2020-03-05 2020-08-28 苏州浪潮智能科技有限公司 Sentence-level convolution LSTM training method, equipment and readable medium
CN111597792B (en) * 2020-03-05 2023-01-06 苏州浪潮智能科技有限公司 Sentence-level convolution LSTM training method, equipment and readable medium
CN111444715A (en) * 2020-03-24 2020-07-24 腾讯科技(深圳)有限公司 Entity relationship identification method and device, computer equipment and storage medium
CN111581474B (en) * 2020-04-02 2022-07-29 昆明理工大学 Evaluation object extraction method of microblog comments involved in the case based on multi-head attention mechanism
CN111581474A (en) * 2020-04-02 2020-08-25 昆明理工大学 Evaluation object extraction method of case-related microblog comments based on multi-head attention system
CN111523325A (en) * 2020-04-20 2020-08-11 电子科技大学 Chinese named entity recognition method based on strokes
CN111694936A (en) * 2020-04-26 2020-09-22 平安科技(深圳)有限公司 Method and device for identifying AI intelligent interview, computer equipment and storage medium
CN111694936B (en) * 2020-04-26 2023-06-06 平安科技(深圳)有限公司 Method, device, computer equipment and storage medium for identification of AI intelligent interview
WO2021217866A1 (en) * 2020-04-26 2021-11-04 平安科技(深圳)有限公司 Method and apparatus for ai interview recognition, computer device and storage medium
CN111476022A (en) * 2020-05-15 2020-07-31 湖南工商大学 Character embedding of entity features and hybrid LSTM entity recognition method, system and medium
CN111737949A (en) * 2020-07-22 2020-10-02 江西风向标教育科技有限公司 Topic content extraction method and device, readable storage medium and computer equipment
CN111739520A (en) * 2020-08-10 2020-10-02 腾讯科技(深圳)有限公司 Speech recognition model training method, speech recognition method and device
CN111967265B (en) * 2020-08-31 2023-09-15 广东工业大学 A joint learning method for Chinese word segmentation and entity recognition automatically generated from data sets
CN111967265A (en) * 2020-08-31 2020-11-20 广东工业大学 Chinese word segmentation and entity identification combined learning method capable of automatically generating data set
CN112115719A (en) * 2020-08-31 2020-12-22 山东师范大学 Chinese medicine medical record named entity recognition method and system based on multi-head attention mechanism
CN112183086A (en) * 2020-09-23 2021-01-05 北京先声智能科技有限公司 English pronunciation continuous reading mark model based on sense group labeling
CN112084783B (en) * 2020-09-24 2022-04-12 中国民航大学 Entity identification method and system based on civil aviation uncivilized passengers
CN112084783A (en) * 2020-09-24 2020-12-15 中国民航大学 Entity identification method and system based on civil aviation non-civilized passengers
CN112115714B (en) * 2020-09-25 2023-08-18 深圳平安智慧医健科技有限公司 Deep learning sequence labeling method, device and computer readable storage medium
CN112115714A (en) * 2020-09-25 2020-12-22 平安国际智慧城市科技股份有限公司 Deep learning sequence labeling method and device and computer readable storage medium
CN112131350A (en) * 2020-09-30 2020-12-25 腾讯科技(深圳)有限公司 Text label determination method, text label determination device, terminal and readable storage medium
CN112131350B (en) * 2020-09-30 2024-04-30 腾讯科技(深圳)有限公司 Text label determining method, device, terminal and readable storage medium
CN112599124A (en) * 2020-11-20 2021-04-02 内蒙古电力(集团)有限责任公司电力调度控制分公司 Voice scheduling method and system for power grid scheduling
CN112395882A (en) * 2020-12-07 2021-02-23 震坤行网络技术(南京)有限公司 Method, electronic device and storage medium for named entity recognition
CN112395882B (en) * 2020-12-07 2021-04-06 震坤行网络技术(南京)有限公司 Method, electronic device and storage medium for named entity recognition
CN112651245A (en) * 2020-12-28 2021-04-13 南京邮电大学 Sequence annotation model and sequence annotation method
CN113035303A (en) * 2021-02-09 2021-06-25 北京工业大学 Method and system for labeling named entity category of Chinese electronic medical record
CN112989796A (en) * 2021-03-10 2021-06-18 北京大学 Text named entity information identification method based on syntactic guidance
CN112989796B (en) * 2021-03-10 2023-09-22 北京大学 A text named entity information recognition method based on syntax guidance
US11521639B1 (en) 2021-04-02 2022-12-06 Asapp, Inc. Speech sentiment analysis using a speech sentiment classifier pretrained with pseudo sentiment labels
CN113190602B (en) * 2021-04-09 2022-03-25 桂林电子科技大学 Event joint extraction method integrating word features and deep learning
CN113190602A (en) * 2021-04-09 2021-07-30 桂林电子科技大学 Event joint extraction method integrating word features and deep learning
CN113076127A (en) * 2021-04-25 2021-07-06 南京大学 Method, system, electronic device and medium for extracting question and answer content in programming environment
CN113076127B (en) * 2021-04-25 2023-08-29 南京大学 Method, system, electronic device and medium for extracting question and answer content in programming environment
CN113255320A (en) * 2021-05-13 2021-08-13 北京熙紫智数科技有限公司 Entity relation extraction method and device based on syntax tree and graph attention machine mechanism
CN113377953A (en) * 2021-05-31 2021-09-10 电子科技大学 Entity fusion and classification method based on PALC-DCA model
CN113515946B (en) * 2021-06-22 2024-01-05 亿咖通(湖北)技术有限公司 Information processing method and device
CN113515946A (en) * 2021-06-22 2021-10-19 湖北亿咖通科技有限公司 Information processing method and device
CN113488196A (en) * 2021-07-26 2021-10-08 西南交通大学 Drug specification text named entity recognition modeling method
CN113488196B (en) * 2021-07-26 2023-04-07 西南交通大学 Drug specification text named entity recognition modeling method
US11763803B1 (en) 2021-07-28 2023-09-19 Asapp, Inc. System, method, and computer program for extracting utterances corresponding to a user problem statement in a conversation between a human agent and a user
CN113326380A (en) * 2021-08-03 2021-08-31 国能大渡河大数据服务有限公司 Equipment measurement data processing method, system and terminal based on deep neural network
CN113326380B (en) * 2021-08-03 2021-11-02 国能大渡河大数据服务有限公司 Equipment measurement data processing method, system and terminal based on deep neural network
CN113536799B (en) * 2021-08-10 2023-04-07 西南交通大学 Medical named entity recognition modeling method based on fusion attention
CN113536799A (en) * 2021-08-10 2021-10-22 西南交通大学 Medical named entity recognition modeling method based on fusion attention
CN113627190A (en) * 2021-08-27 2021-11-09 上海复深蓝软件股份有限公司 Visualized data conversion method and device, computer equipment and storage medium
CN114021658A (en) * 2021-11-10 2022-02-08 北京交通大学 A training method, application method and system for named entity recognition model
CN114239584B (en) * 2021-12-15 2025-08-15 杭州电子科技大学 Named entity recognition method based on self-supervision learning
CN114239584A (en) * 2021-12-15 2022-03-25 杭州电子科技大学 Named entity identification method based on self-supervision learning
CN114444485A (en) * 2022-01-24 2022-05-06 四川大学 A method for entity identification of network equipment in cloud environment
US12067363B1 (en) 2022-02-24 2024-08-20 Asapp, Inc. System, method, and computer program for text sanitization
CN114386425B (en) * 2022-03-24 2022-06-10 天津思睿信息技术有限公司 Big data system establishing method for processing natural language text content
CN114386425A (en) * 2022-03-24 2022-04-22 天津思睿信息技术有限公司 Big data system establishing method for processing natural language text content
CN115688777B (en) * 2022-09-28 2023-05-05 北京邮电大学 Named entity recognition system for nested and discontinuous entities of Chinese financial text
CN115688777A (en) * 2022-09-28 2023-02-03 北京邮电大学 A Named Entity Recognition System for Nested and Discontinuous Entities in Chinese Financial Texts
CN115659981A (en) * 2022-11-09 2023-01-31 大连大学 Named entity recognition method based on neural network model
CN115730085A (en) * 2022-11-24 2023-03-03 国网江苏省电力有限公司南京供电分公司 Method and system for constructing power grid dispatching automation system equipment state evaluation model
CN116340530A (en) * 2023-02-17 2023-06-27 江苏科技大学 Intelligent Design Method Based on Mechanical Knowledge Graph
CN119207778A (en) * 2024-11-22 2024-12-27 长春中医药大学 A method for recommending ENT nursing plans based on knowledge graph

Similar Documents

Publication Publication Date Title
CN106569998A (en) Text named entity recognition method based on Bi-LSTM, CNN and CRF
CN111209738B (en) Multi-task named entity recognition method combining text classification
CN108984526B (en) Document theme vector extraction method based on deep learning
CN107729309B (en) Deep learning-based Chinese semantic analysis method and device
CN108363743B (en) Intelligent problem generation method and device and computer readable storage medium
CN107562792B (en) A Question Answer Matching Method Based on Deep Learning
CN106980683B (en) Blog text abstract generating method based on deep learning
CN106776581B (en) Subjective text sentiment analysis method based on deep learning
CN108446271B (en) Text emotion analysis method of convolutional neural network based on Chinese character component characteristics
CN110489523B (en) Fine-grained emotion analysis method based on online shopping evaluation
CN108229582A (en) Entity recognition dual training method is named in a kind of multitask towards medical domain
CN114417851B (en) Emotion analysis method based on keyword weighted information
CN114818717B (en) Chinese named entity recognition method and system integrating vocabulary and syntax information
CN107818164A (en) A kind of intelligent answer method and its system
CN109657239A (en) The Chinese name entity recognition method learnt based on attention mechanism and language model
CN111274829B (en) A Sequence Labeling Method Using Cross-lingual Information
CN110502753A (en) A Deep Learning Sentiment Analysis Model Based on Semantic Enhancement and Its Analysis Method
CN113704416A (en) Word sense disambiguation method and device, electronic equipment and computer-readable storage medium
CN108388554B (en) Text emotion recognition system based on collaborative filtering attention mechanism
CN114416942A (en) Automatic question-answering method based on deep learning
CN110134954A (en) A kind of name entity recognition method based on Attention mechanism
Chen et al. Deep neural networks for multi-class sentiment classification
CN114756681A (en) Evaluation text fine-grained suggestion mining method based on multi-attention fusion
CN108287911A (en) A kind of Relation extraction method based on about fasciculation remote supervisory
CN111753088A (en) Method for processing natural language information

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
WD01 Invention patent application deemed withdrawn after publication
WD01 Invention patent application deemed withdrawn after publication

Application publication date: 20170419