Local Minima Escape Using Large Dataset
I am using the ScaledConjugate training method for a feed forward neural network on a large dataset ~300MB and it seems to continously get stuck in local minima. I have added simulated annealing to the training which does help minimise but the anneal does not seem to multi thread taking comparatively much much longer. Are there any better ways to get out of local minima which take advantage of multiple cores?
Regards,
Marc




Simulated annealing is not yet multi-threaded. It is on the list, but have not gotten to it yet.
Another approach, I use somethimes, is to use a genetic algorithm, and then use scaled conj on say the top 30 of the population. Since the top members of the population are generally quite different from each other.