MATLAB: GA-Neural Network Hybridization

annDeep Learning ToolboxgaGlobal Optimization Toolboxoptimization

How GA can be hybridized with Neural network (with reference to Matlab).

Best Answer

I don't see how they can be combined to an advantage.
Just write the I/O relationship for the net in terms of input, weights and output: y = f(W,x). Then use the Global Optimization toolox to minimize the mean square error MSE = mean(e(:).^2) where e is the training error, e = (t-y) and t is the training goal.
Hope this helps.
Greg