Python Forum
Need an alternative to brute force optimization loop
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Need an alternative to brute force optimization loop
#1
Hello,
I have a function with 3 intricated loops to get the best parameters from about 16000000 combinations. This takes a lot of time.
I am looking for an alternative.
Here is the function.

            for a in range(700, 800, 1):
                a = a / 100
                for c in range(100, 200, 1):
                    #c = c / 10.0
                    for seed in range(min_seed, max_seed + 1):
                        #seed = seed/20.0
                        generated_sequence = generate_sequence(a, c, best_m, seed, len(adjusted_values))
                        cubed_difference = calculate_mean_squared_error(generated_sequence, adjusted_values)

                        if cubed_difference < min_cubed_difference:
                            min_cubed_difference = cubed_difference
                            best_a = a
                            best_c = c
                            best_seed = seed
buran write Nov-30-2023, 07:57 AM:
Please, use proper tags when post code, traceback, output, etc. This time I have added tags for you.
See BBcode help for more info.
Reply
#2
You can try to perform all calculations, either using vectorisation (numpy/pandas) or multiprocessing and only then finding best/min_cube_difference
RockBlok likes this post
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply
#3
The biggest performance bump will come from doing less. Not knowing what generate_sequence or calculate_mean_squared_error do I cannot offer any definitive suggestions on how this could be done. Essentially you are looking for the roots of a function. Sometimes this can be done analytically. No looping is always the fastest solution. If your function is linear, you could use something like Newton-Raphson to find the roots. If there are several roots you may have to repeat this process multiple times for different regions of the problem space.

A better algorithm can make your code millions of times faster, but if that isn't possible you can make the code thousands of times faster by not doing it in Python. As buran mentions, you can use numpy to do the calculations in C. If your equations are not amenable to numpy vectorization, you can write a C library that does the calculations and returns a result. This can be called from Python, or maybe just forget about Python and do everything in C.
RockBlok likes this post
Reply
#4
Why so cagey?

Tell us what the functions and variables are!

As the guys said, np is faster than Python.

Quote:It is sometimes said that Python, compared to low-level languages such as C++, improves development time at the expense of runtime.

For this example, from realpython.com, numpy is nearly 100 times faster:

import numpy as np
from timeit import timeit

def profit(prices):
    max_px = 0
    min_px = prices[0]
    for px in prices[1:]:
        min_px = min(min_px, px)
        max_px = max(px - min_px, max_px)
    return max_px

def profit_with_numpy(prices):
    """Price minus cumulative minimum price, element-wise."""
    prices = np.asarray(prices)
    return np.max(prices - cummin(prices))

cummin = np.minimum.accumulate
# compare speeds
seq = np.random.randint(0, 100, size=100000)
setup = ('from __main__ import profit_with_numpy, profit, seq;' ' import numpy as np')
num = 250
pytime = timeit('profit(seq)', setup=setup, number=num)
nptime = timeit('profit_with_numpy(seq)', setup=setup, number=num)
print('Speed difference: {:0.1f}x'.format(pytime / nptime))
Output:
Speed difference: 93.5x
Reply
#5
I've heard using integers is faster than float numbers if you are doing millions and millions of calculations. Maybe you could find some way to use integers instead of floats? Ie.. shift the float input the number of sig figs you require, do your calculations as ints, then shift it back when complete?
Reply
#6
(Dec-07-2023, 12:28 PM)RockBlok Wrote: I've heard using integers is faster than float numbers if you are doing millions and millions of calculations. Maybe you could find some way to use integers instead of floats? Ie.. shift the float input the number of sig figs you require, do your calculations as ints, then shift it back when complete?
What are the detailed steps? Many people are waiting for results so they can use it
Link Removed
Gribouillis write Jun-05-2024, 05:21 AM:
Clickbait link removed. Please read What to NOT include in a post
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Brute Forcing Anagrams Anorak 12 1,737 Jan-10-2025, 04:07 PM
Last Post: Anorak
  Solving an equation by brute force within a range alexfrol86 3 4,096 Aug-09-2022, 09:44 AM
Last Post: Gribouillis
  force a program to exit ? Armandito 3 4,685 May-12-2022, 04:03 PM
Last Post: Gribouillis
  How to use scipy.optimization.brute for multivariable function Shiladitya 9 8,676 Oct-28-2020, 10:40 PM
Last Post: scidam
  best way to force an exception Skaperen 2 2,773 Oct-21-2020, 05:59 AM
Last Post: Gribouillis
  I need advise with developing a brute forcing script fatjuicypython 11 8,180 Aug-21-2020, 09:20 PM
Last Post: Marbelous
  Force calculation result as decimal vercetty92 4 3,736 Mar-20-2019, 02:27 PM
Last Post: vercetty92
  Password Brute Force 2skywalkers 9 7,182 Oct-18-2018, 02:35 PM
Last Post: buran
  Brute Force Password Guesser 2skywalkers 1 3,861 Oct-05-2018, 08:04 PM
Last Post: ichabod801
  Brute Force Pad Lock Guesser RedSkeleton007 4 5,245 Mar-03-2018, 07:42 AM
Last Post: RedSkeleton007

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020