├── GWO ├── main.m ├── mape_calc.m ├── testset.mat ├── trainset.mat └── weight_mat.mat ├── ICA ├── AssimilateColonies.m ├── DoRevolution.m ├── ICA.m ├── InterEmpireCompetition.m ├── IntraEmpireCompetition.m ├── RouletteWheelSelection.m ├── UpdateTotalCost.m ├── mape_calc.m ├── testset.mat ├── trainset.mat └── weight_mat.mat ├── NN ├── data.mat ├── leaky_grad.m ├── leaky_relu.m ├── main.m ├── predict.m ├── relu.m ├── relu_grad.m └── rsme.m ├── PSO ├── main.m ├── mape_calc.m ├── testset.mat ├── trainset.mat └── weight_mat.mat ├── README.md └── dataset_pre.m /GWO/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/GWO/main.m -------------------------------------------------------------------------------- /GWO/mape_calc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/GWO/mape_calc.m -------------------------------------------------------------------------------- /GWO/testset.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/GWO/testset.mat -------------------------------------------------------------------------------- /GWO/trainset.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/GWO/trainset.mat -------------------------------------------------------------------------------- /GWO/weight_mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/GWO/weight_mat.mat -------------------------------------------------------------------------------- /ICA/AssimilateColonies.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/ICA/AssimilateColonies.m -------------------------------------------------------------------------------- /ICA/DoRevolution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/ICA/DoRevolution.m -------------------------------------------------------------------------------- /ICA/ICA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/ICA/ICA.m -------------------------------------------------------------------------------- /ICA/InterEmpireCompetition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/ICA/InterEmpireCompetition.m -------------------------------------------------------------------------------- /ICA/IntraEmpireCompetition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/ICA/IntraEmpireCompetition.m -------------------------------------------------------------------------------- /ICA/RouletteWheelSelection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/ICA/RouletteWheelSelection.m -------------------------------------------------------------------------------- /ICA/UpdateTotalCost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/ICA/UpdateTotalCost.m -------------------------------------------------------------------------------- /ICA/mape_calc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/ICA/mape_calc.m -------------------------------------------------------------------------------- /ICA/testset.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/ICA/testset.mat -------------------------------------------------------------------------------- /ICA/trainset.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/ICA/trainset.mat -------------------------------------------------------------------------------- /ICA/weight_mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/ICA/weight_mat.mat -------------------------------------------------------------------------------- /NN/data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/NN/data.mat -------------------------------------------------------------------------------- /NN/leaky_grad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/NN/leaky_grad.m -------------------------------------------------------------------------------- /NN/leaky_relu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/NN/leaky_relu.m -------------------------------------------------------------------------------- /NN/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/NN/main.m -------------------------------------------------------------------------------- /NN/predict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/NN/predict.m -------------------------------------------------------------------------------- /NN/relu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/NN/relu.m -------------------------------------------------------------------------------- /NN/relu_grad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/NN/relu_grad.m -------------------------------------------------------------------------------- /NN/rsme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/NN/rsme.m -------------------------------------------------------------------------------- /PSO/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/PSO/main.m -------------------------------------------------------------------------------- /PSO/mape_calc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/PSO/mape_calc.m -------------------------------------------------------------------------------- /PSO/testset.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/PSO/testset.mat -------------------------------------------------------------------------------- /PSO/trainset.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/PSO/trainset.mat -------------------------------------------------------------------------------- /PSO/weight_mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/PSO/weight_mat.mat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/README.md -------------------------------------------------------------------------------- /dataset_pre.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammad-AJP/Neural-Network-weight-improvement-using-optimization-algorithms/HEAD/dataset_pre.m --------------------------------------------------------------------------------