Tagged Questions

9
votes
4answers
2k views

Artificial Inteligence library in python

I was wondering if there are any python AI libraries similar to aima-python but for a more recent version of python... and how they are in comparison to aima-python. I was particularly interested in ...
3
votes
3answers
841 views

SciPy global minimum curve fit

I'm using scipy.optimize.curve_fit, but I suspect it is converging to a local minimum and not the global minimum. I tried using simulated annealing in the following way: def fit(params): return ...
0
votes
2answers
280 views

Trouble with copying dictionaries and using deepcopy on an SQLAlchemy ORM object

I'm doing a Simulated Annealing algorithm to optimise a given allocation of students and projects. This is language-agnostic pseudocode from Wikipedia: s ← s0; e ← E(s) ...