WO2017031172A1 - Order statistic techniques for neural networks - Google Patents
Order statistic techniques for neural networks Download PDFInfo
- Publication number
- WO2017031172A1 WO2017031172A1 PCT/US2016/047289 US2016047289W WO2017031172A1 WO 2017031172 A1 WO2017031172 A1 WO 2017031172A1 US 2016047289 W US2016047289 W US 2016047289W WO 2017031172 A1 WO2017031172 A1 WO 2017031172A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- values
- network
- input
- produce
- vector
- 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.)
- Ceased
Links
Classifications
-
- G—PHYSICS
- G10—MUSICAL INSTRUMENTS; ACOUSTICS
- G10L—SPEECH ANALYSIS TECHNIQUES OR SPEECH SYNTHESIS; SPEECH RECOGNITION; SPEECH OR VOICE PROCESSING TECHNIQUES; SPEECH OR AUDIO CODING OR DECODING
- G10L15/00—Speech recognition
- G10L15/06—Creation of reference templates; Training of speech recognition systems, e.g. adaptation to the characteristics of the speaker's voice
- G10L15/063—Training
-
- G—PHYSICS
- G10—MUSICAL INSTRUMENTS; ACOUSTICS
- G10L—SPEECH ANALYSIS TECHNIQUES OR SPEECH SYNTHESIS; SPEECH RECOGNITION; SPEECH OR VOICE PROCESSING TECHNIQUES; SPEECH OR AUDIO CODING OR DECODING
- G10L15/00—Speech recognition
- G10L15/08—Speech classification or search
- G10L15/16—Speech classification or search using artificial neural networks
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/04—Architecture, e.g. interconnection topology
- G06N3/0499—Feedforward networks
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/08—Learning methods
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/08—Learning methods
- G06N3/09—Supervised learning
-
- G—PHYSICS
- G10—MUSICAL INSTRUMENTS; ACOUSTICS
- G10L—SPEECH ANALYSIS TECHNIQUES OR SPEECH SYNTHESIS; SPEECH RECOGNITION; SPEECH OR VOICE PROCESSING TECHNIQUES; SPEECH OR AUDIO CODING OR DECODING
- G10L25/00—Speech or voice analysis techniques not restricted to a single one of groups G10L15/00 - G10L21/00
- G10L25/27—Speech or voice analysis techniques not restricted to a single one of groups G10L15/00 - G10L21/00 characterised by the analysis technique
- G10L25/30—Speech or voice analysis techniques not restricted to a single one of groups G10L15/00 - G10L21/00 characterised by the analysis technique using neural networks
Definitions
- Neural networks are frequently employed in the field of machine learning to approximate unknown functions that can depend on a large number of inputs.
- a neural network (or simply "network") comprises a number of interconnected units that send messages to one another. Each network unit has associated weight values that can be tuned based on labeled training data, which is input data for which corresponding outputs
- labels are known. Thereby, the network may be adapted (or “trained”) to produce a suitable output when subsequently presented with unlabeled input data.
- training of a neural network based on labeled training data may result in a network that is so closely tuned to the training data that it does not produce meaningful results on unlabeled data that is different, but similar to, the labeled training data. This can be due to the network "overfitting" its tunable parameters to apparent characteristics of the training data that are, in actuality, sampling noise. Thereby, by overfitting to the training data the network may not have applicability to subsequent unlabeled data.
- a method of classifying speech recognition results using a neural network comprising a plurality of
- the method comprising using at least one computer, performing acts of providing a first vector as input to a first network layer comprising one or more network units of the neural network, transforming, by a first network unit of the one or more network units, the input vector to produce a plurality of values, the transformation being based at least in part on a plurality of weight values of the first network unit, sorting the plurality of values to produce a sorted plurality of values; and providing the sorted plurality of values as input to a second network layer of the neural network.
- At least one computer readable storage medium storing instructions that, when executed by at least one processor, perform a method of classifying speech recognition results using a neural network comprising a plurality of interconnected network units, each network unit having one or more weight values, the method comprising providing a first vector as input to a first network layer comprising one or more network units of the neural network, transforming, by a first network unit of the one or more network units, the input vector to produce a plurality of values, the transformation being based at least in part on a plurality of weight values of the first network unit, sorting the plurality of values to produce a sorted plurality of values, and providing the sorted plurality of values as input to a second network layer of the neural network.
- FIG. 1A depicts a conventional network unit
- FIG. IB depicts a maxout network unit
- FIG. 2 depicts an illustrative sortout network unit, according to some embodiments
- FIG. 3 is a flowchart depicting a method of using a sortout network unit to produce sorted output values, according to some embodiments
- FIG. 4A depicts an illustrative neural network including a layer of sortout units, according to some embodiments;
- FIGs. 4B-4C depict illustrative portions of the neural network shown in FIG. 4 A, according to some embodiments;
- FIG. 5 illustrates an example of a computing system environment on which aspects of the invention may be implemented.
- neural networks when trained may overfit to the labeled training data.
- Neural networks with multiple and often numerous layers typically contain many network units and therefore have a large number of tunable parameters, which makes them able to learn very complex relationships between their inputs and outputs.
- these same characteristics can also lead to overfitting on labeled training data, particularly if the size of the training data set is limited. Due to the large number of tunable parameters, many of the parameters may not be able to converge on values having general applicability to unlabeled data unless the labeled training data set is very large.
- Test data refers generally to input data provided to a trained neural network for which the correct output is not known, for example, input data provided to a neural network deployed in a system to perform the operations the neural network was trained to perform.
- FIG. 1A illustrates a conventional network unit that receives an input vector x and transforms the input vector using a weight vector w to produce an output value a.
- the value a may have a non- linear function f() applied to it, such as a logistic function, thereby producing f(a) as an output from the network unit.
- the values of the weight vector w are tuned by passing labeled training data (e.g., training data for which the desired output is known) through the network and comparing the network' s behavior to the intended behavior. By providing the neural network with sufficient training data as input and modifying the neural network based on the comparison, the neural network can be trained to produce the desired output from the corresponding input.
- the so-called "maxout" unit shown in FIG. IB includes multiple weight vectors that are each applied to an input vector x to produce a number of respective output values ai, a 2 and a 3 .
- the maxout unit then takes the maximum of these values and outputs the maximum value from the network unit.
- the inventors have recognized and appreciated that, by selecting only the maximum value within a maxout unit, information about other models (the models each being represented by a weight vector) is thereby lost. For instance, in a maxout unit, only the weight vector that produces the largest output value has any effect on the output of the network unit. In the example of FIG. IB, weight vectors wi and w 2 do not contribute to the output since a 3 , which was produced using w 3i corresponds to the maximum value. The inventors have recognized that subsequent units in the network may be able to utilize information about other models, even though these models may not have produced the highest value output when applied to an input vector.
- a network unit configured to evaluate multiple models and generate output indicative of the performance of these models.
- a sorted list of output values from a network unit is produced, wherein each output value represents the performance of a respective model upon an input to the unit.
- Subsequent units in the network may then utilize values produced by each model.
- the significance of each value may be effectively encoded in its position in the sorted list of values. For example, the maximum value may always appear first in the list of sorted values. Information about the relative significance of each output value may thereby be implicitly provided to subsequent network units.
- weight vectors in one of the network units that perform sorting may each represent a model that is applied to the unit's input (e.g., applied through a linear combination of weight values w and input values x). Values produced from each weight vector' s application to the input vector are sorted and output from the sortout unit as a sorted list of values.
- a neural network may comprise a layer of "sortout" network units.
- Each of the sortout units may output a sorted list of values produced by operating on an input vector (e.g., by applying a plurality of weight vectors).
- the resulting plurality of sorted lists may then be provided to network units in a subsequent layer of the network.
- a single output vector (or other suitable ordered list of values) in which the plurality of sorted lists are combined in such a way to preserve the sorted order of each list may be supplied to a second network layer. For instance, the sorted lists may be concatenated together to produce a single ordered list.
- the single ordered list provides an output vector of the layer of sortout units, which may in turn be provided as the input vector to a subsequent layer in the network.
- each unit of the subsequent network layer may receive an input vector that includes the combination of sorted lists output from the layer of sortout units.
- this vector may provide information about the ordering produced by each of the preceding layer's sortout units via the position of each value in the output vector, which implicitly conveys the value's significance.
- values output by each sortout unit in a layer of sortout units may be assembled in an output vector (or other suitable ordered list of values) and then sorted as a whole before being provided to a second network layer.
- a subset of a sorted list output from a sortout unit may be provided to one or more network units in a subsequent layer of a neural network.
- the subset may include any suitable subset that may be generated from the ordered values, such as, but not limited to, the N largest values (where N is an integer value), the N smallest values, a median value or N values adjacent to each other in the ordered list that include the median.
- FIG. 2 depicts an illustrative sortout network unit, according to some embodiments.
- Exemplary sortout unit 200 includes three weight vectors wi, w 2 and w 3 that are each applied to input vector x, thereby producing values ai, a 2 and a 3 .
- the sortout unit sorts values ai, a 2 and a 3 in either ascending or descending order to produce output values from the sortout unit.
- the sorted order produced is a 3 , ai then a 2 .
- a 3 may be the largest value and a 2 the smallest value; alternatively, a 2 may be the largest value and a 3 the smallest value, depending on whether the sorting is performed in descending or ascending order, respectively.
- the values output from the application of each weight vector to an input vector are ordered in ascending or descending order of value.
- the weight vectors w of sortout unit 200 transform an input vector x using a linear transfer function to produce an output value a.
- the linear transfer function may be a linear combination of the weight values and corresponding input vector values (e.g., an inner product).
- x may have values ⁇ xi, x 2 , ..., x n ⁇
- w may have values ⁇ wi, w 2 , ..., w n ⁇ and a may be equal to xiwi + x 2 w 2 + ... + x n w n .
- the linear combination may include a bias term that is added to the combination of the weight values and input values.
- sortout unit 200 may apply a non-linear function to values ai, a 2 and a 3 , which may be performed before or after the values are sorted.
- Suitable non-linear functions may include, but are not limited to, a sigmoid function such as the logistic function, a softmax function, a softplus function, a hyperbolic function, or combinations thereof.
- a neural network including one or more sortout units may be applied to perform automated speech recognition (ASR).
- ASR automated speech recognition
- an input vector to the neural network may comprise a plurality of coefficients obtained from speech, such as log-mel coefficients and/or mel-frequency cepstral coefficients.
- the neural network may be configured to produce an output vector having elements that each correspond to a particular phoneme and whose values indicate the likelihood that the input coefficients correspond to the respective phoneme.
- the output of the neural network may be a hypothesis for the phoneme sequence corresponding to the input vector.
- the neural network may have been trained, and weights of the network thereby tuned, on labeled training data such that providing the input vector to the network produces the output vector based on the weight values of the network.
- such a neural network may be configured to receive hundreds, thousands or more input values, produce hundreds or thousands or more output values in response, have one million or more tunable parameters (e.g., weight values) and have multiple hidden layers (e.g., two, three, four, five, ten or more hidden layers).
- output values from such a neural network may be used to construct a word hypothesis. It should be appreciated that a neural network may be of any size and include any number of hidden layers, as the aspects are not limited in this respect.
- FIG. 3 is a flowchart depicting a method of using a sortout network unit to produce sorted output values, according to some embodiments.
- the sortout unit of method 300 is a network unit within a neural network that includes a plurality of units (some of which also may be sortout units).
- a sortout unit receives an input vector in act 310.
- the input vector is transformed based on weight values of the sortout unit.
- the sortout unit includes a plurality of weight vectors that are each separately applied to the input vector using a selected transfer function, thereby producing a plurality of values.
- the transfer function may be a linear combination of the weight vector elements and the input vector elements.
- the weight vectors of the sortout unit may be configured to have the same number of elements as the input vector.
- values output by transforming the input vector using the weight values are sorted, which rearranges the order of the values to reflect their relative magnitudes.
- a sortout unit may be configured to produce transformed values that may, dependent on the input values and the weight values, be positive or negative, in which case an ordering of such values may either be based on relative magnitude or may instead be based on relative absolute magnitudes.
- the ordering of the values produced in act 330 may be represented in any suitable way.
- the sorted values are stored in a vector wherein the vector elements have an implicit ordering. However, values may in general be stored in any suitable way that indicates their relative order.
- the sorted values are output to another network unit of the neural network.
- FIG. 4A depicts an illustrative neural network including a layer of sortout units, according to some embodiments.
- neural network 400 is depicted, which includes six network units arranged into three layers.
- An input value 411 is provided to each of sortout units 421, 422 and 423. Values output from these sortout units are provided to each of network units 431 and 432.
- Output values from network units 431 and 432 are provided to network unit 441, which produces an output value 451 from the network.
- Each of network units 421, 422, 423, 431, 432 and 441 comprise a plurality of weight values that may have been tuned during previous training of network 400. For instance, labeled training data that includes input values and their corresponding output values may have been supplied to the network 400 and the network trained to determine suitable values for the weights of each of the network units.
- FIG. 4B depicts a first portion of neural network 400, according to some embodiments.
- each of the network units 421, 422 and 423 include two weight vectors that are each applied to the input vector x.
- sortout unit 421 transforms x using a vector wn to produce a value an, and also transforms x using a vector wi 2 to produce a value ai 2 .
- application of a weight vector to an input vector may, in some embodiments, comprise generating a linear combination of the elements of the two vectors.
- sortout unit 421 sorts values an and ai 2 to produce the ordering ai 2 , an.
- sortout unit 422 sorts values ai 3 and ai 4 to produce an ordering ai 3
- ai 4 and sortout unit 423 sorts values ais and ai 6 to produce an ordering ai 6 , ai 5 .
- Outputs from the three sortout units 421, 422 and 423 are combined to produce a single vector ai, which combines the outputs of each respective sortout unit whilst retaining the relative ordering determining by each sort operation.
- subsequent network units receiving ai as input may perform processing that is based on the fact that the first element of ai is greater than the second element of ai (assuming that the sort operation performed by sortout unit 421 was to sort in descending order). That is, the weight values of subsequent network units may have been tuned during training such that the weight values produce desired outputs from the network by responding to the relative sizes of the values in ai.
- weight vector wn may have been tuned to produce a large output value when a first feature is present in input vector x and weight vector wi 2 may have been tuned to produce a large output value when a second feature is present in input vector x.
- the weight vectors wn and wi 2 may be viewed as "detectors" for these two features.
- the first two elements of vector ai will thereby indicate values of detection results of these two "detectors," which allows a subsequent layer of network units receiving ai as input to interpolate over these results.
- the weight values in the subsequent layer may thereby be tuned to utilize this aspect of their input vector ai, which may reduce the network's tendency to overfit to training data compared with a layer of conventional network units or a layer of maxout units.
- FIG. 4C depicts a second portion of neural network 400, according to some embodiments.
- the vector ai output from the layer of sortout units is provided as input to each of conventional network units 431 and 432, which each transform the input using a single weight vector w 2 i and w 22 , respectively, to produce outputs a 2 i and a 22 , respectively.
- These output values are combined to produce a vector a 2 , which is provided as input to network unit 441.
- Network unit 441 transforms a 2 using weight vector w 3 i to produce an output value y, which is output from the network.
- neural networks illustrated herein are merely exemplary to demonstrate how sorting techniques may be utilized. Any type of neural network of any size, configuration and connectivity may be used, as techniques regarding sorting output values discussed herein are not limited for use with any particular network and can be applied to networks of any type. Moreover, the neural networks illustrated herein may be applied to any suitable machine learning task or tasks, including but not limited to automated speech recognition (ASR) or other types of pattern recognition.
- ASR automated speech recognition
- FIG. 5 An illustrative implementation of a computer system 500 that may be used to implement a neural network including one or more sortout units as described herein is shown in FIG. 5.
- the computer system 500 may include one or more processors 510 and one or more non-transitory computer-readable storage media or storage devices (e.g., memory 520 and one or more non-volatile storage media 530).
- the processor 510 may control writing data to and reading data from the memory 520 and the non- volatile storage device 530 in any suitable manner, as the aspects of the invention described herein are not limited in this respect.
- the processor 510 may execute one or more instructions stored in one or more computer- readable storage media (e.g., the memory 520, storage media, etc.), which may serve as non- transitory computer-readable storage media storing instructions for execution by the processor 510.
- code used to, for example, store weight values, perform training algorithms, store labeled and/or unlabeled data, produce output from the network using the network's units, etc. may be stored on one or more computer-readable storage media of computer system 500.
- Processor 510 may execute any such code to provide any techniques for training and/or operating a neural network as described herein. Any other software, programs or instructions described herein may also be stored and executed by computer system 500.
- computer code may be applied to any aspects of methods and techniques described herein. For example, computer code may be applied to determine weight values of a plurality of network units in a neural network based on labeled training data and/or may be applied to determine an output of a neural network based on previously determined weight values.
- Various inventive concepts may be embodied as at least one non-transitory computer readable storage medium (e.g., a computer memory, one or more floppy discs, compact discs, optical discs, magnetic tapes, flash memories, circuit configurations in Field Programmable Gate Arrays or other semiconductor devices, etc.) or a computer readable storage device encoded with one or more programs that, when executed on one or more computers or other processors, implement some of the various embodiments of the present invention.
- the non-transitory computer-readable medium or media may be transportable, such that the program or programs stored thereon may be loaded onto any computer resource to implement various aspects of the present invention as discussed above.
- program means any type of computer code or set of computer-executable instructions that can be employed to program a computer or other processor to implement various aspects of embodiments as discussed above. Additionally, it should be appreciated that according to one aspect, one or more computer programs that when executed perform methods of one or more embodiments described herein need not reside on a single computer or processor, but may be distributed in a modular fashion among different computers or processors to implement various aspects of the present invention.
- neural network such as, but not limited to any feed forward network (e.g., a multi-layer perceptron network), a radial basis function (RBF) network, autoencoders, denoising autoencoders, recurrent neural networks (RNNS), (Bi-directional) long- short-term memory networks (LSTMS), neural turing machines (NTMs), or combinations thereof.
- RNF radial basis function
- RNNS recurrent neural networks
- LTMS Long- short-term memory networks
- NTMs neural turing machines
- Any number of network units, including any number of hidden layers, inputs and outputs may be utilized in such a neural network.
- the neural network may be trained (and weight values thereby determined) using any suitable algorithm(s), which may include a fixed dropout scheme and/or an annealed dropout scheme.
- inventive concepts may be embodied as one or more methods, of which examples have been provided.
- the acts performed as part of a method may be ordered in any suitable way. Accordingly, embodiments may be constructed in which acts are performed in an order different than illustrated, which may include performing some acts simultaneously, even though shown as sequential acts in illustrative embodiments.
Landscapes
- Engineering & Computer Science (AREA)
- Physics & Mathematics (AREA)
- Health & Medical Sciences (AREA)
- Artificial Intelligence (AREA)
- Computational Linguistics (AREA)
- Theoretical Computer Science (AREA)
- Evolutionary Computation (AREA)
- Multimedia (AREA)
- Acoustics & Sound (AREA)
- Human Computer Interaction (AREA)
- Audiology, Speech & Language Pathology (AREA)
- Biophysics (AREA)
- Computing Systems (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Mathematical Physics (AREA)
- Software Systems (AREA)
- Molecular Biology (AREA)
- General Health & Medical Sciences (AREA)
- Data Mining & Analysis (AREA)
- Biomedical Technology (AREA)
- Life Sciences & Earth Sciences (AREA)
- Signal Processing (AREA)
- Image Analysis (AREA)
Abstract
According to some aspects, a method of classifying speech recognition results is provided, using a neural network comprising a plurality of interconnected network units, each network unit having one or more weight values, the method comprising using at least one computer, performing acts of providing a first vector as input to a first network layer comprising one or more network units of the neural network, transforming, by a first network unit of the one or more network units, the input vector to produce a plurality of values, the transformation being based at least in part on a plurality of weight values of the first network unit, sorting the plurality of values to produce a sorted plurality of values, and providing the sorted plurality of values as input to a second network layer of the neural network.
Description
ORDER STATISTIC TECHNIQUES FOR NEURAL NETWORKS
BACKGROUND
[0001] Neural networks are frequently employed in the field of machine learning to approximate unknown functions that can depend on a large number of inputs. Typically, a neural network (or simply "network") comprises a number of interconnected units that send messages to one another. Each network unit has associated weight values that can be tuned based on labeled training data, which is input data for which corresponding outputs
("labels") are known. Thereby, the network may be adapted (or "trained") to produce a suitable output when subsequently presented with unlabeled input data.
[0002] In some cases, training of a neural network based on labeled training data may result in a network that is so closely tuned to the training data that it does not produce meaningful results on unlabeled data that is different, but similar to, the labeled training data. This can be due to the network "overfitting" its tunable parameters to apparent characteristics of the training data that are, in actuality, sampling noise. Thereby, by overfitting to the training data the network may not have applicability to subsequent unlabeled data.
SUMMARY
[0003] According to some aspects, a method of classifying speech recognition results using a neural network is provided, the neural network comprising a plurality of
interconnected network units, each network unit having one or more weight values, the method comprising using at least one computer, performing acts of providing a first vector as input to a first network layer comprising one or more network units of the neural network, transforming, by a first network unit of the one or more network units, the input vector to produce a plurality of values, the transformation being based at least in part on a plurality of weight values of the first network unit, sorting the plurality of values to produce a sorted
plurality of values; and providing the sorted plurality of values as input to a second network layer of the neural network.
[0004] According to some aspects, at least one computer readable storage medium is provided storing instructions that, when executed by at least one processor, perform a method of classifying speech recognition results using a neural network comprising a plurality of interconnected network units, each network unit having one or more weight values, the method comprising providing a first vector as input to a first network layer comprising one or more network units of the neural network, transforming, by a first network unit of the one or more network units, the input vector to produce a plurality of values, the transformation being based at least in part on a plurality of weight values of the first network unit, sorting the plurality of values to produce a sorted plurality of values, and providing the sorted plurality of values as input to a second network layer of the neural network.
BRIEF DESCRIPTION OF DRAWINGS
[0005] Various aspects and embodiments will be described with reference to the following figures. It should be appreciated that the figures are not necessarily drawn to scale. In the drawings, each identical or nearly identical component that is illustrated in various figures is represented by a like numeral. For purposes of clarity, not every component may be labeled in every drawing.
[0006] FIG. 1A depicts a conventional network unit;
[0007] FIG. IB depicts a maxout network unit;
[0008] FIG. 2 depicts an illustrative sortout network unit, according to some embodiments;
[0009] FIG. 3 is a flowchart depicting a method of using a sortout network unit to produce sorted output values, according to some embodiments;
[0010] FIG. 4A depicts an illustrative neural network including a layer of sortout units, according to some embodiments;
[0011] FIGs. 4B-4C depict illustrative portions of the neural network shown in FIG. 4 A, according to some embodiments; and
[0012] FIG. 5 illustrates an example of a computing system environment on which aspects of the invention may be implemented.
DETAILED DESCRIPTION
[0013] As discussed above, some neural networks when trained may overfit to the labeled training data. Neural networks with multiple and often numerous layers (sometimes called "deep" neural networks) typically contain many network units and therefore have a large number of tunable parameters, which makes them able to learn very complex relationships between their inputs and outputs. However, these same characteristics can also lead to overfitting on labeled training data, particularly if the size of the training data set is limited. Due to the large number of tunable parameters, many of the parameters may not be able to converge on values having general applicability to unlabeled data unless the labeled training data set is very large. Accordingly, when a deep network trained on labeled training data is applied to unlabeled data or test data, the network's performance may deviate from the desired performance. This may be the case even if the training data and the test data are drawn from the same distribution. Test data refers generally to input data provided to a trained neural network for which the correct output is not known, for example, input data provided to a neural network deployed in a system to perform the operations the neural network was trained to perform.
[0014] Some techniques to address overfitting attempt to perform averaging over a number of possible network configurations, thus averaging out effects like transient sampling noise in a set of training data. One such technique utilizes a network unit that outputs the maximum value from a set of values produced within the unit. This so-called "maxout" unit is depicted in FIG. IB. For comparison, FIG. 1A illustrates a conventional network unit that receives an input vector x and transforms the input vector using a weight vector w to produce an output value a. The transformation may be a linear transformation, such as an inner product (e.g., a = xiwi + x2w2 + ... + xnwn). The value a may have a non-
linear function f() applied to it, such as a logistic function, thereby producing f(a) as an output from the network unit. During training of a neural network, the values of the weight vector w are tuned by passing labeled training data (e.g., training data for which the desired output is known) through the network and comparing the network' s behavior to the intended behavior. By providing the neural network with sufficient training data as input and modifying the neural network based on the comparison, the neural network can be trained to produce the desired output from the corresponding input.
[0015] The so-called "maxout" unit shown in FIG. IB includes multiple weight vectors that are each applied to an input vector x to produce a number of respective output values ai, a2 and a3. The maxout unit then takes the maximum of these values and outputs the maximum value from the network unit.
[0016] The inventors have recognized and appreciated that, by selecting only the maximum value within a maxout unit, information about other models (the models each being represented by a weight vector) is thereby lost. For instance, in a maxout unit, only the weight vector that produces the largest output value has any effect on the output of the network unit. In the example of FIG. IB, weight vectors wi and w2 do not contribute to the output since a3, which was produced using w3i corresponds to the maximum value. The inventors have recognized that subsequent units in the network may be able to utilize information about other models, even though these models may not have produced the highest value output when applied to an input vector.
[0017] Based on this insight, the inventors have developed a network unit configured to evaluate multiple models and generate output indicative of the performance of these models. According to some embodiments, a sorted list of output values from a network unit is produced, wherein each output value represents the performance of a respective model upon an input to the unit. Subsequent units in the network may then utilize values produced by each model. The significance of each value may be effectively encoded in its position in the sorted list of values. For example, the maximum value may always appear first in the list of sorted values. Information about the relative significance of each output value may thereby be implicitly provided to subsequent network units. For instance, weight vectors in
one of the network units that perform sorting (which may be termed "sortout units") may each represent a model that is applied to the unit's input (e.g., applied through a linear combination of weight values w and input values x). Values produced from each weight vector' s application to the input vector are sorted and output from the sortout unit as a sorted list of values.
[0018] In some embodiments, a neural network may comprise a layer of "sortout" network units. Each of the sortout units may output a sorted list of values produced by operating on an input vector (e.g., by applying a plurality of weight vectors). The resulting plurality of sorted lists may then be provided to network units in a subsequent layer of the network. In some implementations, a single output vector (or other suitable ordered list of values) in which the plurality of sorted lists are combined in such a way to preserve the sorted order of each list may be supplied to a second network layer. For instance, the sorted lists may be concatenated together to produce a single ordered list. The single ordered list provides an output vector of the layer of sortout units, which may in turn be provided as the input vector to a subsequent layer in the network. For example, each unit of the subsequent network layer may receive an input vector that includes the combination of sorted lists output from the layer of sortout units. As noted above, this vector may provide information about the ordering produced by each of the preceding layer's sortout units via the position of each value in the output vector, which implicitly conveys the value's significance. In other implementations, values output by each sortout unit in a layer of sortout units may be assembled in an output vector (or other suitable ordered list of values) and then sorted as a whole before being provided to a second network layer.
[0019] In some embodiments, a subset of a sorted list output from a sortout unit may be provided to one or more network units in a subsequent layer of a neural network. The subset may include any suitable subset that may be generated from the ordered values, such as, but not limited to, the N largest values (where N is an integer value), the N smallest values, a median value or N values adjacent to each other in the ordered list that include the median.
[0020] FIG. 2 depicts an illustrative sortout network unit, according to some embodiments. Exemplary sortout unit 200 includes three weight vectors wi, w2 and w3 that are each applied to input vector x, thereby producing values ai, a2 and a3. The sortout unit sorts values ai, a2 and a3 in either ascending or descending order to produce output values from the sortout unit. In the example of FIG. 2, the sorted order produced is a3, ai then a2. For instance, a3 may be the largest value and a2 the smallest value; alternatively, a2 may be the largest value and a3 the smallest value, depending on whether the sorting is performed in descending or ascending order, respectively. In either case, the values output from the application of each weight vector to an input vector are ordered in ascending or descending order of value.
[0021] According to some embodiments, the weight vectors w of sortout unit 200 transform an input vector x using a linear transfer function to produce an output value a. In some implementations, the linear transfer function may be a linear combination of the weight values and corresponding input vector values (e.g., an inner product). For instance, x may have values {xi, x2, ..., xn}, w may have values {wi, w2, ..., wn} and a may be equal to xiwi + x2w2 + ... + xnwn. In some cases, the linear combination may include a bias term that is added to the combination of the weight values and input values.
[0022] According to some embodiments, sortout unit 200 may apply a non-linear function to values ai, a2 and a3, which may be performed before or after the values are sorted. Suitable non-linear functions may include, but are not limited to, a sigmoid function such as the logistic function, a softmax function, a softplus function, a hyperbolic function, or combinations thereof.
[0023] In some embodiments, a neural network including one or more sortout units, such as sortout unit 200, may be applied to perform automated speech recognition (ASR). For instance, an input vector to the neural network may comprise a plurality of coefficients obtained from speech, such as log-mel coefficients and/or mel-frequency cepstral coefficients. The neural network may be configured to produce an output vector having elements that each correspond to a particular phoneme and whose values indicate the likelihood that the input coefficients correspond to the respective phoneme. As such, the
output of the neural network may be a hypothesis for the phoneme sequence corresponding to the input vector. The neural network may have been trained, and weights of the network thereby tuned, on labeled training data such that providing the input vector to the network produces the output vector based on the weight values of the network. In some
embodiments, such a neural network may be configured to receive hundreds, thousands or more input values, produce hundreds or thousands or more output values in response, have one million or more tunable parameters (e.g., weight values) and have multiple hidden layers (e.g., two, three, four, five, ten or more hidden layers). In some embodiments, output values from such a neural network may be used to construct a word hypothesis. It should be appreciated that a neural network may be of any size and include any number of hidden layers, as the aspects are not limited in this respect.
[0024] FIG. 3 is a flowchart depicting a method of using a sortout network unit to produce sorted output values, according to some embodiments. The sortout unit of method 300 is a network unit within a neural network that includes a plurality of units (some of which also may be sortout units). In method 300, a sortout unit receives an input vector in act 310. In act 320, the input vector is transformed based on weight values of the sortout unit. In some embodiments, the sortout unit includes a plurality of weight vectors that are each separately applied to the input vector using a selected transfer function, thereby producing a plurality of values. In some implementations, the transfer function may be a linear combination of the weight vector elements and the input vector elements. In some embodiments, the weight vectors of the sortout unit may be configured to have the same number of elements as the input vector.
[0025] In act 330, values output by transforming the input vector using the weight values are sorted, which rearranges the order of the values to reflect their relative magnitudes. In some implementations, a sortout unit may be configured to produce transformed values that may, dependent on the input values and the weight values, be positive or negative, in which case an ordering of such values may either be based on relative magnitude or may instead be based on relative absolute magnitudes. The ordering of the values produced in act 330 may be represented in any suitable way. In some
embodiments, the sorted values are stored in a vector wherein the vector elements have an implicit ordering. However, values may in general be stored in any suitable way that indicates their relative order. In act 340, the sorted values are output to another network unit of the neural network.
[0026] FIG. 4A depicts an illustrative neural network including a layer of sortout units, according to some embodiments. To illustrate a neural network utilizing sortout units, neural network 400 is depicted, which includes six network units arranged into three layers. An input value 411 is provided to each of sortout units 421, 422 and 423. Values output from these sortout units are provided to each of network units 431 and 432. Output values from network units 431 and 432 are provided to network unit 441, which produces an output value 451 from the network. Each of network units 421, 422, 423, 431, 432 and 441 comprise a plurality of weight values that may have been tuned during previous training of network 400. For instance, labeled training data that includes input values and their corresponding output values may have been supplied to the network 400 and the network trained to determine suitable values for the weights of each of the network units.
[0027] FIG. 4B depicts a first portion of neural network 400, according to some embodiments. In the example of FIG. 4B, each of the network units 421, 422 and 423 include two weight vectors that are each applied to the input vector x. For instance, sortout unit 421 transforms x using a vector wn to produce a value an, and also transforms x using a vector wi2 to produce a value ai2. As discussed above, application of a weight vector to an input vector may, in some embodiments, comprise generating a linear combination of the elements of the two vectors. In the example of FIG. 4B, sortout unit 421 sorts values an and ai2 to produce the ordering ai2, an. Similarly, sortout unit 422 sorts values ai3 and ai4 to produce an ordering ai3, ai4 and sortout unit 423 sorts values ais and ai6 to produce an ordering ai6, ai5.
[0028] Outputs from the three sortout units 421, 422 and 423 are combined to produce a single vector ai, which combines the outputs of each respective sortout unit whilst retaining the relative ordering determining by each sort operation. Accordingly, subsequent network units receiving ai as input may perform processing that is based on the fact that the
first element of ai is greater than the second element of ai (assuming that the sort operation performed by sortout unit 421 was to sort in descending order). That is, the weight values of subsequent network units may have been tuned during training such that the weight values produce desired outputs from the network by responding to the relative sizes of the values in ai.
[0029] For instance, weight vector wn may have been tuned to produce a large output value when a first feature is present in input vector x and weight vector wi2 may have been tuned to produce a large output value when a second feature is present in input vector x. In this case, the weight vectors wn and wi2 may be viewed as "detectors" for these two features. The first two elements of vector ai will thereby indicate values of detection results of these two "detectors," which allows a subsequent layer of network units receiving ai as input to interpolate over these results. In at least some networks, during training the weight values in the subsequent layer may thereby be tuned to utilize this aspect of their input vector ai, which may reduce the network's tendency to overfit to training data compared with a layer of conventional network units or a layer of maxout units.
[0030] FIG. 4C depicts a second portion of neural network 400, according to some embodiments. The vector ai output from the layer of sortout units is provided as input to each of conventional network units 431 and 432, which each transform the input using a single weight vector w2i and w22, respectively, to produce outputs a2i and a22, respectively. These output values are combined to produce a vector a2, which is provided as input to network unit 441. Network unit 441 transforms a2 using weight vector w3i to produce an output value y, which is output from the network.
[0031] It should be appreciated that the neural networks illustrated herein are merely exemplary to demonstrate how sorting techniques may be utilized. Any type of neural network of any size, configuration and connectivity may be used, as techniques regarding sorting output values discussed herein are not limited for use with any particular network and can be applied to networks of any type. Moreover, the neural networks illustrated herein may be applied to any suitable machine learning task or tasks, including but not limited to automated speech recognition (ASR) or other types of pattern recognition.
[0032] An illustrative implementation of a computer system 500 that may be used to implement a neural network including one or more sortout units as described herein is shown in FIG. 5. The computer system 500 may include one or more processors 510 and one or more non-transitory computer-readable storage media or storage devices (e.g., memory 520 and one or more non-volatile storage media 530). The processor 510 may control writing data to and reading data from the memory 520 and the non- volatile storage device 530 in any suitable manner, as the aspects of the invention described herein are not limited in this respect. To perform the functionality and/or techniques described herein, the processor 510 may execute one or more instructions stored in one or more computer- readable storage media (e.g., the memory 520, storage media, etc.), which may serve as non- transitory computer-readable storage media storing instructions for execution by the processor 510.
[0033] In connection with techniques for training and/or operating a neural network including one or more sortout units as described herein, code used to, for example, store weight values, perform training algorithms, store labeled and/or unlabeled data, produce output from the network using the network's units, etc. may be stored on one or more computer-readable storage media of computer system 500. Processor 510 may execute any such code to provide any techniques for training and/or operating a neural network as described herein. Any other software, programs or instructions described herein may also be stored and executed by computer system 500. It will be appreciated that computer code may be applied to any aspects of methods and techniques described herein. For example, computer code may be applied to determine weight values of a plurality of network units in a neural network based on labeled training data and/or may be applied to determine an output of a neural network based on previously determined weight values.
[0034] Various inventive concepts may be embodied as at least one non-transitory computer readable storage medium (e.g., a computer memory, one or more floppy discs, compact discs, optical discs, magnetic tapes, flash memories, circuit configurations in Field Programmable Gate Arrays or other semiconductor devices, etc.) or a computer readable storage device encoded with one or more programs that, when executed on one or more
computers or other processors, implement some of the various embodiments of the present invention. The non-transitory computer-readable medium or media may be transportable, such that the program or programs stored thereon may be loaded onto any computer resource to implement various aspects of the present invention as discussed above.
[0035] The terms "program," "software," and/or "application" are used herein in a generic sense to refer to any type of computer code or set of computer-executable instructions that can be employed to program a computer or other processor to implement various aspects of embodiments as discussed above. Additionally, it should be appreciated that according to one aspect, one or more computer programs that when executed perform methods of one or more embodiments described herein need not reside on a single computer or processor, but may be distributed in a modular fashion among different computers or processors to implement various aspects of the present invention.
[0036] While particular techniques for storing and arranging numbers within a computer system have been discussed herein, it will be appreciated that the techniques described herein are not limited to any particular technique(s) for storing data within a computer system. For instance, examples described herein utilize vectors to store and order a set of values. However, the techniques described herein are not limited to the use of vectors, as any technique or techniques for storing values and an ordering of those values may be utilized. This non-limiting description applies to any of: output of a sortout unit, weight values, input values, etc.
[0037] Techniques utilized herein may be utilized with any type of neural network, such as, but not limited to any feed forward network (e.g., a multi-layer perceptron network), a radial basis function (RBF) network, autoencoders, denoising autoencoders, recurrent neural networks (RNNS), (Bi-directional) long- short-term memory networks (LSTMS), neural turing machines (NTMs), or combinations thereof. Any number of network units, including any number of hidden layers, inputs and outputs may be utilized in such a neural network. In addition, the neural network may be trained (and weight values thereby determined) using any suitable algorithm(s), which may include a fixed dropout scheme and/or an annealed dropout scheme.
[0038] Having thus described several aspects of at least one embodiment of this invention, it is to be appreciated that various alterations, modifications, and improvements will readily occur to those skilled in the art.
[0039] Such alterations, modifications, and improvements are intended to be part of this disclosure, and are intended to be within the spirit and scope of the invention. Further, though advantages of the present invention are indicated, it should be appreciated that not every embodiment of the technology described herein will include every described advantage. Some embodiments may not implement any features described as advantageous herein and in some instances one or more of the described features may be implemented to achieve further embodiments. Accordingly, the foregoing description and drawings are by way of example only.
[0040] Also, various inventive concepts may be embodied as one or more methods, of which examples have been provided. The acts performed as part of a method may be ordered in any suitable way. Accordingly, embodiments may be constructed in which acts are performed in an order different than illustrated, which may include performing some acts simultaneously, even though shown as sequential acts in illustrative embodiments.
[0041] Use of ordinal terms such as "first," "second," "third," etc., in the claims to modify a claim element does not by itself connote any priority, precedence, or order of one claim element over another or the temporal order in which acts of a method are performed, but are used merely as labels to distinguish one claim element having a certain name from another element having a same name (but for use of the ordinal term) to distinguish the claim elements.
[0042] Also, the phraseology and terminology used herein is for the purpose of description and should not be regarded as limiting. The use of "including," "comprising," or "having," "containing," "involving," and variations thereof herein, is meant to encompass the items listed thereafter and equivalents thereof as well as additional items.
Claims
1. A method of classifying speech recognition results using a neural network comprising a plurality of interconnected network units, each network unit having one or more weight values, the method comprising:
using at least one computer, performing acts of:
providing a first vector as input to a first network layer comprising one or more network units of the neural network;
transforming, by a first network unit of the one or more network units, the input vector to produce a plurality of values, the transformation being based at least in part on a plurality of weight values of the first network unit;
sorting the plurality of values to produce a sorted plurality of values; and providing the sorted plurality of values as input to a second network layer of the neural network.
2. The method of claim 1, wherein the method further comprises, using the at least one computer:
transforming, by a second network unit of the one or more network units, the input vector to produce a second plurality of values;
sorting the second plurality of values to produce a second sorted plurality of values; and
providing the second sorted plurality of values as input to the second network layer.
3. The method of claim 2, wherein providing the sorted plurality of values and the second sorted plurality of values as input to the second network layer comprises:
providing a second vector as input to the second network layer, wherein the second vector comprises the plurality of values and the second plurality of values.
4. The method of claim 1, wherein the neural network is a feed forward network.
5. The method of claim 1, wherein the first network layer and the second network layer are hidden layers.
6. The method of claim 1, wherein the first network unit comprises a plurality of weight vectors.
7. The method of claim 1, wherein said transformation of the input vector to produce the plurality of values includes a plurality of linear transformations.
8. The method of claim 1, wherein the method further comprises, using the at least one computer, applying a non-linear function to each of the plurality of values.
9. The method of claim 1, wherein the input vector comprises a plurality of speech recognition features.
10. The method of claim 9, wherein the speech recognition features are log-mel coefficients and/or mel-frequency cepstral coefficients.
11. The method of claim 1, wherein the input vector comprises a plurality of image features.
12. At least one computer readable storage medium storing instructions that, when executed by at least one processor, perform a method of classifying speech recognition results using a neural network comprising a plurality of interconnected network units, each network unit having one or more weight values, the method comprising:
providing a first vector as input to a first network layer comprising one or more network units of the neural network;
transforming, by a first network unit of the one or more network units, the input vector to produce a plurality of values, the transformation being based at least in part on a plurality of weight values of the first network unit;
sorting the plurality of values to produce a sorted plurality of values; and providing the sorted plurality of values as input to a second network layer of the neural network.
13. The at least one computer readable storage medium of claim 12, wherein the method further comprises, using the at least one computer:
transforming, by a second network unit of the one or more network units, the input vector to produce a second plurality of values;
sorting the second plurality of values to produce a second sorted plurality of values; and
providing the second sorted plurality of values as input to the second network layer.
14. The at least one computer readable storage medium of claim 12, wherein the neural network is a feed forward network.
15. The at least one computer readable storage medium of claim 12, wherein the first network layer and the second network layer are hidden layers.
16. The at least one computer readable storage medium of claim 12, wherein said transformation of the input vector to produce the plurality of values includes a plurality of linear transformations.
17. The at least one computer readable storage medium of claim 12, wherein the method further comprises, using the at least one computer, applying a non-linear function to each of the plurality of values.
Applications Claiming Priority (2)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US14/831,028 US9761221B2 (en) | 2015-08-20 | 2015-08-20 | Order statistic techniques for neural networks |
| US14/831,028 | 2015-08-20 |
Publications (1)
| Publication Number | Publication Date |
|---|---|
| WO2017031172A1 true WO2017031172A1 (en) | 2017-02-23 |
Family
ID=56853819
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| PCT/US2016/047289 Ceased WO2017031172A1 (en) | 2015-08-20 | 2016-08-17 | Order statistic techniques for neural networks |
Country Status (2)
| Country | Link |
|---|---|
| US (1) | US9761221B2 (en) |
| WO (1) | WO2017031172A1 (en) |
Families Citing this family (11)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US10880321B2 (en) * | 2017-01-27 | 2020-12-29 | Vectra Ai, Inc. | Method and system for learning representations of network flow traffic |
| US11514465B2 (en) * | 2017-03-02 | 2022-11-29 | The Nielsen Company (Us), Llc | Methods and apparatus to perform multi-level hierarchical demographic classification |
| US11270686B2 (en) * | 2017-03-28 | 2022-03-08 | International Business Machines Corporation | Deep language and acoustic modeling convergence and cross training |
| EP3392882A1 (en) * | 2017-04-20 | 2018-10-24 | Thomson Licensing | Method for processing an input audio signal and corresponding electronic device, non-transitory computer readable program product and computer readable storage medium |
| US20190130896A1 (en) * | 2017-10-26 | 2019-05-02 | Salesforce.Com, Inc. | Regularization Techniques for End-To-End Speech Recognition |
| US10592368B2 (en) * | 2017-10-26 | 2020-03-17 | International Business Machines Corporation | Missing values imputation of sequential data |
| US20200065654A1 (en) * | 2018-08-22 | 2020-02-27 | Electronics And Telecommunications Research Institute | Neural network fusion apparatus and modular neural network fusion method and matching interface generation method for the same |
| KR102655628B1 (en) * | 2018-11-22 | 2024-04-09 | 삼성전자주식회사 | Method and apparatus for processing voice data of speech |
| US11404047B2 (en) | 2019-03-08 | 2022-08-02 | International Business Machines Corporation | Feature and feature variant reconstruction for recurrent model accuracy improvement in speech recognition |
| US11244668B2 (en) * | 2020-05-29 | 2022-02-08 | TCL Research America Inc. | Device and method for generating speech animation |
| US12142293B2 (en) * | 2022-06-30 | 2024-11-12 | Microsoft Technology Licensing, Llc. | Speech dialog system and recipirocity enforced neural relative transfer function estimator |
Family Cites Families (11)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US5621848A (en) * | 1994-06-06 | 1997-04-15 | Motorola, Inc. | Method of partitioning a sequence of data frames |
| DE19581667C2 (en) * | 1994-06-06 | 1999-03-11 | Motorola Inc | Speech recognition system and method for speech recognition |
| GB2307582A (en) * | 1994-09-07 | 1997-05-28 | Motorola Inc | System for recognizing spoken sounds from continuous speech and method of using same |
| WO2002091355A1 (en) * | 2001-05-08 | 2002-11-14 | Intel Corporation | High-order entropy error functions for neural classifiers |
| US8156057B2 (en) * | 2003-03-27 | 2012-04-10 | Knowm Tech, Llc | Adaptive neural network utilizing nanotechnology-based components |
| US7827131B2 (en) * | 2002-08-22 | 2010-11-02 | Knowm Tech, Llc | High density synapse chip using nanoparticles |
| US7774202B2 (en) * | 2006-06-12 | 2010-08-10 | Lockheed Martin Corporation | Speech activated control system and related methods |
| KR100908121B1 (en) * | 2006-12-15 | 2009-07-16 | 삼성전자주식회사 | Speech feature vector conversion method and apparatus |
| US8775341B1 (en) * | 2010-10-26 | 2014-07-08 | Michael Lamport Commons | Intelligent control with hierarchical stacked neural networks |
| US9153230B2 (en) * | 2012-10-23 | 2015-10-06 | Google Inc. | Mobile speech recognition hardware accelerator |
| US9280968B2 (en) * | 2013-10-04 | 2016-03-08 | At&T Intellectual Property I, L.P. | System and method of using neural transforms of robust audio features for speech processing |
-
2015
- 2015-08-20 US US14/831,028 patent/US9761221B2/en active Active
-
2016
- 2016-08-17 WO PCT/US2016/047289 patent/WO2017031172A1/en not_active Ceased
Non-Patent Citations (2)
| Title |
|---|
| GUOQIANG PETER ZHANG: "Neural Networks for Classification: A Survey", IEEE TRANSACTIONS ON SYSTEMS, MAN, AND CYBERNETICS: PART C:APPLICATIONS AND REVIEWS, IEEE SERVICE CENTER, PISCATAWAY, NJ, US, vol. 30, no. 4, 1 November 2000 (2000-11-01), XP011057222, ISSN: 1094-6977 * |
| RENNIE STEVEN J ET AL: "Deep Order Statistic Networks", 2014 IEEE SPOKEN LANGUAGE TECHNOLOGY WORKSHOP (SLT), IEEE, 7 December 2014 (2014-12-07), pages 124 - 128, XP032756924, DOI: 10.1109/SLT.2014.7078561 * |
Also Published As
| Publication number | Publication date |
|---|---|
| US20170053644A1 (en) | 2017-02-23 |
| US9761221B2 (en) | 2017-09-12 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| US9761221B2 (en) | Order statistic techniques for neural networks | |
| CN112561027B (en) | Neural network architecture search method, image processing method, device and storage medium | |
| US20210334605A1 (en) | Image classification neural networks | |
| US20210224659A1 (en) | System and method for addressing overfitting in a neural network | |
| AU2019394750B2 (en) | Automated generation of machine learning models | |
| US11630990B2 (en) | Systems and methods for auto machine learning and neural architecture search | |
| CN110209857B (en) | Vehicle multi-attribute identification method, device and medium based on neural network structure search | |
| CN112633309A (en) | Efficient query black box anti-attack method based on Bayesian optimization | |
| US11010664B2 (en) | Augmenting neural networks with hierarchical external memory | |
| US11531888B2 (en) | Method, device and computer program for creating a deep neural network | |
| JP2021051589A5 (en) | ||
| CN113825978B (en) | Method and device for defining path and storage device | |
| CN111027576A (en) | Cooperative significance detection method based on cooperative significance generation type countermeasure network | |
| EP4322064A1 (en) | Method and system for jointly pruning and hardware acceleration of pre-trained deep learning models | |
| EP4125010A1 (en) | Adaptive learning based systems and methods for optimization of unsupervised clustering | |
| EP3803580B1 (en) | Efficient incident management in large scale computer systems | |
| US20230139347A1 (en) | Per-embedding-group activation quantization | |
| EP3624015A1 (en) | Learning method, learning device with multi-feeding layers and testing method, testing device using the same | |
| US20190378009A1 (en) | Method and electronic device for classifying an input | |
| US20230086727A1 (en) | Method and information processing apparatus that perform transfer learning while suppressing occurrence of catastrophic forgetting | |
| US8972307B1 (en) | Method and apparatus for machine learning | |
| US20140279734A1 (en) | Performing Cross-Validation Using Non-Randomly Selected Cases | |
| US9053434B2 (en) | Determining an obverse weight | |
| Mohan | Enhanced multiple dense layer efficientnet | |
| Niennattrakul et al. | Learning DTW global constraint for time series classification |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| 121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 16760249 Country of ref document: EP Kind code of ref document: A1 |
|
| NENP | Non-entry into the national phase |
Ref country code: DE |
|
| 122 | Ep: pct application non-entry in european phase |
Ref document number: 16760249 Country of ref document: EP Kind code of ref document: A1 |