WO2024029022A1 - Device for accelerating branch-and-bound method, method, and program - Google Patents

Device for accelerating branch-and-bound method, method, and program 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
French (fr)
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/en
Publication of WO2024029022A1 publication Critical patent/WO2024029022A1/en

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.

Abstract

This device for accelerating a branch-and-bound method comprises a branching unit, an interval determination unit, a presumed threshold determination unit, and a comparison unit. The branching unit performs a branching operation that divides an input problem into a plurality of problems. The interval determination unit determines a first threshold that defines a first interval where a solution set for each divided problem may exist on the basis of feasible solutions of each divided problem, and determines a second threshold that defines the first interval by solving a relaxation problem of each divided problem. The presumed threshold determination unit uses the first threshold, the second threshold, a probability distribution representing a probability that an optimal solution for each divided problem exists in a second interval narrower than the first interval and with one threshold defining the second interval as the first threshold, and a set probability value to determine a third threshold as the other threshold defining the second interval. The comparison unit executes pruning of the solution sets by comparing the first threshold with the third threshold for each solution set.

Description

分枝限定法の高速化のための装置、方法及びプログラムApparatus, method and program for speeding up the branch and bound method
 実施形態は、分枝限定法の高速化のための装置、方法及びプログラムに関する。 The embodiments relate to an apparatus, method, and program for speeding up the branch and bound method.
 最適化問題とは、条件を満たす解の中で最適な解を求める問題である。最適化問題の1つとして、組み合わせの最適解を求める組み合わせ最適化問題がある。組み合わせ最適化問題では、一般的に最適解の候補の数は入力に対して指数的に増加する。このため、組み合わせ最適化問題において全ての実行可能解を列挙し、その列挙した実行可能解の中から最適解を見つけ出すことは困難である。 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. In a combinatorial optimization problem, 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.
 実行可能解の全列挙を回避して最適解を発見する手法の1つとして、分枝限定法がある。分枝限定法は、分枝操作と限定操作の2つの操作からなる。分枝操作は、解くべき問題を場合分けによって複数の問題に分割する操作である。限定操作は、複数の問題に分割されたそれぞれの問題の解集合を比較し、比較の結果、最適解が存在し得ない解集合における解の探索を打ち切ってしまうことで最適解の探索に要する時間を減らす操作である。このような解の探索の打ち切りは、枝刈りと呼ばれている。例えば、最小化問題の場合、限定された解集合内の解の存在範囲における上限値と下限値がそれぞれ決定される。そして、2つの異なる解集合の存在範囲の比較の結果、最適解がより大きい解集合は元問題の最適解が存在し得ないため、その解集合における解の探索が打ち切られる。 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.
 最小化問題において、上限値としては実行可能解の中から適当な解が用いられる。一方で、下限値は緩和問題を適切に設定し解くことで得られる。ここで、ある解集合における解の存在範囲の上限値と下限値の差が大きい、すなわち解の存在範囲が広い解集合については、異なる解集合との比較の結果、どちらの解集合にも最適解が存在し得る場合があり得る。この場合、探索の打ち切りが発生せずに解の探索時間の減少につながらない。 In a minimization problem, an appropriate solution from among the feasible solutions is used as the upper limit. On the other hand, the lower limit can be obtained by appropriately setting and solving the relaxation problem. Here, for a solution set where the difference between the upper and lower limits of the range of solutions in a certain solution set is large, that is, the range of solutions that exist is wide, as a result of comparison with different solution sets, it is determined that 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.
 一態様に係る分枝限定法の高速化のための装置は、分枝部と、区間決定部と、みなし閾値決定部と、比較部とを備える。分枝部は、入力された問題を複数の問題に分割する分枝操作を実施する。区間決定部は、分割されたそれぞれの問題の解集合の存在し得る第1の区間を決める第1の閾値を分割されたそれぞれの問題の実行可能解から決定し、第1の区間を決める第2の閾値を分割されたそれぞれの問題の緩和問題を解くことによって決定する。みなし閾値決定部は、第1の閾値と、第2の閾値と、分割されたそれぞれの問題の最適解が、第1の区間よりも狭く、かつ、区間を決める一方の閾値が第1の閾値である第2の区間に存在する確率を表す確率分布と、確率の設定値とに基づいて、第2の区間を決めるもう一方の閾値である第3の閾値を決定する。比較部は、それぞれの解集合についての第1の閾値と第3の閾値との比較により、解集合の枝刈りを実施する。 An apparatus for speeding up a branch and bound method according to one embodiment 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.
 実施形態によれば、従来の分枝限定法よりも高速に最適解の探索が完了する分枝限定法の高速化のための装置、方法及びプログラムが提供される。 According to the embodiment, 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.
図1は、実施形態に係る分枝限定法の高速化のための装置の構成を示すブロック図である。FIG. 1 is a block diagram showing the configuration of an apparatus for speeding up the branch and bound method according to the embodiment. 図2は、α=6、β=1.1、U=2.5、L=1.5とされたときの式(4)の確率密度分布を表すグラフである。FIG. 2 is a graph showing the probability density distribution of equation (4) when α=6, β=1.1, U i =2.5, and L i =1.5. 図3は、実施形態に係る分枝限定法の高速化のための装置の一例のハードウェア構成を示すブロック図である。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. 図4は、実施形態に係る分枝限定法の高速化のための装置の動作を示すフローチャートである。FIG. 4 is a flowchart showing the operation of the apparatus for speeding up the branch and bound method according to the embodiment.
 以下、実施形態について図面を参照して説明する。まず、実施形態における分枝限定法について説明する。実施形態における分枝限定法は、限定操作によって限定された解集合のどこに最適解が存在するかの確率分布が既知である前提において、元問題の近似解を高速に求めるものである。ここで、それぞれの限定操作について、確率分布は独立である。 Hereinafter, embodiments will be described with reference to the drawings. First, the branch and bound method in the embodiment will be explained. 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. Here, the probability distributions are independent for each limiting operation.
 限定操作によって限定された解集合のどこに最適解が存在するかの確率分布が既知であるとき、この確率分布から、限定操作によって限定された解集合において最適解が確率p(0<p<1)で存在する区間が分かる。実施形態では、この区間が限定操作で限定された解集合における新しい最適解の存在範囲とみなされる。このとき、新しい最適解の存在範囲は限定された解集合における元の最適解の存在範囲よりも狭いので、解の探索の打ち切り回数が多くなることが期待される。解の探索の打ち切り回数が多くなれば、元問題における最適解の探索が早期に終了することが期待される。 When the probability distribution of where the optimal solution exists in the solution set limited by the limiting operation is known, from this probability distribution, 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. In the embodiment, this interval is regarded as the range in which a new optimal solution exists in the solution set limited by the limiting operation. At this time, since the range of existence of the new optimal solution is narrower than the range of existence of the original optimal solution in the limited solution set, it is expected that the number of times the solution search will be aborted will increase. If the number of times the search for a solution is aborted increases, it is expected that the search for the optimal solution to the original problem will end sooner.
 ここで、分枝限定法によって元問題の解が出力されるまでにn回の限定操作が必要であった場合、出力解が最適解である確率はpである。また、出力された解と最適解との差が所定値以内である確率も、限定操作によって限定された解集合のどこに最適解が存在するかの確率分布から計算され得る。 Here, if n limiting operations are required until a solution to the original problem is output by the branch and bound method, the probability that the output solution is the optimal solution is p n . Furthermore, 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.
 実施形態の分枝限定法についてさらに説明する。以下では、最小化問題についての適用例が説明される。まず、分枝操作によって分割されたそれぞれの問題の解集合がS(i≦m)と表される。ここで、mは、1回の分枝操作によって分割された問題の数を表す。また、解集合Sにおける最適解の存在し得る区間を決める閾値である上限値(上界)及び下限値(下界)がそれぞれU及びLと表される。ここで、最小化問題の場合、Uとしては、例えば実行可能解のうちの適当な解が用いられる。実行可能解は、問題に設定された条件を満たす解のことである。実行可能解は、貪欲法、局所探索法等の任意の探索アルゴリズムで計算されてよい。一方、Lは例えば緩和問題を解くことで得られる。緩和問題は、問題に設定された条件の一部が緩和された問題である。さらに、解集合Sにおける最適解が閉区間[L,U]のどこに存在するかを確率分布として表す確率密度関数が、U,Lによって定義される関数f(x,L,U)で表される。ただし、fは、以下の式(1)の関係を満たす。ここでxは、[L,U]に存在し得る解の値を示す変数である。
Figure JPOXMLDOC01-appb-M000001
The branch and bound method of the embodiment will be further explained. In the following, an application example for a minimization problem will be explained. First, the solution set of each problem divided by the branching operation is expressed as S i (i≦m). Here, m represents the number of problems divided by one branching operation. Further, 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. Here, in the case of a minimization problem, 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. On the other hand, 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. Furthermore, 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 ). However, f i satisfies the relationship of equation (1) below. Here, x is a variable indicating the value of a possible solution to [L i , U i ].
Figure JPOXMLDOC01-appb-M000001
 それぞれのSに対してfが既知であるならば、最適解が確率p(0<p<1)で存在する閉区間[l,U]が求められ得る。ただし、p、lは以下の式(2)の関係を満たす。
Figure JPOXMLDOC01-appb-M000002
If f i is known for each S i , a closed interval [l i , U i ] in which the optimal solution exists with probability p (0<p<1) can be found. However, p and l i satisfy the following equation (2).
Figure JPOXMLDOC01-appb-M000002
 異なる解集合S、S(k及びlはともにiの要素)に対し、従来の分枝限定法では、U<Lを満たす解集合Sの中には、元問題における最適解は存在しないと判断される。一方、実施形態ではp、fに由来する下限値lが用いられてU<lを満たす解集合Sの中には、元問題における最適解は存在しないと判断される。L<lであるので、区間[L,U]で限定操作が実施されるより、区間[l,U]で限定操作が実施されるほうが、最適解の探索の打ち切りが発生する可能性が高まる。したがって、元問題における最適解の探索が高速に終了することが期待される。以降、lを「みなし下限値」と呼ぶ。みなし下限値lは、式(2)から計算される下側累積確率から計算され得る。基本的には、みなし下限値lが小さいほど、すなわち区間[l,U]が広いほど、確率pの値は1に近づく。そして、それぞれの限定操作における確率pが一定値である場合、解の出力までにn回の限定操作が発生したならば、出力解が実際の最適解と等しくなる確率はpである。よって、確率pが1に近い値に設定されれば、出力解が実際の最適解になる確率が高くなる。一方で、区間[l,U]が狭いほど、高速化が実現される。このように、高速化と解の精度とはトレードオフの関係にある。 For different solution sets S k and S l (k and l are both elements of i), in the conventional branch and bound method, 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. On the other hand, in the embodiment, 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 . Since L i <l i , it is easier to abort the search for the optimal solution if the limiting operation is performed in the interval [l i , U i ] than if the limiting operation is performed in the interval [L i , U i ]. The possibility of this occurring increases. Therefore, it is expected that the search for the optimal solution to the original problem will be completed quickly. Hereinafter, 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. If the probability p in each limiting operation is a constant value, and if n limiting operations occur until a solution is output, 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.
 仮に最適解の存在し得る区間の確率分布に単峰性があり、また、確率分布における最頻値が上限値Uの近くにあれば、1に近い確率pを与えるみなし下限値lの値が上限値Uの近くになる。この場合、高速化と高精度化の両方が期待される。 If 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.
 ここで、実行可能解の全体Sについての最適解の上限値、下限値、分布関数がそれぞれU、L,f(x,L,U)で表されるとすると、出力解outputと実際の最適解optvalとの差がΔ(Δ≧0)以下となる確率poutは、以下の式(3)で表され得る。ここで、yは、区間[output-Δ,output+Δ]に存在し得る解を示す変数である。 
Figure JPOXMLDOC01-appb-M000003
Here, if the upper limit value, lower limit value, and distribution function of the optimal solution for the total S of feasible solutions are represented by U 0 , L 0 , and f 0 (x, L 0 , U 0 ), respectively, then 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). Here, y is a variable indicating a solution that can exist in the interval [output-Δ, output+Δ].
Figure JPOXMLDOC01-appb-M000003
 以下、実施形態に係る分枝限定法の高速化のための装置について説明する。図1は、実施形態に係る分枝限定法の高速化のための装置の構成を示すブロック図である。装置1は、入力部10と、分枝部20と、限定部30と、出力部40とを有する。 Hereinafter, a device for speeding up the branch and bound method according to the embodiment will be described. 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.
 入力部10は、分枝限定法によって解くべき元問題の入力を受け付ける。元問題は、任意の組み合わせ最適化問題であってよい。元問題は、例えば車両の移動の際の移動時間等が最小化される最適な経路を探索する最適経路探索問題であり得る。最適経路探索問題である場合、入力部10は、例えば車両の移動経路の候補を表すグラフの情報を例えばユーザからの入力に基づいて受け付ける。または、入力部10は、元問題を元問題の情報が予め記憶された記憶部から取得する。 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. In the case of an optimal route search problem, 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. Alternatively, the input unit 10 obtains the original problem from a storage unit in which information on the original problem is stored in advance.
 また、実施形態において入力部10は、確率密度関数fと、パラメータpの入力を受け付ける。確率密度関数fは、前述した解集合Sにおける最適解が閉区間[L,U]のどこに存在するかを確率分布として表す確率密度関数である。パラメータpは、式(2)の左辺で示される、解集合Sにおける最適解が閉区間[l,U]に存在する確率の設定値である。入力部10は、確率密度関数fと、パラメータpを例えばユーザから受け付ける。または、入力部10は、確率密度関数fとパラメータpをこれらの情報が予め記憶された記憶部から取得する。 Further, in the embodiment, 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.
 実施形態では、確率密度関数fは、例えば以下の式(4)で示す第1種ベータ分布である。 
Figure JPOXMLDOC01-appb-M000004
ここで、式(4)の(x-L)/(U-L)は、式(4)のベータ分布における確率変数であって、上限値U及び下限値Lを用いて0から1の範囲に正規化された変数xの値に対応している。確率変数の値は、限定操作の際にU及びLが決められることによって決まる。また、式(4)のB(α,β)は、ベータ関数である。
In the embodiment, the probability density function f i is, for example, a beta distribution of the first kind expressed by the following equation (4).
Figure JPOXMLDOC01-appb-M000004
Here, (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. Further, B(α, β) in equation (4) is a beta function.
 ここで、ベータ分布は、形状母数α、βの値によって分布形状を大きく変える特徴を有している。前述したように、実施形態における分枝限定法では、単峰性があり、最頻度が上限値Uの近くにあるような分布を与える確率密度関数fのときに、処理の高速化と解の高精度化の両立が図られる。一般的には、α>1、β>1かつ、α>βのときにベータ分布は、単峰性があり、最頻度が上限値Uの近くにあるような分布を与える。図2は、α=6、β=1.1、U=2.5、L=1.5とされたときの式(4)の確率密度分布を表すグラフである。 Here, the beta distribution has a characteristic that the distribution shape changes greatly depending on the values of the shape parameters α and β. As mentioned above, the branch and bound method in the embodiment can speed up processing and Both high accuracy of the solution can be achieved. Generally, when α>1, β>1, and α>β, the beta distribution is unimodal and gives a distribution in which the highest frequency is near the upper limit value U i . FIG. 2 is a graph showing the probability density distribution of equation (4) when α=6, β=1.1, U i =2.5, and L i =1.5.
 分枝部20は、入力された問題を複数の問題に分割する分枝操作を実行する。分枝部20による分枝操作のアルゴリズムは、問題の種類等に応じて適宜に設定されてよい。 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.
 限定部30は、分枝部20によって分割された問題の解集合Sのそれぞれに対して限定操作を実施する。実施形態における限定部30は、区間決定部31と、みなし下限値決定部32と、比較部33とを有している。 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.
 区間決定部31は、解集合Sのそれぞれの最適解の存在し得る区間の上限値Uと下限値Lを決定する。最小化問題の場合、上限値Uには、実行可能解の中から適当な解が用いられる。また、下限値Lは、緩和問題を解くことで得られる。 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.
 みなし下限値決定部32は、上限値U、下限値L、確率密度関数f及びパラメータpから解集合Sについてのみなし下限値lを決定する。みなし下限値lは、例えば、確率密度関数fから区間[L,U]の下側累積確率を順次に計算していき、計算した下側累積確率の値がパラメータpの値と一致したときのxの値として決定され得る。 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.
 比較部33は、解集合Sのそれぞれについて決定された上限値U及びみなし下限値lに基づき、解集合Sの枝刈りのための解の存在範囲の比較をする。そして、比較部33は、比較の結果、最適解が存在し得ない解集合Sを枝刈りする。具体的には、比較部33は、U<lを満たす解集合Sを枝刈りする。 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 .
 出力部40は、枝刈りされずに残った最終的な解を最適解として出力する。出力は、出力解をディスプレイに表示する、プリンタで出力する、外部の機器に送信するといった任意の手法で行われてよい。例えば、移動時間等が最小化される最適な経路を探索する最適経路探索問題の場合、出力部40は、移動時間等を最小化する最適な経路の組み合わせの情報を出力する。例えば、出力部40は、ディスプレイに表示された地図上に最適な経路を表示する。 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.
 図3は、装置1の一例のハードウェア構成を示すブロック図である。図3に示すように、装置1は、プロセッサ101と、ROM102と、RAM103と、ストレージ104と、ディスプレイ105と、入力インターフェース106と、通信モジュール107とを有している。装置1は、例えばパーソナルコンピュータ、スマートフォン、タブレット端末といった端末装置であり得る。しかしながら、装置1は、端末装置に限らない。例えば、車両の移動経路の探索に用いられる場合、装置1は、車両に搭載されてもよい。 FIG. 3 is a block diagram showing the hardware configuration of an example of the device 1. As shown in FIG. 3, 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. However, the device 1 is not limited to a terminal device. For example, when used to search for a travel route for a vehicle, the device 1 may be mounted on the vehicle.
 プロセッサ101は、装置1の動作を制御するように構成されたプロセッサである。プロセッサ101は、例えばCPUである。プロセッサ101は、CPUではなくMPU等であってもよい。また、プロセッサ101は、ASIC等のハードウェアロジック回路として構成されていてもよい。また、プロセッサ101は、1つのCPU等によって構成されている必要はなく、複数のCPU等によって構成されてもよい。プロセッサ101は、ストレージ104に記憶された探索プログラム1042に従って処理を実行することにより、入力部10と、分枝部20と、限定部30と、出力部40として動作し得る。 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.
 ROM102は、例えば不揮発性の半導体メモリによって構成される。ROM102は、装置1の起動プログラム等を記憶している。RAM103は、例えば揮発性の半導体メモリによって構成される。RAM103は、例えばプロセッサ101における処理における作業メモリとして用いられる。 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.
 ストレージ104は、SSD(Solid State Drive)、HDD(Hard Disk Drive)といったストレージである。ストレージ104は、例えばOS(Operating system)1041及び探索プログラム1042を記憶している。OS1041は、装置1の基本的な機能を実現するためのプログラムである。ストレージ104に格納されている各種のプログラムは、OS1041の制御下で実行される。探索プログラム1042は、入力された問題の最適解を分枝限定法によって探索する処理を装置1において行うためのプログラムである。探索プログラム1042は、必要に応じて装置1にダウンロードされ得る。また、ストレージ104は、確率密度関数1043及びパラメータ1044の何れか又は両方をさらに記憶していてもよい。確率密度関数1043及びパラメータ1044は、みなし下限値lを計算するための、確率密度関数f及びパラメータpである。確率密度関数f及びパラメータpは、必ずしもストレージ104に記憶されている必要はない。確率密度関数f及びパラメータpは、例えばユーザの入力インターフェース106の操作によって入力されるものであってもよいし、例えば装置1の外部のサーバから通信によって取得されるものであってもよい。 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. Furthermore, 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.
 ディスプレイ105は、液晶ディスプレイ、有機ELディスプレイ等である。ディスプレイ105には、探索プログラム1042の制御下で表示される各種の画面が表示される。この画面は、例えば、問題、確率密度関数f、パラメータpの入力画面、最適解の表示画面といったものを含む。 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.
 入力インターフェース106は、装置1に備えられたボタン、スイッチ、タッチパネル等からの入力を受け付けるインターフェースである。入力インターフェース106は、ボタン、スイッチ、タッチパネル等からの信号をプロセッサ101が識別できるように変換する。 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.
 通信モジュール107は、装置1が各種の外部機器と通信するためのモジュールである。通信モジュール107は、有線通信モジュールと無線通信モジュールの何れであってもよい。また、通信モジュール107の通信方式は、特定のものに限定されるものではない。 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.
 次に、装置1の動作を説明する。図4は、装置1の動作を示すフローチャートである。図4の動作は、プロセッサ101によって制御される。 Next, the operation of the device 1 will be explained. FIG. 4 is a flowchart showing the operation of the device 1. The operations in FIG. 4 are controlled by processor 101.
 ステップS1において、プロセッサ101は、問題の入力を受け付ける。また、プロセッサ101は、確率密度関数f及びパラメータpの入力を受け付ける。これらの入力が受け付けられた後、処理はステップS2に移行する。問題の入力は、例えばユーザの入力インターフェース106の操作によって行われ得る。また、確率密度関数f及びパラメータpの入力は、例えばストレージ104に記憶されている情報を取得することによって行われ得る。ここで、以下の説明のために、確率密度関数fは、式(4)で示した第1種ベータ分布であるとされる。また、形状母数α、βは、それぞれ、6、1.1であるとされる。また、パラメータpは0.95であるとされる。 In 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. Further, the probability density function f i and the parameter p can be input by acquiring information stored in the storage 104, for example. Here, for the following explanation, it is assumed that the probability density function f i is a beta distribution of the first kind shown in equation (4). Further, the shape parameters α and β are assumed to be 6 and 1.1, respectively. Further, the parameter p is assumed to be 0.95.
 ステップS2において、プロセッサ101は、分枝操作を実施する。例えば、プロセッサ101は、場合分けによって元問題を複数の問題に分割する。例えば、最適経路探索問題であれば、始点と終点との間で想定され得る経路の組み合わせが問題となり得る。以下、説明のために、分枝操作によって問題の解が5つの解集合S、S、S、S、Sに分割されたとする。例えば、入力された問題が経路の移動にかかる移動時間等のコストを最小化する最適経路探索問題であれば、解集合S、S、S、S、Sの値は、コストの値であり得る。 In step S2, processor 101 performs a branching operation. For example, the processor 101 divides the original problem into multiple problems by case classification. For example, in the case of an optimal route search problem, the possible combinations of routes between the starting point and the ending point can be a problem. For the sake of explanation, it is assumed below that 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. For example, if 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
 ステップS3において、プロセッサ101は、上限値U及び下限値Lを決定する。前述したように、上限値Uは、実行可能解の中から適当なものに決定される。一方、下限値Lは、それぞれの解集合Sに対応した緩和問題を解くことで決定される。以下では、例えばU=2.5、L=1.5、U=3.1、L=1.9、U=4.5、L=0.7、U=3.5、L=2.1、U=4、L=1と決定されたとする。緩和問題の解は、元問題よりも条件が緩和された問題の解であるので、解集合Sのそれぞれの最適解は、必ず上限値Uと下限値Lとによって規定される区間の中に存在し得る。 In step S3, the processor 101 determines an upper limit value U i and a lower limit value L i . As described above, the upper limit value U i is determined to be an appropriate value from among the feasible solutions. On the other hand, the lower limit value L i is determined by solving a relaxation problem corresponding to each solution set S i . In the following, for example, U 1 =2.5, L 1 =1.5, U 2 =3.1, L 2 =1.9, U 3 =4.5, L 3 =0.7, U 4 =3. .5, L 4 =2.1, U 5 =4, and L 5 =1. Since the solution to the relaxed problem is a solution to the problem whose conditions are more relaxed than the original problem, each optimal solution of the solution set S i is necessarily within the interval defined by the upper limit value U i and the lower limit value L i . can exist inside.
 ステップS4において、プロセッサ101は、上限値U、下限値L、確率密度関数f及びパラメータpからそれぞれの解集合Sについてのみなし下限値lを決定する。前述したように、みなし下限値lは、例えば、確率密度関数fから区間[L,U]の下側累積確率を順次に計算していき、計算した下側累積確率の値がパラメータpの値と一致したときのxの値として決定され得る。以下では、例えばl=2.09、l=2.6、l=2.94、l=2.87、l=2.77と決定されたとする。解集合Sのそれぞれの最適解は、上限値Uとみなし下限値lとによって規定される区間の中に確率pで存在し得る。また、みなし下限値lは、必ず下限値Lよりも大きい。 In 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. As mentioned above, the deemed lower limit l i is determined by sequentially calculating the lower cumulative probabilities of the interval [L i , U i ] from the probability density function fi , and It can be determined as the value of x when it matches the value of parameter p. In the following, it is assumed that l 1 =2.09, l 2 =2.6, l 3 =2.94, l 4 =2.87, and l 5 =2.77, for example. 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 .
 ステップS5において、プロセッサ101は、U<lとなるSが存在するか否かを判定する。ここで、添え字l,kはともにiの要素である。U<lとなるSが存在すると判定された場合、処理はステップS6に移行する。U<lとなるSが存在しないと判定された場合、処理はステップS7に移行する。例では、U<l、U<l、U<l、U<lである。したがって、U<lとなるSが、S、S、S、Sであると判定される。ここで、従来の分枝限定法では、U<LとなるSが存在するか否かが判定される。この場合、U>L、U>L、U>L、U>Lとなってしまう。他の組み合わせも同様であり、結果として枝刈りされる解集合がなくなってしまう。この場合、再度の分岐操作が必要になる。 In step S5, the processor 101 determines whether there is S k such that U l <l k . Here, 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 . Here, in the conventional branch and bound method, it is determined whether or not S k such that U l <L k exists. In this case, U 1 >L 2 , U 1 >L 3 , U 1 >L 4 , and U 1 >L 5 . The same goes for other combinations, and as a result, there is no solution set to be pruned. In this case, another branch operation is required.
 ステップS6において、プロセッサ101は、解集合Sを枝刈りする。すなわち、プロセッサ101は、解集合Sについての最適解の探索を打ち切る。例では、プロセッサ101は、解集合S、S、S、Sを枝刈りする。その後、処理はステップS7に移行する。 In 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.
 ステップS7において、プロセッサ101は、探索を終了するか否かを判定する。枝刈りされずに残った解集合が1つであり、かつ、その解集合における最適解が実行可能解であるといった、予め定められた探索の終了条件を満たす場合には探索を終了すると判定される。ステップS7において、探索を終了すると判定されていない場合には、処理はステップS2に戻る。この場合、枝刈りされずに残った解集合Sについて再度の分枝操作及び限定操作が実施される。ステップS7において、探索を終了すると判定された場合には、処理はステップS8に移行する。 In 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.
 ステップS8において、プロセッサ101は、探索された解を出力解として出力する。その後、図4の処理は終了する。例えば、最適経路探索問題であれば、プロセッサ101は、出力解に対応した経路を例えばディスプレイ105に表示する。 In step S8, the processor 101 outputs the searched solution as an output solution. After that, the process in FIG. 4 ends. For example, in the case of an optimal route search problem, the processor 101 displays a route corresponding to the output solution on the display 105, for example.
 以上説明したように本実施形態によれば、分枝限定法の限定操作において、緩和問題を解くことによって決定された下限値の代わりに、最適解が確率pで存在し得る区間の下限値であるみなし下限値を用いて最適解の存在範囲の比較が行われる。みなし下限値は下限値よりも大きいので、みなし下限値に基づく最適解の存在範囲の比較により枝刈りの回数が多くなる可能性が高まる。枝刈りの回数が多くなることにより、最適解の探索の高速化が期待される。また、分枝操作及び限定操作のための過度な学習も不要である。 As explained above, according to this embodiment, in the limiting operation of the branch and bound method, instead of the lower limit determined by solving the relaxation problem, the lower limit of the interval in which the optimal solution can exist with probability p is used. 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.
 ここで、実施形態ではみなし下限値に基づいて最適解の存在範囲の比較が行われる。したがって、出力解が最適解にならない可能性もあり得る。最適解が区間[l,U]のどこに存在するかの確率密度分布が既知であることにより、出力解と実際の最適解との差yがΔ(Δ≧0)以下となる確率も計算され得る。 Here, in the embodiment, 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.
 [変形例]
 以下、実施形態の変形例を説明する。前述した例では、確率密度関数fに基づいてみなし下限値lが計算される。これは、問題として最小化問題が想定されているためである。問題として最大化問題が想定されている場合、緩和問題によって決定されるのは上限値になる。したがって、最大化問題の場合には、確率密度関数fに基づいてみなし上限値uが計算される。みなし上限値uは、例えば、確率密度関数fから区間[L,U]の上側累積確率を順次に計算していき、計算した上側累積確率の値がパラメータpの値と一致したときのxの値として決定され得る。そして、ステップS5の比較においては、L>uとなるSが存在するか否かが判定され、このような条件を満たす解集合Sが枝刈りされる。
[Modified example]
Modifications of the embodiment will be described below. In the example described above, 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.
 また、実施形態では、確率密度関数fとして第1種ベータ分布が用いられている。しかしながら、確率密度関数fとして必ずしも第1種ベータ分布が用いられる必要はない。確率密度関数fは、区間[L,U]のどこに最適解が存在するかを確率分布として表すことができる任意の関数であってよい。 Further, in the embodiment, a beta distribution of the first kind is used as the probability density function fi . However, 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.
 また、上述した実施形態による各処理は、コンピュータであるプロセッサ101に実行させることができるプログラムとして記憶させておくこともできる。この他、磁気ディスク、光ディスク、半導体メモリ等の外部記憶装置の記憶媒体に格納して配布することができる。そして、プロセッサ101は、この外部記憶装置の記憶媒体に記憶されたプログラムを読み込み、この読み込んだプログラムによって動作が制御されることにより、上述した処理を実行することができる。 Further, 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. In addition, 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.
 なお、本発明は、上記実施形態に限定されるものではなく、実施段階ではその要旨を逸脱しない範囲で種々に変形することが可能である。また、各実施形態は適宜組み合わせて実施してもよく、その場合組み合わせた効果が得られる。更に、上記実施形態には種々の発明が含まれており、開示される複数の構成要件から選択された組み合わせにより種々の発明が抽出され得る。例えば、実施形態に示される全構成要件からいくつかの構成要件が削除されても、課題が解決でき、効果が得られる場合には、この構成要件が削除された構成が発明として抽出され得る。 Note that 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. Moreover, each embodiment may be implemented in combination as appropriate, and in that case, the combined effect can be obtained. Furthermore, 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.
 1…装置
 10…入力部
 20…分枝部
 30…限定部
 31…区間決定部
 32…みなし下限値決定部
 33…比較部
 40…出力部
 101…プロセッサ
 102…ROM
 103…RAM
 104…ストレージ
 105…ディスプレイ
 106…入力インターフェース
 107…通信モジュール
 1041…OS
 1042…探索プログラム
 1043…確率密度関数
 1044…パラメータ
1... Device 10... Input section 20... Branching section 30... Limiting section 31... Section determining section 32... Deemed lower limit determining section 33... Comparing section 40... Output section 101... Processor 102... ROM
103...RAM
104...Storage 105...Display 106...Input interface 107...Communication module 1041...OS
1042... Search program 1043... Probability density function 1044... Parameter

Claims (4)

  1.  入力された問題を複数の問題に分割する分枝操作を実施する分枝部と、
     分割されたそれぞれの問題の解集合の存在し得る第1の区間を決める一方の閾値である第1の閾値を分割されたそれぞれの問題の実行可能解から決定し、前記第1の区間を決めるもう一方の閾値である第2の閾値を分割されたそれぞれの問題の緩和問題を解くことによって決定する区間決定部と、
     前記第1の閾値と、前記第2の閾値と、分割されたそれぞれの問題の最適解が、前記第1の区間よりも狭く、かつ、区間を決める一方の閾値が前記第1の閾値である第2の区間に存在する確率を表す確率分布と、前記確率の設定値とに基づいて、前記第2の区間を決めるもう一方の閾値である第3の閾値を決定するみなし閾値決定部と、
     それぞれの解集合についての前記第1の閾値と前記第3の閾値との比較により、解集合の枝刈りを実施する比較部と、
     を具備する分枝限定法の高速化のための装置。
    a branching unit that performs a branching operation to divide the input problem into multiple problems;
    A first threshold, which is one threshold value that determines a possible first interval of the solution set of each divided problem, is determined from the feasible solutions of each divided problem, and the first interval is determined. an interval determining unit that determines a second threshold, which is the other threshold, by solving a relaxation problem for each divided problem;
    The first threshold value, the second threshold value, 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 value. a deemed threshold determining unit that determines a third threshold, which is the other threshold that determines the second interval, based on a probability distribution representing the probability of existing in the second interval and the set value of the probability;
    a comparison unit that performs pruning of the solution set by comparing the first threshold value and the third threshold value for each solution set;
    A device for speeding up the branch and bound method, comprising:
  2.  前記問題は、最小化問題であり、
     前記第1の閾値は、前記第1の区間及び前記第2の区間における上限値であり、
     前記第2の閾値は、前記第1の区間における下限値であり、
     前記第3の閾値は、前記第2の閾値よりも大きい、前記第2の区間における下限値である、
     請求項1に記載の分枝限定法の高速化のための装置。
    The problem is a minimization problem,
    The first threshold is an upper limit value in the first section and the second section,
    The second threshold is a lower limit value in the first section,
    The third threshold is a lower limit value in the second section that is larger than the second threshold;
    An apparatus for speeding up the branch and bound method according to claim 1.
  3.  入力された問題を複数の問題に分割する分枝操作を実施することと、
     分割されたそれぞれの問題の解集合の存在し得る第1の区間を決める一方の閾値である第1の閾値を分割されたそれぞれの問題の実行可能解から決定し、前記第1の区間を決めるもう一方の閾値である第2の閾値を分割されたそれぞれの問題の緩和問題を解くことによって決定することと、
     前記第1の閾値と、前記第2の閾値と、分割されたそれぞれの問題の最適解が、前記第1の区間よりも狭く、かつ、区間を決める一方の閾値が前記第1の閾値である第2の区間に存在する確率を表す確率分布と、前記確率の設定値とに基づいて、前記第2の区間を決めるもう一方の閾値である第3の閾値を決定することと、
     それぞれの解集合についての前記第1の閾値と前記第3の閾値との比較により、解集合の枝刈りを実施することと、
     を具備する分枝限定法の高速化のための方法。
    Performing a branching operation to divide the input problem into multiple problems;
    A first threshold, which is one threshold value that determines a possible first interval of the solution set of each divided problem, is determined from the feasible solutions of each divided problem, and the first interval is determined. determining a second threshold, which is the other threshold, by solving a relaxation problem for each of the divided problems;
    The first threshold value, the second threshold value, 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 value. Determining a third threshold, which is the other threshold that determines the second interval, based on a probability distribution representing the probability of existing in the second interval and the set value of the probability;
    pruning the solution set by comparing the first threshold and the third threshold for each solution set;
    A method for speeding up branch-and-bound methods.
  4.  入力された問題を複数の問題に分割する分枝操作を実施することと、
     分割されたそれぞれの問題の解集合の存在し得る第1の区間を決める一方の閾値である第1の閾値を分割されたそれぞれの問題の実行可能解から決定し、前記第1の区間を決めるもう一方の閾値である第2の閾値を分割されたそれぞれの問題の緩和問題を解くことによって決定することと、
     前記第1の閾値と、前記第2の閾値と、分割されたそれぞれの問題の最適解が、前記第1の区間よりも狭く、かつ、区間を決める一方の閾値が前記第1の閾値である第2の区間に存在する確率を表す確率分布と、前記確率の設定値とに基づいて、前記第2の区間を決めるもう一方の閾値である第3の閾値を決定することと、
     それぞれの解集合についての前記第1の閾値と前記第3の閾値との比較により、解集合の枝刈りを実施することと、
     をコンピュータに実行させるための分枝限定法の高速化のためのプログラム。
    Performing a branching operation to divide the input problem into multiple problems;
    A first threshold, which is one threshold value that determines a possible first interval of the solution set of each divided problem, is determined from the feasible solutions of each divided problem, and the first interval is determined. determining a second threshold, which is the other threshold, by solving a relaxation problem for each of the divided problems;
    The first threshold value, the second threshold value, 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 value. Determining a third threshold, which is the other threshold that determines the second interval, based on a probability distribution representing the probability of existing in the second interval and the set value of the probability;
    pruning the solution set by comparing the first threshold and the third threshold for each solution set;
    A program for accelerating the branch and bound method on a computer.
PCT/JP2022/029908 2022-08-04 2022-08-04 Device for accelerating branch-and-bound method, method, and program WO2024029022A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
PCT/JP2022/029908 WO2024029022A1 (en) 2022-08-04 2022-08-04 Device for accelerating branch-and-bound method, method, and program

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
PCT/JP2022/029908 WO2024029022A1 (en) 2022-08-04 2022-08-04 Device for accelerating branch-and-bound method, method, and program

Publications (1)

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

Family

ID=89848701

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/JP2022/029908 WO2024029022A1 (en) 2022-08-04 2022-08-04 Device for accelerating branch-and-bound method, method, and program

Country Status (1)

Country Link
WO (1) WO2024029022A1 (en)

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2012176925A1 (en) * 2011-06-20 2012-12-27 日本電気株式会社 Configuration management device, configuration management method, and program-recording medium storing configuration management program

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2012176925A1 (en) * 2011-06-20 2012-12-27 日本電気株式会社 Configuration management device, configuration management method, and program-recording medium storing configuration management program

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 (en) Method For optimizing hyper-parameter automatically and Apparatus thereof
JP6402265B2 (en) Method, computer device and storage device for building a decision model
US20190279088A1 (en) Training method, apparatus, chip, and system for neural network model
CN107301170B (en) Method and device for segmenting sentences based on artificial intelligence
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 (en) Incremental clustering method and device, electronic equipment and computer readable medium
US20210110409A1 (en) False detection rate control with null-hypothesis
US20200227134A1 (en) Drug Efficacy Prediction for Treatment of Genetic Disease
US11126695B2 (en) Polymer design device, polymer design method, and non-transitory recording medium
US11410073B1 (en) Systems and methods for robust feature selection
US20150120254A1 (en) Model estimation device and model estimation method
CN109978017B (en) Hard sample sampling method and system
Sadiq et al. NvPD: novel parallel edit distance algorithm, correctness, and performance evaluation
WO2024029022A1 (en) Device for accelerating branch-and-bound method, method, and program
CN110728359B (en) Method, device, equipment and storage medium for searching model structure
US10460276B2 (en) Predictive model search by communicating comparative strength
CN112131199A (en) Log processing method, device, equipment and medium
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 (en) Method and apparatus for mixed model selection
CN112561569B (en) Dual-model-based store arrival prediction method, system, electronic equipment and storage medium

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