WO2024029022A1 - Dispositif d'accélération de procédé de séparation et d'évaluation, procédé, et programme - Google Patents

Dispositif d'accélération de procédé de séparation et d'évaluation, procédé, et programme Download PDF

Info

Publication number
WO2024029022A1
WO2024029022A1 PCT/JP2022/029908 JP2022029908W WO2024029022A1 WO 2024029022 A1 WO2024029022 A1 WO 2024029022A1 JP 2022029908 W JP2022029908 W JP 2022029908W WO 2024029022 A1 WO2024029022 A1 WO 2024029022A1
Authority
WO
WIPO (PCT)
Prior art keywords
threshold
interval
solution
probability
value
Prior art date
Application number
PCT/JP2022/029908
Other languages
English (en)
Japanese (ja)
Inventor
まな美 小川
俊介 金井
正崇 佐藤
和陽 明石
麻悠 山添
Original Assignee
日本電信電話株式会社
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 日本電信電話株式会社 filed Critical 日本電信電話株式会社
Priority to PCT/JP2022/029908 priority Critical patent/WO2024029022A1/fr
Publication of WO2024029022A1 publication Critical patent/WO2024029022A1/fr

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F17/00Digital computing or data processing equipment or methods, specially adapted for specific functions
    • G06F17/10Complex mathematical operations
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06NCOMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
    • G06N99/00Subject matter not provided for in other groups of this subclass

Definitions

  • the embodiments relate to an apparatus, method, and program for speeding up the branch and bound method.
  • An optimization problem is a problem that seeks the optimal solution among the solutions that satisfy the conditions.
  • One of the optimization problems is a combinatorial optimization problem in which optimal solutions of combinations are found.
  • the number of optimal solution candidates generally increases exponentially with respect to the input. For this reason, it is difficult to enumerate all feasible solutions in a combinatorial optimization problem and find the optimal solution from among the enumerated feasible solutions.
  • the branch and bound method is one of the methods to avoid enumerating all possible solutions and find the optimal solution.
  • the branch and bound method consists of two operations: a branch operation and a limit operation.
  • a branching operation is an operation in which a problem to be solved is divided into multiple problems by case classification.
  • the limit operation reduces the amount of time required to search for an optimal solution by comparing the solution sets of each problem divided into multiple problems, and as a result of the comparison, discontinuing the search for solutions in solution sets where the optimal solution cannot exist. This is a time saving operation.
  • This kind of aborting of the search for a solution is called pruning. For example, in the case of a minimization problem, the upper and lower limits of the range of solutions within a limited solution set are determined. Then, as a result of comparing the existence ranges of two different solution sets, the solution set with the larger optimal solution cannot contain the optimal solution to the original problem, so the search for a solution in that solution set is discontinued.
  • the upper limit In a minimization problem, an appropriate solution from among the feasible solutions is used as the upper limit.
  • the lower limit can be obtained by appropriately setting and solving the relaxation problem.
  • the optimal There may be cases in which a solution may exist. In this case, the search will not be aborted and the search time for a solution will not be reduced.
  • the embodiments provide an apparatus, method, and program for speeding up the branch-and-bound method, which completes the search for an optimal solution faster than conventional branch-and-bound methods.
  • An apparatus for speeding up a branch and bound method includes a branching section, an interval determining section, a deemed threshold determining section, and a comparing section.
  • the branching unit performs a branching operation to divide the input problem into multiple problems.
  • the interval determination unit determines a first threshold value for determining a possible first interval of the solution set of each divided problem from the feasible solutions of each divided problem, and a first threshold value for determining the first interval.
  • the threshold value of 2 is determined by solving the relaxation problem of each divided problem.
  • the deemed threshold determining unit is configured such that the first threshold, the second threshold, and the optimal solution of each divided problem are narrower than the first interval, and one threshold that determines the interval is the first threshold.
  • a third threshold which is the other threshold that determines the second interval, is determined based on the probability distribution representing the probability of existing in the second interval, and the set value of the probability.
  • the comparison unit performs pruning of the solution set by comparing the first threshold value and the third threshold value for each solution set.
  • an apparatus, method, and program are provided for speeding up the branch-and-bound method, which completes the search for an optimal solution faster than the conventional branch-and-bound method.
  • FIG. 1 is a block diagram showing the configuration of an apparatus for speeding up the branch and bound method according to the embodiment.
  • FIG. 3 is a block diagram showing a hardware configuration of an example of a device for speeding up the branch and bound method according to the embodiment.
  • FIG. 4 is a flowchart showing the operation of the apparatus for speeding up the branch and bound method according to the embodiment.
  • the branch-and-bound method in the embodiment is used to quickly find an approximate solution to the original problem on the premise that the probability distribution of where the optimal solution exists in the solution set limited by the limiting operation is known.
  • the probability distributions are independent for each limiting operation.
  • the probability that the optimal solution exists in the solution set limited by the limiting operation is p(0 ⁇ p ⁇ 1 ) to know the existing interval.
  • this interval is regarded as the range in which a new optimal solution exists in the solution set limited by the limiting operation.
  • the probability that the output solution is the optimal solution is p n .
  • the probability that the difference between the output solution and the optimal solution is within a predetermined value can also be calculated from the probability distribution of where the optimal solution exists in the solution set limited by the limiting operation.
  • the solution set of each problem divided by the branching operation is expressed as S i (i ⁇ m).
  • m represents the number of problems divided by one branching operation.
  • an upper limit value (upper bound) and a lower limit value (lower bound), which are threshold values that determine the interval in which the optimal solution can exist in the solution set S i are represented by U i and L i , respectively.
  • U i an appropriate solution among the feasible solutions is used as U i , for example.
  • a feasible solution is a solution that satisfies the conditions set for the problem.
  • the feasible solution may be calculated using any search algorithm such as a greedy method or a local search method.
  • L i can be obtained, for example, by solving a relaxation problem.
  • a relaxed problem is a problem in which some of the conditions set for the problem are relaxed.
  • a probability density function that expresses where in the closed interval [L i , U i ] the optimal solution in the solution set S i exists as a probability distribution is a function f i ( x, L i , U i ).
  • f i satisfies the relationship of equation (1) below.
  • x is a variable indicating the value of a possible solution to [L i , U i ].
  • the optimal solution for the original problem is found in the solution set S k that satisfies U l ⁇ L k . is determined not to exist.
  • it is determined that the optimal solution to the original problem does not exist in the solution set S k that satisfies U l ⁇ l k by using the lower limit l i derived from p and f i .
  • l i will be referred to as a "deemed lower limit value.”
  • the deemed lower limit l i can be calculated from the lower cumulative probability calculated from equation (2). Basically, the smaller the deemed lower limit l i is, that is, the wider the interval [l i , U i ], the closer the value of probability p approaches 1.
  • the probability that the output solution will be equal to the actual optimal solution is p n . Therefore, if the probability p is set to a value close to 1, the probability that the output solution will be the actual optimal solution increases. On the other hand, the narrower the interval [l i , U i ], the higher the speed. In this way, there is a trade-off between speedup and solution accuracy.
  • the probability distribution of the interval in which the optimal solution can exist is unimodal, and the mode in the probability distribution is close to the upper limit U i , then the lower limit l i that gives the probability p close to 1 is The value becomes close to the upper limit U i . In this case, both high speed and high precision are expected.
  • the output solution The probability p out that the difference between the output and the actual optimal solution optval is equal to or less than ⁇ ( ⁇ 0) can be expressed by the following equation (3).
  • y is a variable indicating a solution that can exist in the interval [output- ⁇ , output+ ⁇ ].
  • FIG. 1 is a block diagram showing the configuration of an apparatus for speeding up the branch and bound method according to the embodiment.
  • the device 1 includes an input section 10, a branching section 20, a limiting section 30, and an output section 40.
  • the input unit 10 receives input of the original problem to be solved by the branch and bound method.
  • the original problem may be any combinatorial optimization problem.
  • the original problem may be, for example, an optimal route search problem that searches for an optimal route that minimizes travel time and the like when moving a vehicle.
  • the input unit 10 receives, for example, information on a graph representing a candidate travel route for a vehicle based on, for example, an input from a user.
  • the input unit 10 obtains the original problem from a storage unit in which information on the original problem is stored in advance.
  • the input unit 10 receives input of the probability density function f i and the parameter p.
  • the probability density function f i is a probability density function that represents as a probability distribution where the optimal solution in the solution set S i described above exists in the closed interval [L i , U i ].
  • the parameter p is a set value of the probability that the optimal solution in the solution set S i exists in the closed interval [l i , U i ], which is shown on the left side of equation (2).
  • the input unit 10 receives the probability density function f i and the parameter p from, for example, a user. Alternatively, the input unit 10 obtains the probability density function f i and the parameter p from a storage unit in which these pieces of information are stored in advance.
  • the probability density function f i is, for example, a beta distribution of the first kind expressed by the following equation (4).
  • (x-L i )/(U i -L i ) in equation (4) is a random variable in the beta distribution of equation (4), and is a random variable in the beta distribution of equation (4), using the upper limit value U i and the lower limit value L i It corresponds to the value of the variable x normalized to a range of 0 to 1.
  • the value of the random variable is determined by determining U i and L i during the limiting operation.
  • B( ⁇ , ⁇ ) in equation (4) is a beta function.
  • the beta distribution has a characteristic that the distribution shape changes greatly depending on the values of the shape parameters ⁇ and ⁇ .
  • the branch and bound method in the embodiment can speed up processing and Both high accuracy of the solution can be achieved.
  • the beta distribution is unimodal and gives a distribution in which the highest frequency is near the upper limit value U i .
  • the branching unit 20 executes a branching operation to divide the input problem into multiple problems.
  • the algorithm for the branching operation by the branching unit 20 may be set as appropriate depending on the type of problem and the like.
  • the limiting unit 30 performs a limiting operation on each of the solution sets S i of the problem divided by the branching unit 20 .
  • the limiting section 30 in the embodiment includes a section determining section 31, a deemed lower limit determining section 32, and a comparing section 33.
  • the interval determining unit 31 determines an upper limit value U i and a lower limit value L i of an interval in which each optimal solution of the solution set S i can exist. In the case of a minimization problem, an appropriate solution from among the feasible solutions is used for the upper limit U i . Further, the lower limit value L i can be obtained by solving a relaxation problem.
  • the deemed lower limit value determining unit 32 determines the deemed lower limit value l i for the solution set S i from the upper limit value U i , the lower limit value L i , the probability density function f i and the parameter p.
  • the deemed lower limit value l i can be calculated, for example, by sequentially calculating the lower cumulative probability of the interval [L i , U i ] from the probability density function fi , and the value of the calculated lower cumulative probability is the value of the parameter p. It can be determined as the value of x when there is a match.
  • the comparison unit 33 compares the existence range of solutions for pruning the solution set S i based on the upper limit value U i and the deemed lower limit value l i determined for each of the solution set S i . Then, as a result of the comparison, the comparison unit 33 prunes the solution set S i in which the optimal solution cannot exist. Specifically, the comparison unit 33 prunes the solution set S k that satisfies U l ⁇ l k .
  • the output unit 40 outputs the final solution remaining without pruning as the optimal solution. Output may be performed by any method such as displaying the output solution on a display, outputting it on a printer, or transmitting it to an external device. For example, in the case of an optimal route search problem that searches for an optimal route that minimizes travel time, etc., the output unit 40 outputs information on the optimal route combination that minimizes travel time, etc. For example, the output unit 40 displays the optimal route on a map displayed on the display.
  • FIG. 3 is a block diagram showing the hardware configuration of an example of the device 1.
  • the device 1 includes a processor 101, a ROM 102, a RAM 103, a storage 104, a display 105, an input interface 106, and a communication module 107.
  • the device 1 can be, for example, a terminal device such as a personal computer, a smartphone, or a tablet terminal.
  • the device 1 is not limited to a terminal device.
  • the device 1 may be mounted on the vehicle.
  • the processor 101 is a processor configured to control the operation of the device 1.
  • Processor 101 is, for example, a CPU.
  • the processor 101 may be an MPU or the like instead of a CPU. Further, the processor 101 may be configured as a hardware logic circuit such as an ASIC. Further, the processor 101 does not need to be configured by one CPU or the like, and may be configured by a plurality of CPUs or the like.
  • the processor 101 can operate as the input section 10, the branching section 20, the limiting section 30, and the output section 40 by executing processing according to the search program 1042 stored in the storage 104.
  • the ROM 102 is composed of, for example, a nonvolatile semiconductor memory.
  • the ROM 102 stores a startup program for the device 1 and the like.
  • the RAM 103 is composed of, for example, a volatile semiconductor memory.
  • the RAM 103 is used, for example, as a working memory in processing in the processor 101.
  • the storage 104 is a storage such as an SSD (Solid State Drive) or an HDD (Hard Disk Drive).
  • the storage 104 stores, for example, an OS (Operating System) 1041 and a search program 1042.
  • the OS 1041 is a program for realizing the basic functions of the device 1.
  • Various programs stored in the storage 104 are executed under the control of the OS 1041.
  • the search program 1042 is a program that allows the device 1 to search for an optimal solution to an input problem using a branch and bound method.
  • the search program 1042 can be downloaded to the device 1 as needed.
  • the storage 104 may further store either or both of the probability density function 1043 and the parameters 1044.
  • the probability density function 1043 and the parameter 1044 are the probability density function f i and the parameter p for calculating the deemed lower limit value l i .
  • the probability density function f i and the parameter p do not necessarily need to be stored in the storage 104.
  • the probability density function f i and the parameter p may be input, for example, by the user's operation of the input interface 106, or may be obtained, for example, by communication from a server external to the device 1.
  • the display 105 is a liquid crystal display, an organic EL display, or the like.
  • Various screens displayed under the control of the search program 1042 are displayed on the display 105.
  • This screen includes, for example, a problem, a probability density function f i , an input screen for the parameter p, and an optimal solution display screen.
  • the input interface 106 is an interface that accepts input from buttons, switches, touch panels, etc. provided in the device 1.
  • the input interface 106 converts signals from buttons, switches, touch panels, etc. so that the processor 101 can identify them.
  • the communication module 107 is a module for the device 1 to communicate with various external devices.
  • the communication module 107 may be either a wired communication module or a wireless communication module. Further, the communication method of the communication module 107 is not limited to a specific one.
  • FIG. 4 is a flowchart showing the operation of the device 1. The operations in FIG. 4 are controlled by processor 101.
  • step S1 the processor 101 receives input of a question. Furthermore, the processor 101 receives input of the probability density function f i and the parameter p. After these inputs are accepted, the process moves to step S2.
  • the input of the question may be performed, for example, by the user's operation of the input interface 106.
  • the probability density function f i and the parameter p can be input by acquiring information stored in the storage 104, for example.
  • the probability density function f i is a beta distribution of the first kind shown in equation (4).
  • the shape parameters ⁇ and ⁇ are assumed to be 6 and 1.1, respectively.
  • the parameter p is assumed to be 0.95.
  • processor 101 performs a branching operation.
  • the processor 101 divides the original problem into multiple problems by case classification.
  • the possible combinations of routes between the starting point and the ending point can be a problem.
  • the solution to the problem is divided into five solution sets S 1 , S 2 , S 3 , S 4 , and S 5 by a branching operation.
  • the input problem is an optimal route search problem that minimizes the cost such as travel time required for moving the route
  • the values of the solution sets S 1 , S 2 , S 3 , S 4 , and S 5 are the cost can be the value of
  • step S3 the processor 101 determines an upper limit value U i and a lower limit value L i .
  • the upper limit value U i is determined to be an appropriate value from among the feasible solutions.
  • the lower limit value L i is determined by solving a relaxation problem corresponding to each solution set S i .
  • step S4 the processor 101 determines a deemed lower limit value l i for each solution set S i from the upper limit value U i , the lower limit value L i , the probability density function f i and the parameter p.
  • Each optimal solution of the solution set S i may exist with probability p in the interval defined by the upper limit value U i and the assumed lower limit value l i . Further, the deemed lower limit value l i is always larger than the lower limit value L i .
  • step S5 the processor 101 determines whether there is S k such that U l ⁇ l k .
  • the subscripts l and k are both elements of i. If it is determined that S k such that U l ⁇ l k exists, the process moves to step S6. If it is determined that there is no S k satisfying U l ⁇ l k , the process moves to step S7. In the example, U 1 ⁇ l 2 , U 1 ⁇ l 3 , U 1 ⁇ l 4 , U 1 ⁇ l 5 . Therefore, S k satisfying U l ⁇ l k is determined to be S 2 , S 3 , S 4 , and S 5 .
  • step S6 the processor 101 prunes the solution set S k . That is, the processor 101 terminates the search for the optimal solution for the solution set S k . In the example, processor 101 prunes solution sets S 2 , S 3 , S 4 , and S 5 . After that, the process moves to step S7.
  • step S7 the processor 101 determines whether to end the search. If the predetermined search termination conditions are met, such as one solution set remaining without pruning and the optimal solution in that solution set being a feasible solution, it is determined that the search is to be terminated. Ru. In step S7, if it is determined that the search is not to end, the process returns to step S2. In this case, the branching and limiting operations are performed again on the solution set S i that remains unpruned. If it is determined in step S7 to end the search, the process moves to step S8.
  • the predetermined search termination conditions such as one solution set remaining without pruning and the optimal solution in that solution set being a feasible solution.
  • step S8 the processor 101 outputs the searched solution as an output solution.
  • the processor 101 displays a route corresponding to the output solution on the display 105, for example.
  • the lower limit of the interval in which the optimal solution can exist with probability p is used instead of the lower limit determined by solving the relaxation problem.
  • the existence range of the optimal solution is compared using a certain assumed lower limit value. Since the deemed lower limit value is larger than the lower limit value, the possibility that the number of times of pruning will increase is increased by comparing the existence range of the optimal solution based on the deemed lower limit value. By increasing the number of pruning operations, it is expected that the search for the optimal solution will become faster. Also, excessive learning for branching and limiting operations is not required.
  • the existence range of the optimal solution is compared based on the deemed lower limit value. Therefore, there is a possibility that the output solution will not be the optimal solution. Since the probability density distribution of where the optimal solution exists in the interval [l i , U i ] is known, the probability that the difference y between the output solution and the actual optimal solution is less than or equal to ⁇ ( ⁇ 0) can also be determined. can be calculated.
  • the deemed lower limit value l i is calculated based on the probability density function fi . This is because the problem is assumed to be a minimization problem. If a maximization problem is assumed as the problem, the upper limit value is determined by the relaxation problem. Therefore, in the case of a maximization problem, the deemed upper limit u i is calculated based on the probability density function f i .
  • the deemed upper limit value u i is determined by, for example, sequentially calculating the upper cumulative probability of the interval [L i , U i ] from the probability density function f i , and when the value of the calculated upper cumulative probability matches the value of the parameter p. can be determined as the value of x at Then, in the comparison in step S5, it is determined whether or not S k such that L l >u k exists, and a solution set S k that satisfies this condition is pruned.
  • a beta distribution of the first kind is used as the probability density function fi .
  • the beta distribution of the first kind does not necessarily have to be used as the probability density function fi .
  • the probability density function f i may be any function that can express where in the interval [L i , U i ] the optimal solution exists as a probability distribution.
  • each process according to the embodiment described above can also be stored as a program that can be executed by the processor 101, which is a computer.
  • it can be stored and distributed in a storage medium of an external storage device such as a magnetic disk, an optical disk, or a semiconductor memory.
  • the processor 101 reads a program stored in the storage medium of this external storage device, and its operations are controlled by the read program, thereby being able to execute the above-described processes.
  • the present invention is not limited to the above-described embodiments, and can be variously modified at the implementation stage without departing from the gist thereof.
  • each embodiment may be implemented in combination as appropriate, and in that case, the combined effect can be obtained.
  • the embodiments described above include various inventions, and various inventions can be extracted by combinations selected from the plurality of constituent features disclosed. For example, if a problem can be solved and an effect can be obtained even if some constituent features are deleted from all the constituent features shown in the embodiment, the configuration from which these constituent features are deleted can be extracted as an invention.

Landscapes

  • Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • Theoretical Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Mathematical Physics (AREA)
  • Data Mining & Analysis (AREA)
  • General Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Algebra (AREA)
  • Computational Mathematics (AREA)
  • Computing Systems (AREA)
  • Mathematical Analysis (AREA)
  • Mathematical Optimization (AREA)
  • Pure & Applied Mathematics (AREA)
  • Databases & Information Systems (AREA)
  • Management, Administration, Business Operations System, And Electronic Commerce (AREA)

Abstract

L'invention concerne un dispositif d'accélération d'un procédé de séparation et d'évaluation, comprenant une unité de séparation, une unité de détermination d'intervalle, une unité de détermination de seuil présumé et une unité de comparaison. L'unité de séparation effectue une opération de séparation qui divise un problème d'entrée en une pluralité de problèmes. L'unité de détermination d'intervalle détermine un premier seuil qui définit un premier intervalle où peut exister un ensemble de solutions pour chaque problème divisé sur la base de solutions faisables de chaque problème divisé, et détermine un deuxième seuil qui définit le premier intervalle en résolvant un problème de relaxation de chaque problème divisé. L'unité de détermination de seuil présumé utilise le premier seuil, le deuxième seuil, une distribution de probabilité représentant une probabilité qu'une solution optimale pour chaque problème divisé existe dans un deuxième intervalle plus étroit que le premier intervalle et avec un seuil définissant le deuxième intervalle en tant que premier seuil, et une valeur de probabilité définie pour déterminer un troisième seuil en tant qu'autre seuil définissant le deuxième intervalle. L'unité de comparaison exécute un élagage des ensembles de solutions par comparaison du premier seuil avec le troisième seuil pour chaque ensemble de solutions.
PCT/JP2022/029908 2022-08-04 2022-08-04 Dispositif d'accélération de procédé de séparation et d'évaluation, procédé, et programme WO2024029022A1 (fr)

Priority Applications (1)

Application Number Priority Date Filing Date Title
PCT/JP2022/029908 WO2024029022A1 (fr) 2022-08-04 2022-08-04 Dispositif d'accélération de procédé de séparation et d'évaluation, procédé, et programme

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
PCT/JP2022/029908 WO2024029022A1 (fr) 2022-08-04 2022-08-04 Dispositif d'accélération de procédé de séparation et d'évaluation, procédé, et programme

Publications (1)

Publication Number Publication Date
WO2024029022A1 true WO2024029022A1 (fr) 2024-02-08

Family

ID=89848701

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/JP2022/029908 WO2024029022A1 (fr) 2022-08-04 2022-08-04 Dispositif d'accélération de procédé de séparation et d'évaluation, procédé, et programme

Country Status (1)

Country Link
WO (1) WO2024029022A1 (fr)

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2012176925A1 (fr) * 2011-06-20 2012-12-27 日本電気株式会社 Dispositif et procédé de gestion de configuration, et programme de gestion de configuration de stockage de support d'enregistrement de programme

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2012176925A1 (fr) * 2011-06-20 2012-12-27 日本電気株式会社 Dispositif et procédé de gestion de configuration, et programme de gestion de configuration de stockage de support d'enregistrement de programme

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
YAMAGUCHI, TAKURO ET AL.: "(Efficient enumeration of genetic interactions using the lower bound of p-value by Fisher's exact probability test", IPSJ SIG TECHNICAL REPORT, vol. 2015-MPS-103, no. 56, 16 June 2015 (2015-06-16), JP , pages 1 - 2, XP009552783, ISSN: 2188-8833 *

Similar Documents

Publication Publication Date Title
KR102107378B1 (ko) 하이퍼파라미터 자동 최적화 방법 및 그 장치
JP6402265B2 (ja) 意思決定モデルを構築する方法、コンピュータデバイス及び記憶デバイス
US20190279088A1 (en) Training method, apparatus, chip, and system for neural network model
CN107301170B (zh) 基于人工智能的切分语句的方法和装置
Tan et al. Efficient search of the best warping window for dynamic time warping
US20190042956A1 (en) Automatic configurable sequence similarity inference system
US10909451B2 (en) Apparatus and method for learning a model corresponding to time-series input data
US10915534B2 (en) Extreme value computation
CN109886311B (zh) 增量聚类方法、装置、电子设备和计算机可读介质
US11410073B1 (en) Systems and methods for robust feature selection
US11126695B2 (en) Polymer design device, polymer design method, and non-transitory recording medium
US20150120254A1 (en) Model estimation device and model estimation method
Sadiq et al. NvPD: novel parallel edit distance algorithm, correctness, and performance evaluation
US20200227134A1 (en) Drug Efficacy Prediction for Treatment of Genetic Disease
WO2024029022A1 (fr) Dispositif d'accélération de procédé de séparation et d'évaluation, procédé, et programme
CN112131199A (zh) 一种日志处理方法、装置、设备及介质
US20230237076A1 (en) Automatically drawing infographics for statistical data based on a data model
US11797562B2 (en) Search control method and search control apparatus
US11295229B1 (en) Scalable generation of multidimensional features for machine learning
JP6172315B2 (ja) 混合モデル選択の方法及び装置
CN112561569B (zh) 基于双模型的到店预测方法、系统、电子设备及存储介质
US20210365831A1 (en) Identifying claim complexity by integrating supervised and unsupervised learning
Liu et al. Speeding up joint mutual information feature selection with an optimization heuristic
US20190137283A1 (en) Updating missing attributes in navigational map data via polyline geometry matching
US20200104406A1 (en) Construction of reference database accurately representing complete set of data items for faster and tractable classification usage

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: 22954011

Country of ref document: EP

Kind code of ref document: A1