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
Hi
I think it would be a good thing to have access to the current temperature in the move function, either by passing it as a parameter or by making it a class member.
It would allow for smaller changes in the state when the temperature is small for example
The text was updated successfully, but these errors were encountered:
When looking for the minimum of a continuous function, and while doing a move at each step, I would like to be able to adjust the size of the step based on temperature. As it gets closer to the end, the size of the step should decrease.
Generally speaking, I want access to temperature, somehow, from the move function. Also, ideally, access to the min and max values of temperature. This way, I could vary the size of the gaussian jump at each step, based on temperature.
Hi! I know this is old but I'm doing this right now for my current project. You can easily make this change yourself -- just go into anneal.py and change T to self.T in the Annealer class, and then access in move() as self.T
Hi
I think it would be a good thing to have access to the current temperature in the move function, either by passing it as a parameter or by making it a class member.
It would allow for smaller changes in the state when the temperature is small for example
The text was updated successfully, but these errors were encountered: