You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are currently just choosing a bunch of random values and whichever values give the lowest "error" is returned.
We can improve in a number of ways:
We can do some sort of gradient descent to find better values. We still need to do random sampling as well in case there are local minima, but from there we can do gradient descent.
We should also redefine "error". Currently it's defined as as the sum of abs(profit) for each block. It's possible we are running in to overflows for the larger sets.
The text was updated successfully, but these errors were encountered:
We are currently just choosing a bunch of random values and whichever values give the lowest "error" is returned.
We can improve in a number of ways:
We should also redefine "error". Currently it's defined as as the sum of
abs(profit)
for each block. It's possible we are running in to overflows for the larger sets.The text was updated successfully, but these errors were encountered: