CN114495114B - Text sequence recognition model calibration method based on CTC decoder - Google Patents

Text sequence recognition model calibration method based on CTC decoder Download PDF

Info

Publication number
CN114495114B
CN114495114B CN202210402975.1A CN202210402975A CN114495114B CN 114495114 B CN114495114 B CN 114495114B CN 202210402975 A CN202210402975 A CN 202210402975A CN 114495114 B CN114495114 B CN 114495114B
Authority
CN
China
Prior art keywords
context
character
label
sequence
text
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.)
Active
Application number
CN202210402975.1A
Other languages
Chinese (zh)
Other versions
CN114495114A (en
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.)
Guangdong Provincial Laboratory Of Artificial Intelligence And Digital Economy Guangzhou
South China University of Technology SCUT
Original Assignee
Guangdong Provincial Laboratory Of Artificial Intelligence And Digital Economy Guangzhou
South China University of Technology SCUT
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 Guangdong Provincial Laboratory Of Artificial Intelligence And Digital Economy Guangzhou, South China University of Technology SCUT filed Critical Guangdong Provincial Laboratory Of Artificial Intelligence And Digital Economy Guangzhou
Priority to CN202210402975.1A priority Critical patent/CN114495114B/en
Publication of CN114495114A publication Critical patent/CN114495114A/en
Application granted granted Critical
Publication of CN114495114B publication Critical patent/CN114495114B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F18/00Pattern recognition
    • G06F18/20Analysing
    • G06F18/21Design or setup of recognition systems or techniques; Extraction of features in feature space; Blind source separation
    • G06F18/214Generating training patterns; Bootstrap methods, e.g. bagging or boosting
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F18/00Pattern recognition
    • G06F18/20Analysing
    • G06F18/21Design or setup of recognition systems or techniques; Extraction of features in feature space; Blind source separation
    • G06F18/217Validation; Performance evaluation; Active pattern learning techniques
    • G06F18/2193Validation; Performance evaluation; Active pattern learning techniques based on specific statistical tests

Abstract

The invention discloses a text sequence identification model calibration method based on a CTC decoder, which comprises the following steps: inputting the text image support set into a training model to be calibrated to obtain a text sequence recognition result; calculating a context confusion matrix by using a text sequence identification result of a text image support set, wherein the context confusion matrix is used for representing the context distribution relation between predicted characters at adjacent moments in a sequence; according to the context confusion matrix, selectively carrying out self-adaptive change on the smooth intensity in the label smoothing by utilizing context correlation prediction distribution so as to realize self-adaptive calibration of the sequence confidence coefficient; and retraining the training model to be calibrated based on the context selective loss function, and outputting the predicted text sequence and the calibrated confidence coefficient. According to the method, the label is smoothly expanded to a text sequence identification model based on a CTC decoder, the context relationship between sequences is introduced, and the prediction sequence is subjected to self-adaptive calibration, so that the confidence of the model output prediction text can be more accurate.

Description

Text sequence identification model calibration method based on CTC decoder
Technical Field
The invention belongs to the technical field of artificial intelligence and text sequence processing, and particularly relates to a text sequence identification model calibration method based on a CTC decoder.
Background
With the development of deep learning, deep neural network models are deployed in the fields of medical treatment, transportation, finance and the like due to high prediction accuracy, for example: the medical image recognition model can provide auxiliary basis for doctors to diagnose the state of illness, the target detection recognition model enables the vehicle to have intelligent analysis capability so as to control the speed or direction of the sensor, and the OCR (optical character recognition) model provides powerful support for the digitization of the financial bill entry. However, the potential risks of the depth model are gradually exposed in the process of popularizing and deepening the depth model in various fields. Scene text images are widely existed in various industries and fields of our lives as one of data forms widely existed in our daily scenes. For example: the medical diagnosis, the medical examination order, and the financial system. Compared with the unstructured data such as common single-frame images and characters, the structured sequence data is more difficult to predict, and the reliability of the structured sequence data is more complicated to obtain and judge.
Currently, confidence is one of the most direct indicators for evaluating the reliability of a prediction. The model prediction score is generally normalized to probability as its confidence. The confidence of reliability can accurately reflect the accuracy of the prediction, and when the model is not confident about the prediction and gives a relatively low confidence, an intervention decision is manually needed to ensure that the task is safely performed. However, it is found that the confidence of the output of many existing deep neural network models is not calibrated, but there is a self-confidence problem that the confidence of the output is higher than the accuracy. The reason for the model not being calibrated comes from several aspects. On one hand, as the structure of the model is gradually huge and complex, the problem of overfitting of the model is caused by high fitting capacity caused by a large number of parameters. For the over-fitted prediction label class, the model tends to assign a high confidence to the erroneous predictions as well. Moreover, the one-hot coding-based loss function and softmax confidence coefficient calculation method increases the distance between positive and negative prediction samples, and although the correct samples are selected conveniently, the prediction confidence coefficient is easily over-confident. On the other hand, the distribution of training data and test data is different. It is also difficult for a model to give a reliable confidence when it needs to deal with data never or rarely seen in the training dataset in real-world scenarios.
Due to the complex structure of the text sequence, calibration of the scene text recognition model is also very difficult. Specifically, one is that a text sequence is usually composed of a plurality of characters, and the size of the confidence space becomes larger as the number of characters increases. Secondly, text recognition is usually a time-sequence related process, and the context relationship between characters is important prior information. And the strength of the context dependence between them is different for different characters. Therefore, alignment at the sequence level is difficult to achieve by simply aligning all characters uniformly.
However, most of the existing confidence calibration methods are mainly directed to unstructured simple data expansion. These calibration methods can be largely divided into two main categories: post-processing calibration and predictive model training calibration. The post-processing approach typically learns a regression equation related to confidence on the set-aside (hold-out) data set, transforming the output confidence. The calibration methods proposed earlier in the field of machine learning and oriented to traditional classifiers are mostly based on post-processing ideas, such as: plattscealing, order preservation regression, histogramming, and the like. In the field of deep learning, a scholars proposes temperature regulation based on platting and calibrates confidence level by introducing a temperature parameter. The prediction model training calibration generally adjusts the depth model directly. The method mainly considers the over-confidence problem brought by the over-fitting, and the model is calibrated by relieving the over-fitting in modes of dropout, label smoothing loss, entropy regulation and the like. In addition, from the data aspect, part of the methods are to perform enhancement operation on the training data during the training process to solve the problem, for example, methods such as MixUp, GAN, and the like. However, these methods do not consider the heterogeneity of the distribution of different classes of data in the data set, or only consider the correlation between local single prediction and real tags, neglect the length and intrinsic context-dependent characteristics of the sequence data, and are difficult to directly migrate to the confidence calibration of the sequence data. Therefore, a specific calibration design is required to be further made according to the sequence data characteristics, so that the calibration performance of the sequence confidence is improved.
Disclosure of Invention
In view of the above, it is necessary to provide a method for calibrating a text sequence recognition model based on a CTC decoder for solving the technical problem of confidence calibration of a scene text recognition model, where the method reviews the essence of a label smoothing method, the effectiveness of label smoothing is mainly embodied by adding a Kullback-leibler (kl) divergence term as a regular term on the basis of an original loss function, and in consideration of context dependence existing in a sequence, a context relationship between characters is modeled in the form of a confusion matrix and used as a language knowledge prior to guide label probability distribution, and smoothing strengths of different types of labels are adaptively adjusted according to context prediction error rates thereof.
The invention discloses a text sequence identification model calibration method based on a CTC decoder, which comprises the following steps:
step 1, inputting a text image support set into a training model to be calibrated to obtain a text sequence recognition result;
step 2, calculating a context confusion matrix by using a text sequence identification result of the text image support set, wherein the context confusion matrix is used for representing the context distribution relation between predicted characters at adjacent moments in the sequence;
step 3, selectively carrying out self-adaptive change on the smooth intensity in the label smoothing by utilizing context correlation prediction distribution according to the context confusion matrix so as to realize self-adaptive calibration of the sequence confidence coefficient;
and 4, retraining the training model to be calibrated based on the context selective loss function, and finally outputting the predicted text sequence and the confidence coefficient of the calibration.
Specifically, the process of computing the context confusion matrix comprises the following steps:
initial setup is common
Figure 840152DEST_PATH_IMAGE001
Context confusion matrix with 0 element for each prediction class
Figure 216907DEST_PATH_IMAGE002
Figure 555484DEST_PATH_IMAGE003
Indexing for the corresponding prediction categories;
text sequence recognition results of aligned text image support sets
Figure 992282DEST_PATH_IMAGE004
And corresponding genuine label
Figure 432621DEST_PATH_IMAGE005
Figure 613067DEST_PATH_IMAGE006
The result length is identified for the text sequence,
Figure 337309DEST_PATH_IMAGE007
is the length of the real label sequence;
if the recognition result is aligned with the real label, the character is known at the last moment
Figure 210587DEST_PATH_IMAGE008
The class to which the tag belongs is indexed by
Figure 604135DEST_PATH_IMAGE003
In case of directly counting the current
Figure 588272DEST_PATH_IMAGE009
Time of day character
Figure 901441DEST_PATH_IMAGE010
Is predicted as a character
Figure 555408DEST_PATH_IMAGE011
Context confusion matrix of
Figure 563815DEST_PATH_IMAGE002
Wherein each element of the context confusion matrix
Figure 210697DEST_PATH_IMAGE012
Indicating that the predicted character at the previous time is known to belong to
Figure 519319DEST_PATH_IMAGE003
Class time, the true tag belongs to
Figure 344186DEST_PATH_IMAGE013
The current time character of the class is predicted to be the first
Figure 371048DEST_PATH_IMAGE014
The times of class labels are that for the characters at the head of the text, the category of the characters at the head of the text is set as a space by default;
if the identification result is not aligned with the real label, calculating the operation sequence from the prediction sequence to the real label through the edit distance to obtain the alignment relation between the sequences, and then counting to obtain the context confusion matrix.
Preferably, the process of obtaining the alignment relationship between the sequences requires performing the following operations several times: deleting one character operation, inserting one character operation or replacing one character operation until the characters are correctly predicted and aligned, wherein the deleting one character operation is used for correcting the empty symbols in the real label sequence to be wrongly predicted into other characters, the inserting one character operation is used for correcting the corresponding characters in the real label sequence to be predicted into the empty symbols, and the replacing one character operation is used for correcting the corresponding characters in the real label sequence to be predicted into other characters.
Specifically, the selectively adaptive change of the smoothing intensity in the tag smoothing by using the context-dependent prediction distribution in step 3 refers to adaptively adjusting the smoothing intensity according to the context relationship, and adjusting the tag probability to obtain a selective context-aware probability distribution formula:
Figure 821621DEST_PATH_IMAGE015
wherein
Figure 250328DEST_PATH_IMAGE016
Represents the character at the last time
Figure 42835DEST_PATH_IMAGE017
The corresponding error-prone set when the category is known,
Figure 556993DEST_PATH_IMAGE018
indicating that a character was last time-of-day
Figure 293480DEST_PATH_IMAGE017
Current character in case of label belonging to category
Figure 576694DEST_PATH_IMAGE019
Is predicted to be
Figure 992632DEST_PATH_IMAGE020
The number of times of the operation of the motor,
Figure 994086DEST_PATH_IMAGE021
the index of the category is represented by,
Figure 661828DEST_PATH_IMAGE022
indicating that a character was last time-of-day
Figure 940493DEST_PATH_IMAGE017
Current character in case of label belonging to category
Figure 402699DEST_PATH_IMAGE019
Is predicted to be
Figure 750503DEST_PATH_IMAGE021
The number of times of the above-mentioned operations,
Figure 487515DEST_PATH_IMAGE023
indicating the intensity of the smoothing, for the previous character
Figure 479742DEST_PATH_IMAGE024
When the label type is known, the current character needs to be confirmed first
Figure 988215DEST_PATH_IMAGE019
Whether the label belongs to an error-prone set or not, if not, label smooth prediction is not required; otherwise, the sliding strength is adaptively adjusted and leveled according to the error rate;
the error-prone set is obtained by
Figure 964261DEST_PATH_IMAGE025
Corresponding to different prediction categories, and counting the characters at the last moment according to the frequency of predicting the characters appearing in each category in the context confusion matrix
Figure 98439DEST_PATH_IMAGE024
Belong to the first
Figure 945172DEST_PATH_IMAGE026
Error-prone set of time classes
Figure 280339DEST_PATH_IMAGE027
The division is according to the following:
Figure 87889DEST_PATH_IMAGE028
wherein the content of the first and second substances,
Figure 166703DEST_PATH_IMAGE029
representing the character of the last moment
Figure 992577DEST_PATH_IMAGE030
Belong to the first
Figure 233065DEST_PATH_IMAGE031
Class time, the accuracy of the prediction at the current moment, if the class error rate is greater than the set threshold value
Figure 918125DEST_PATH_IMAGE032
Then the corresponding category will be corresponded
Figure 141908DEST_PATH_IMAGE033
To be classified into the error-prone set
Figure 963234DEST_PATH_IMAGE030
After the label belongs to the category, the corresponding error-prone set can be obtained
Figure 764836DEST_PATH_IMAGE034
More specifically, the context selectivity loss function described in step 4 is:
Figure 671613DEST_PATH_IMAGE035
wherein the content of the first and second substances,
Figure 92230DEST_PATH_IMAGE036
to represent
Figure 643428DEST_PATH_IMAGE037
At time, corresponding tag class index
Figure 225719DEST_PATH_IMAGE031
Is selected based on the selected context-aware probability distribution,
Figure 10004DEST_PATH_IMAGE038
is shown in
Figure 703154DEST_PATH_IMAGE037
Time of day corresponding prediction category label
Figure 374438DEST_PATH_IMAGE039
The probability of (a) of (b) being,
Figure 127630DEST_PATH_IMAGE040
the loss of the CTC is indicated,
Figure 8998DEST_PATH_IMAGE041
to represent
Figure 896052DEST_PATH_IMAGE042
The divergence of the light beam is measured by the light source,
Figure 546476DEST_PATH_IMAGE043
to represent
Figure 345936DEST_PATH_IMAGE044
The time corresponds to all
Figure 714600DEST_PATH_IMAGE045
A probability vector for the class label category,
Figure 749552DEST_PATH_IMAGE046
the divergence definition formula is:
Figure 910275DEST_PATH_IMAGE047
Figure 5270DEST_PATH_IMAGE048
representing corresponding prediction category labels
Figure 861231DEST_PATH_IMAGE031
The probability of (a) of (b) being,
Figure 572310DEST_PATH_IMAGE049
representing corresponding genres labels
Figure 197327DEST_PATH_IMAGE031
The probability of (c).
Compared with the prior art, the invention has the beneficial effects that:
according to the method, the label is smoothly expanded to the text sequence recognition model based on the CTC decoder, the context relationship among sequences is introduced, the predicted sequence is subjected to self-adaptive calibration, the calibration performance of the text sequence recognition model can be well improved, and the confidence coefficient of the model output predicted text can be more accurate.
Drawings
FIG. 1 shows a schematic flow diagram of a method embodying the present invention;
FIG. 2 is a schematic diagram showing the operation of modules according to an embodiment of the present invention;
fig. 3 shows a schematic flow of an alignment policy in an embodiment of the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the embodiments of the present invention clearer, the technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are some, but not all, embodiments of the present invention. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
For the sake of reference and clarity, the technical terms, abbreviations or abbreviations used hereinafter are to be interpreted in summary as follows:
CTC: connectionsist Temporal Classification (Link definition Temporal classifier)
KL divergence: divergence of Kullback-Leibler
NLL: negative Log-Likelihood (Negative Log Likelihood)
LS: label smoothening (Label Smoothing)
CASSLS: context-aware Selective Label Smoothing
The invention discloses a character image augmentation method based on shape transformation, which aims to solve various problems in the prior art.
Fig. 1 shows a schematic flow diagram of an embodiment of the invention. A text sequence identification model calibration method based on a CTC decoder comprises the following steps:
inputting the text image support set into a training model to be calibrated to obtain a text sequence recognition result;
calculating a context confusion matrix by using a text sequence identification result of a text image support set, wherein the context confusion matrix is used for representing the context distribution relation between predicted characters at adjacent moments in a sequence;
according to the context confusion matrix, selectively carrying out self-adaptive change on the smooth intensity in the label smoothing by utilizing context correlation prediction distribution so as to realize self-adaptive calibration of the sequence confidence coefficient;
and retraining the training model to be calibrated based on the context selective loss function, and finally outputting the predicted text sequence and the calibrated confidence coefficient.
Specifically, the present embodiment adopts the following steps to implement the inventive method.
Step 1, constructing a support data set, inputting the support data set into a corresponding scene text recognition pre-training model, and obtaining a recognition result, namely a corresponding text sequence.
The data distribution in the support set needs to be similar to the training set, and a validation set or a part of the training set of the reference data set is generally selected as the support set. Here, the training data set of IIIT5k, SVT, IC03, IC13, and IC15 is selected as the support set. And inputting the data to be tested into a corresponding scene text recognition pre-training model, and performing model recognition prediction to obtain a corresponding prediction sequence. In the next step the confusion matrix is constructed.
And 2, acquiring a sequence context prediction distribution relation by utilizing the support set prediction result, and representing the sequence context prediction distribution relation in the form of a confusion matrix as context modeling output.
In step 2, the text is predicted for the input data
Figure 853436DEST_PATH_IMAGE004
And corresponding genuine label
Figure 931113DEST_PATH_IMAGE005
Based on (A)
Figure 573447DEST_PATH_IMAGE006
And
Figure 928336DEST_PATH_IMAGE050
corresponding to the length of the text sequence), the context relationship of the predictions at adjacent moments in the sequence is obtained, that is, under the condition that the class to which the character prediction at the previous moment belongs is known, the probability that the character prediction at the next moment belongs to the class has certain correlation with the probability.
If the recognition result is aligned with the real label, the character is known at the last moment
Figure 365134DEST_PATH_IMAGE008
The class to which the tag belongs is indexed by
Figure 320320DEST_PATH_IMAGE003
In case of directly counting the current
Figure 500766DEST_PATH_IMAGE009
Time of day character
Figure 100375DEST_PATH_IMAGE010
Is predicted as a character
Figure 583440DEST_PATH_IMAGE011
Context confusion matrix of
Figure 635709DEST_PATH_IMAGE002
. Wherein each element in the context confusion matrix
Figure 10059DEST_PATH_IMAGE012
Meta-representation knowing that the last time predicted character belongs to
Figure 198595DEST_PATH_IMAGE003
Class time, the true tag belongs to
Figure 852561DEST_PATH_IMAGE013
The current time character of the class is predicted to be the first
Figure 657706DEST_PATH_IMAGE014
Number of class labels. Specifically, for the character at the head of the text, the category to which the character at the head of the text belongs is set as a space by default;
the specific construction mode is that firstly, the initialization is carried out
Figure 179954DEST_PATH_IMAGE001
The element of each prediction class is a confusion matrix of 0. For scene text recognition, initialization is first performed
Figure 878789DEST_PATH_IMAGE051
(containing 10 digits, 26 english letters, and 1 space category). Assuming the predicted sequence "cat" ((C))The true label is "cat"), the character type space is left on the first character "c" at the time, the true character label "c" is correctly predicted as "c" at the current time, and then one is added to the position element representing the corresponding label "c" and the prediction "c" in the confusion matrix of the corresponding space type. And counting all samples in the support set in the same way to finally obtain a confusion matrix representing the context prediction frequency distribution of different prediction categories. FIG. 2 shows context confusion matrices for previous time characters "3", "A", and "V", respectively, and for previous time character predictions of different classes, the class to which the current character prediction belongs is different, and therefore a differential calibration operation is required.
Considering the situation that the predicted sequence is not aligned with the real sequence label of the predicted sequence due to error prediction, the editing distance is used for calculating the operation sequence between the real sequence and the predicted sequence, and the alignment relation between the sequences is obtained. The specific alignment strategy is as shown in fig. 3, and in order to realize the one-to-one correspondence between characters of the predicted text and the real text, the method includes (1) deleting one character (d); (2) inserting a character (i); (3) an operation of replacing one character(s). If not, it is indicated by the symbol "-". Taking the prediction sequence "lapaitmen" as an example, in order to obtain the edit distance from the prediction sequence to the real tag "avatar", the following operations are required: the deleted character "l", the replaced character "i" is "r", and the inserted character "t". Accordingly, in the statistical confusion matrix process, a delete operation indicates that the null symbol label "#" in the real sequence is mispredicted to another character "l", and an insert operation indicates that the corresponding label "t" in the real sequence is predicted to be the null symbol "#".
And 3, utilizing the confusion matrix to perform self-adaptive change on the label smoothness according to the context relationship, and introducing a penalty item to realize self-adaptive calibration of the sequence confidence coefficient.
In step 3, for the CTC decoder, the optimization goal is the maximum likelihood of the sequence probability, which can be defined by the following equation:
Figure 828290DEST_PATH_IMAGE052
wherein the content of the first and second substances,
Figure 727589DEST_PATH_IMAGE053
for a given input
Figure 53528DEST_PATH_IMAGE054
Output is
Figure 216656DEST_PATH_IMAGE055
The probability of (a) of (b) being,
Figure 992851DEST_PATH_IMAGE056
in order to predict the total step size for decoding,
Figure 241430DEST_PATH_IMAGE057
is shown in the decoding path
Figure 980847DEST_PATH_IMAGE058
To middle
Figure 529640DEST_PATH_IMAGE059
The confidence level of the character corresponding to the time instant,
Figure 820944DEST_PATH_IMAGE060
representing the mapping rules. The probability of this decoded path is directly considered as the confidence of the predicted sequence.
The tag smoothing strategy, which is typically used on cross-entropy loss, is then generalized to CTC losses. Label smoothness loss is deduced. The label smoothed probability distribution can be expressed as:
Figure 681452DEST_PATH_IMAGE061
wherein the content of the first and second substances,
Figure 349194DEST_PATH_IMAGE062
in order to even out the probability of label smoothing,
Figure 627860DEST_PATH_IMAGE063
in order to be a smoothing factor, the method,
Figure 90065DEST_PATH_IMAGE064
the label accords with one-hot probability distribution, if the prediction is correct, the label is 1, otherwise, the label is 0, the label is equivalent to a Dirac function, and
Figure 437870DEST_PATH_IMAGE065
uniform distribution of label probability over all classes of labels, value
Figure 909302DEST_PATH_IMAGE066
Is as follows. Substituting the above equation into a general text sequence recognition loss function can obtain:
Figure 901529DEST_PATH_IMAGE067
wherein the content of the first and second substances,
Figure 675581DEST_PATH_IMAGE068
is composed of
Figure 651628DEST_PATH_IMAGE059
The time of day is predicted as
Figure 520226DEST_PATH_IMAGE003
The probability of the category(s) is,
Figure 632539DEST_PATH_IMAGE056
the total step size is decoded for prediction.
According to
Figure 702126DEST_PATH_IMAGE069
Divergence definition:
Figure 772326DEST_PATH_IMAGE070
the loss function can be derived to be decoupled as a sum of standard Negative Log Likelihood (NLL) losses
Figure 319982DEST_PATH_IMAGE071
Divergence term
Figure 411435DEST_PATH_IMAGE072
Two items are as follows:
Figure 917502DEST_PATH_IMAGE073
wherein, the first and the second end of the pipe are connected with each other,
Figure 212349DEST_PATH_IMAGE074
represents a constant term with no effect in gradient back propagation and negligible effect.
Due to the function
Figure 563695DEST_PATH_IMAGE075
The overall loss is expected to approach zero for
Figure 509655DEST_PATH_IMAGE069
The divergence penalty term can be approximately understood to mean that the smaller the expected prediction probability distribution and the uniform distribution distance is, the more the prediction probability is prevented from changing towards the direction of over confidence. Thus, although the CTC decoder-based text sequence recognition model does not one-hot encode true tags, but its core optimization goal is still sequence confidence maximization, then the smooth CTC loss in combination with standard tags can be defined as:
Figure 186624DEST_PATH_IMAGE076
wherein the content of the first and second substances,
Figure 93400DEST_PATH_IMAGE077
is lost as CTCs. Smoothing factor
Figure 858225DEST_PATH_IMAGE063
As a weight of the penalty term, the strength of the calibration is controlled. In-service setting
Figure 799636DEST_PATH_IMAGE078
Further introducing sequence context in tag smoothing. Firstly, screening an error-prone set, and only carrying out label smoothing on error-prone categories. To pair
Figure 772140DEST_PATH_IMAGE001
The characters at the last time can be obtained by statistics according to the frequency of predicting the characters appearing in each category in the corresponding confusion matrix
Figure 166212DEST_PATH_IMAGE008
Belong to the first
Figure 124941DEST_PATH_IMAGE003
Error-prone set of time classes
Figure 530646DEST_PATH_IMAGE027
. The division is based on the following:
Figure 283838DEST_PATH_IMAGE079
wherein the content of the first and second substances,
Figure 555419DEST_PATH_IMAGE080
representing the character of the last moment
Figure 52260DEST_PATH_IMAGE008
Belong to the first
Figure 575120DEST_PATH_IMAGE003
Class time, the accuracy of the prediction at the current time. If the class error rate is larger than the set threshold
Figure 499214DEST_PATH_IMAGE081
Then, the corresponding categories are classified into the error-prone set, so as to be clear
Figure 867878DEST_PATH_IMAGE008
After the label belongs to the category, the corresponding error-prone set can be obtained
Figure 293044DEST_PATH_IMAGE034
. In-service setting
Figure 797974DEST_PATH_IMAGE082
And further carrying out self-adaptive adjustment on the smoothing intensity according to the context relation according to the confusion matrix obtained in the step 2. And adjusting the label probability to obtain a selective Context Awareness (CASSLS) probability distribution formula:
Figure 768335DEST_PATH_IMAGE083
for the last character
Figure 624296DEST_PATH_IMAGE008
When the label type is known, the current character needs to be confirmed first
Figure 587573DEST_PATH_IMAGE019
Whether the label belongs to an error-prone set or not, if not, label smooth prediction is not required; otherwise, the sliding strength is adaptively adjusted according to the error rate.
Bringing this probability distribution into the tag-smoothed CTC loss, we can derive the CTC decoder-based selective context-aware loss:
Figure 212589DEST_PATH_IMAGE084
taking into account the calculation
Figure 478485DEST_PATH_IMAGE069
In divergence, the output probability is the probability of the predicted path, there is a case where the length thereof is misaligned with the length of the real label, and for the predicted probability
Figure 697108DEST_PATH_IMAGE043
Only the position of the sequence after the predicted path mapping is reserved. Then, according to the editing distance alignment strategy in the step 2, for deletion operation, adding a one-hot code of a space at a blank position of a corresponding target sequence; for the insertion operation, adding an equipartition distribution probability vector at a blank position corresponding to the prediction sequence; and the replacement operation does not bring any changes to the probability distribution.
And 4, retraining the target model after adjusting the loss function, and finally outputting the prediction sequence and the calibration confidence coefficient thereof.
In step 4, the original loss function is adjusted according to the context perception selective label smoothing strategy in step 3, and the target over-confidence model is retrained, so that the model can be calibrated. As the fine tuning model is adopted for training, the learning rate is set as
Figure 339442DEST_PATH_IMAGE085
And after 200000 times of iterative training, finally outputting the predicted text and the confidence coefficient after calibration.
Those of ordinary skill in the art will appreciate that the various illustrative elements and algorithm steps described in connection with the embodiments disclosed herein may be implemented as electronic hardware, or combinations of computer software and electronic hardware. Whether such functionality is implemented as hardware or software depends upon the particular application and design constraints imposed on the implementation. Skilled artisans may implement the described functionality in varying ways for each particular application, but such implementation decisions should not be interpreted as causing a departure from the scope of the present invention.
The technical features of the above embodiments can be arbitrarily combined, and for the sake of brevity, all possible combinations of the technical features in the above embodiments are not described, but should be considered as the scope of the present specification as long as there is no contradiction between the combinations of the technical features.
As will be appreciated by one skilled in the art, embodiments of the present application may be provided as a method, system, or computer program product. Accordingly, the present application may take the form of an entirely hardware embodiment, an entirely software embodiment or an embodiment combining software and hardware aspects. Furthermore, the present application may take the form of a computer program product embodied on one or more computer-usable storage media (including, but not limited to, disk storage, CD-ROM, optical storage, and the like) having computer-usable program code embodied therein.
The foregoing is only a preferred embodiment of the present invention, and it should be noted that, for those skilled in the art, various modifications and decorations can be made without departing from the principle of the present invention, and these modifications and decorations should also be regarded as the protection scope of the present invention.

Claims (5)

1. A text sequence recognition model calibration method based on a CTC decoder is characterized by comprising the following steps:
step 1, inputting a text image support set into a training model to be calibrated to obtain a text sequence recognition result;
step 2, calculating a context confusion matrix by using a text sequence identification result of the text image support set, wherein the context confusion matrix is used for representing the context distribution relation between predicted characters at adjacent moments in the sequence;
step 3, selectively carrying out self-adaptive change on the smooth intensity in the label smoothing by utilizing context correlation prediction distribution according to the context confusion matrix so as to realize self-adaptive calibration of the sequence confidence coefficient;
step 4, retraining the training model to be calibrated based on the context selective loss function, and finally outputting a predicted text sequence and a calibrated confidence coefficient;
the context selectivity loss function described in step 4 is:
Figure 21557DEST_PATH_IMAGE001
wherein the content of the first and second substances,
Figure 345222DEST_PATH_IMAGE002
to represent
Figure 656118DEST_PATH_IMAGE003
At time, corresponding tag class index
Figure 457852DEST_PATH_IMAGE004
Is selected based on the selected context-aware probability distribution,
Figure 803382DEST_PATH_IMAGE005
is shown in
Figure 32369DEST_PATH_IMAGE006
Time of day corresponding prediction category label
Figure 830561DEST_PATH_IMAGE007
The probability of (a) of (b) being,
Figure 934521DEST_PATH_IMAGE008
the loss of the CTC is indicated,
Figure 134558DEST_PATH_IMAGE009
to represent
Figure 534447DEST_PATH_IMAGE010
The divergence of the light beam is measured by the light source,
Figure 554355DEST_PATH_IMAGE011
to represent
Figure 822526DEST_PATH_IMAGE012
The time corresponds to all
Figure 752436DEST_PATH_IMAGE013
Probability vectors of class label categories;
Figure 447859DEST_PATH_IMAGE014
representing the character of the last moment
Figure 96009DEST_PATH_IMAGE015
The corresponding error-prone set when the category is known;
Figure 902291DEST_PATH_IMAGE016
decoding the total step size for the prediction;
Figure 450822DEST_PATH_IMAGE017
the number of the prediction categories is;
said
Figure 317147DEST_PATH_IMAGE018
The divergence definition formula is:
Figure 311648DEST_PATH_IMAGE019
Figure 796987DEST_PATH_IMAGE020
representing corresponding prediction category labels
Figure 826123DEST_PATH_IMAGE021
The probability of (a) of (b) being,
Figure 4294DEST_PATH_IMAGE022
representing corresponding genres labels
Figure 486091DEST_PATH_IMAGE023
The probability of (c).
2. The CTC decoder-based text sequence recognition model calibration method of claim 1, wherein said process of computing a context confusion matrix comprises the steps of:
initial setting is common
Figure 509542DEST_PATH_IMAGE024
Context confusion matrix with 0 element for each prediction class
Figure 393184DEST_PATH_IMAGE025
Figure 246652DEST_PATH_IMAGE026
Indexing for the corresponding prediction categories;
text sequence recognition results of aligned text image support sets
Figure 215745DEST_PATH_IMAGE027
And corresponding genuine label
Figure 901941DEST_PATH_IMAGE028
Figure 781035DEST_PATH_IMAGE029
The result length is identified for the text sequence,
Figure 425643DEST_PATH_IMAGE030
is the length of the real label sequence;
if the recognition result is aligned with the real label, the character is known at the last moment
Figure 757399DEST_PATH_IMAGE031
The class to which the tag belongs is indexed by
Figure 247286DEST_PATH_IMAGE032
In case of directly counting the current
Figure 715307DEST_PATH_IMAGE033
Time true character
Figure 530817DEST_PATH_IMAGE034
Is predicted as a character
Figure 848403DEST_PATH_IMAGE035
Context confusion matrix of
Figure 407561DEST_PATH_IMAGE036
Wherein each element of the context confusion matrix
Figure 854722DEST_PATH_IMAGE037
Indicating that the real character at the last time is known to belong to the first
Figure 450920DEST_PATH_IMAGE038
Class time, the true tag belongs to
Figure 881901DEST_PATH_IMAGE039
The current time character of the class is predicted to be the first
Figure 854537DEST_PATH_IMAGE040
The times of class labels are that for the characters at the head of the text, the category of the characters at the head of the text is set as a space by default;
if the identification result is not aligned with the real label, calculating the operation sequence from the prediction sequence to the real label through the edit distance to obtain the alignment relation between the sequences, and then counting to obtain the context confusion matrix.
3. A CTC decoder-based text sequence recognition model calibration method according to claim 2, wherein said process of obtaining alignment relationship between sequences requires several times of the following operations: deleting one character operation, inserting one character operation or replacing one character operation until the characters are correctly predicted and aligned, wherein the deleting one character operation is used for correcting the empty symbols in the real label sequence to be wrongly predicted into other characters, the inserting one character operation is used for correcting the corresponding characters in the real label sequence to be predicted into the empty symbols, and the replacing one character operation is used for correcting the corresponding characters in the real label sequence to be predicted into other characters.
4. A CTC decoder-based text sequence recognition model alignment method as in claim 1, wherein said error-prone set is obtained for
Figure 421784DEST_PATH_IMAGE041
Corresponding to different prediction categories, and counting the characters at the last moment according to the frequency of predicting the characters appearing in each category in the context confusion matrix
Figure 188883DEST_PATH_IMAGE042
Belong to the first
Figure 107160DEST_PATH_IMAGE043
Error-prone set of class classes
Figure 742541DEST_PATH_IMAGE044
The division is according to the following:
Figure 538197DEST_PATH_IMAGE045
wherein the content of the first and second substances,
Figure 866410DEST_PATH_IMAGE046
representing the character of the last moment
Figure 881770DEST_PATH_IMAGE047
Belong to the first
Figure 320842DEST_PATH_IMAGE048
Class time, the accuracy of the prediction at the current moment, if the class error rate is greater than the set threshold value
Figure 738048DEST_PATH_IMAGE049
Then the corresponding category will be corresponded
Figure 237162DEST_PATH_IMAGE050
To be classified into the error-prone set
Figure 739819DEST_PATH_IMAGE051
After the label belongs to the category, the corresponding error-prone set can be obtained
Figure 982581DEST_PATH_IMAGE052
5. The CTC decoder-based text sequence recognition model calibration method of claim 1, wherein the step 3 of selectively adaptively changing the smoothing intensity in tag smoothing by using the context-dependent prediction distribution means that the smoothing intensity is adaptively adjusted according to the context relationship, and the tag probability is adjusted to obtain the selective context-aware probability distribution formula as follows:
Figure 752829DEST_PATH_IMAGE054
wherein the content of the first and second substances,
Figure 157266DEST_PATH_IMAGE055
indicating that a character was last time-of-day
Figure 271852DEST_PATH_IMAGE056
Current character in case of label belonging to category
Figure 928092DEST_PATH_IMAGE057
Is predicted to be
Figure 444524DEST_PATH_IMAGE058
The number of times of the operation of the motor,
Figure 160808DEST_PATH_IMAGE059
the index of the category is represented by,
Figure 497111DEST_PATH_IMAGE060
indicating that a character was last time-of-day
Figure 957042DEST_PATH_IMAGE061
Current character in case of label belonging to category
Figure 327981DEST_PATH_IMAGE062
Is predicted to be
Figure 74220DEST_PATH_IMAGE063
The number of times of the operation of the motor,
Figure 265862DEST_PATH_IMAGE064
indicating the intensity of the smoothing, for the previous character
Figure 654118DEST_PATH_IMAGE065
When the label type is known, the current character needs to be confirmed first
Figure DEST_PATH_IMAGE066
Whether the label belongs to an error-prone set or not, if not, label smooth calibration is not required; otherwise, the sliding strength is adaptively adjusted according to the error rate.
CN202210402975.1A 2022-04-18 2022-04-18 Text sequence recognition model calibration method based on CTC decoder Active CN114495114B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202210402975.1A CN114495114B (en) 2022-04-18 2022-04-18 Text sequence recognition model calibration method based on CTC decoder

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202210402975.1A CN114495114B (en) 2022-04-18 2022-04-18 Text sequence recognition model calibration method based on CTC decoder

Publications (2)

Publication Number Publication Date
CN114495114A CN114495114A (en) 2022-05-13
CN114495114B true CN114495114B (en) 2022-08-05

Family

ID=81489555

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202210402975.1A Active CN114495114B (en) 2022-04-18 2022-04-18 Text sequence recognition model calibration method based on CTC decoder

Country Status (1)

Country Link
CN (1) CN114495114B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN117151111A (en) * 2023-08-15 2023-12-01 华南理工大学 Text recognition model reliability regularization method based on perception and semantic relevance

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109934293A (en) * 2019-03-15 2019-06-25 苏州大学 Image-recognizing method, device, medium and obscure perception convolutional neural networks

Family Cites Families (21)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10366362B1 (en) * 2012-10-18 2019-07-30 Featuremetrics, LLC Feature based modeling for forecasting and optimization
US11145293B2 (en) * 2018-07-20 2021-10-12 Google Llc Speech recognition with sequence-to-sequence models
US10573312B1 (en) * 2018-12-04 2020-02-25 Sorenson Ip Holdings, Llc Transcription generation from multiple speech recognition systems
US10388272B1 (en) * 2018-12-04 2019-08-20 Sorenson Ip Holdings, Llc Training speech recognition systems using word sequences
EP3966808A1 (en) * 2019-05-10 2022-03-16 Google LLC Using context information with end-to-end models for speech recognition
CN110399845A (en) * 2019-07-29 2019-11-01 上海海事大学 Continuously at section text detection and recognition methods in a kind of image
CN110648658B (en) * 2019-09-06 2022-04-08 北京达佳互联信息技术有限公司 Method and device for generating voice recognition model and electronic equipment
CN110634491B (en) * 2019-10-23 2022-02-01 大连东软信息学院 Series connection feature extraction system and method for general voice task in voice signal
KR20210061523A (en) * 2019-11-19 2021-05-28 삼성전자주식회사 Electronic device and operating method for converting from handwriting input to text
EP3910534A1 (en) * 2020-05-15 2021-11-17 MyScript Recognizing handwritten text by combining neural networks
CN112068555A (en) * 2020-08-27 2020-12-11 江南大学 Voice control type mobile robot based on semantic SLAM method
CN112712804B (en) * 2020-12-23 2022-08-26 哈尔滨工业大学(威海) Speech recognition method, system, medium, computer device, terminal and application
WO2021081562A2 (en) * 2021-01-20 2021-04-29 Innopeak Technology, Inc. Multi-head text recognition model for multi-lingual optical character recognition
CN112989834B (en) * 2021-04-15 2021-08-20 杭州一知智能科技有限公司 Named entity identification method and system based on flat grid enhanced linear converter
CN113283336A (en) * 2021-05-21 2021-08-20 湖南大学 Text recognition method and system
CN113516968B (en) * 2021-06-07 2022-05-20 北京邮电大学 End-to-end long-term speech recognition method
CN113160803A (en) * 2021-06-09 2021-07-23 中国科学技术大学 End-to-end voice recognition model based on multilevel identification and modeling method
CN113609859A (en) * 2021-08-04 2021-11-05 浙江工业大学 Special equipment Chinese named entity recognition method based on pre-training model
CN113887480B (en) * 2021-10-19 2022-05-17 小语智能信息科技(云南)有限公司 Burma language image text recognition method and device based on multi-decoder joint learning
CN114023316B (en) * 2021-11-04 2023-07-21 匀熵科技(无锡)有限公司 TCN-transducer-CTC-based end-to-end Chinese speech recognition method
CN114155527A (en) * 2021-11-12 2022-03-08 虹软科技股份有限公司 Scene text recognition method and device

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109934293A (en) * 2019-03-15 2019-06-25 苏州大学 Image-recognizing method, device, medium and obscure perception convolutional neural networks

Also Published As

Publication number Publication date
CN114495114A (en) 2022-05-13

Similar Documents

Publication Publication Date Title
CN109934293B (en) Image recognition method, device, medium and confusion perception convolutional neural network
CN112560432B (en) Text emotion analysis method based on graph attention network
CN112115967B (en) Image increment learning method based on data protection
CN114332578A (en) Image anomaly detection model training method, image anomaly detection method and device
CN113469186B (en) Cross-domain migration image segmentation method based on small number of point labels
CN113139594B (en) Self-adaptive detection method for airborne image unmanned aerial vehicle target
CN112053354B (en) Rail plate crack detection method
CN114841257A (en) Small sample target detection method based on self-supervision contrast constraint
CN114139676A (en) Training method of domain adaptive neural network
CN110866113A (en) Text classification method based on sparse self-attention mechanism fine-tuning Bert model
CN114842343A (en) ViT-based aerial image identification method
CN113255573A (en) Pedestrian re-identification method based on mixed cluster center label learning and storage medium
CN114495114B (en) Text sequence recognition model calibration method based on CTC decoder
CN112560948A (en) Eye fundus map classification method and imaging method under data deviation
CN111144462B (en) Unknown individual identification method and device for radar signals
CN117237733A (en) Breast cancer full-slice image classification method combining self-supervision and weak supervision learning
CN112270334B (en) Few-sample image classification method and system based on abnormal point exposure
CN116486150A (en) Uncertainty perception-based regression error reduction method for image classification model
CN115797701A (en) Target classification method and device, electronic equipment and storage medium
CN116521863A (en) Tag anti-noise text classification method based on semi-supervised learning
CN107229944B (en) Semi-supervised active identification method based on cognitive information particles
CN112257787B (en) Image semi-supervised classification method based on generation type dual-condition confrontation network structure
CN112598082B (en) Method and system for predicting generalized error of image identification model based on non-check set
CN115063374A (en) Model training method, face image quality scoring method, electronic device and storage medium
CN114998731A (en) Intelligent terminal navigation scene perception identification method

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
GR01 Patent grant
GR01 Patent grant