Minimization is a subclass of mathematical optimization where given a cost or objective function, the goal is to choose the best set of parameters that will minimize the value given by this function.
Questions tagged [minimization]
529 questions
-1
votes
1 answer
How to minimize this function and apply it with backpropagation algorithm
I'm curently working with backpropagation algorithm For mining data. I'm trying to apply several algorithm from related paper to my cases.
Here, I find that, one of them said that "Backpropagation algorithm is applied to update the weights(w, v) and…
-3
votes
1 answer
Minimize an objective function in Python
I'm facing an issue with the minimization of a specific objective function.
Let's consider the following scenario: We have a vector (V) with a length of 600.
Our objective is to minimize a function that involves two unknown parameters. Our aim is to…

p.golestaneh
- 1
- 1
-3
votes
1 answer
Not getting the approach in a minimization algorithm
Recently, I was trying to solve this dynamic programing problem, but somehow not getting the approach to solve it.
The editorial to the problem seems very confusing too and i would understand how to think properly to approach this problem.…

Ham
- 7
- 1
-4
votes
1 answer
I cannot get the optimal solution properly
#pip install gekko
from gekko import GEKKO
import numpy as np
import pandas as pd
lista1 = [0,1,2,3,4,3,2,1,2]
lista2 = [1,0,1,2,3,3,2,2,1]
lista3 = [2,1,0,1,2,3,3,3,2]
lista4 = [3,2,1,0,1,2,1,2,2]
lista5 = [4,3,2,1,0,1,2,3,3]
lista6 =…

ANA RODRIGUEZ
- 1
- 1