All Projects → ewimberley → jGeneticNeuralNet

ewimberley / jGeneticNeuralNet

Licence: LGPL-3.0 license
A Java library that trains neural networks with a genetic algorithm.

Programming Languages

java
68154 projects - #9 most used programming language
TeX
3793 projects

Projects that are alternatives of or similar to jGeneticNeuralNet

Smile
Statistical Machine Intelligence & Learning Engine
Stars: ✭ 5,412 (+33725%)
Mutual labels:  genetic-algorithm, regression
Tensorflow cookbook
Code for Tensorflow Machine Learning Cookbook
Stars: ✭ 5,984 (+37300%)
Mutual labels:  genetic-algorithm, regression
Mlkit
A simple machine learning framework written in Swift 🤖
Stars: ✭ 144 (+800%)
Mutual labels:  genetic-algorithm, regression
R-stats-machine-learning
Misc Statistics and Machine Learning codes in R
Stars: ✭ 33 (+106.25%)
Mutual labels:  regression
LinearRegression.jl
Linear Regression for Julia
Stars: ✭ 12 (-25%)
Mutual labels:  regression
reggie
Stata-like Regression Functionality for R
Stars: ✭ 24 (+50%)
Mutual labels:  regression
darkgreybox
DarkGreyBox: An open-source data-driven python building thermal model inspired by Genetic Algorithms and Machine Learning
Stars: ✭ 25 (+56.25%)
Mutual labels:  genetic-algorithm
Smart-Rockets
This project is a fun little demo of a genetic algorithm. A population of rockets attempt to find their way to a a target.
Stars: ✭ 15 (-6.25%)
Mutual labels:  genetic-algorithm
ML-Track
This repository is a recommended track, designed to get started with Machine Learning.
Stars: ✭ 19 (+18.75%)
Mutual labels:  regression
econtools
Econometrics and data manipulation functions.
Stars: ✭ 96 (+500%)
Mutual labels:  regression
snake-neural-network
An experiment with neural network and genetic algorithms
Stars: ✭ 68 (+325%)
Mutual labels:  genetic-algorithm
bin-packing-core
基于人工智能(遗传算法 + 贪心 max-rect 算法) 的矩形拼接算法
Stars: ✭ 26 (+62.5%)
Mutual labels:  genetic-algorithm
Genetic-Algorithm-for-Job-Shop-Scheduling-and-NSGA-II
Learning how to implement GA and NSGA-II for job shop scheduling problem in python
Stars: ✭ 178 (+1012.5%)
Mutual labels:  genetic-algorithm
MLweb
Machine learning and scientific computing (linear algebra, statistics, optimization) javascript libraries, with an online lab.
Stars: ✭ 85 (+431.25%)
Mutual labels:  regression
LIBSVM.jl
LIBSVM bindings for Julia
Stars: ✭ 74 (+362.5%)
Mutual labels:  regression
broomExtra
Helpers for regression analyses using `{broom}` & `{easystats}` packages 📈 🔍
Stars: ✭ 45 (+181.25%)
Mutual labels:  regression
neuro-evolution
A project on improving Neural Networks performance by using Genetic Algorithms.
Stars: ✭ 25 (+56.25%)
Mutual labels:  genetic-algorithm
pycobra
python library implementing ensemble methods for regression, classification and visualisation tools including Voronoi tesselations.
Stars: ✭ 111 (+593.75%)
Mutual labels:  regression
Super-Meta-MarIO
Mario AI Ensemble
Stars: ✭ 15 (-6.25%)
Mutual labels:  genetic-algorithm
snakeneuralnetworkjs
Neuroevolution of Neural Network for snakes in the Browser
Stars: ✭ 13 (-18.75%)
Mutual labels:  genetic-algorithm

jGeneticNeuralNet

A Java library that implements neural networks with a genetic training algorithm.

Classification Usage

String dataFile = "src/test/resources/iris.data";
DataLoader dl = new DataLoader();
dl.loadCSVFile(dataFile);
NeuralNetworkTrainingConfiguration config = new NeuralNetworkTrainingConfiguration();
config.setNumNetworksPerGeneration(3000);
config.setNumGenerations(500);
config.setNumHiddenLayers(3);
config.setNumNeuronsPerLayer(8);
config.setMaxLearningRate(10.0);
config.setVisualizer(vis);
GenticNeuralNetwork<String> model = ClassificationGenticNeuralNetwork.train(dl.getData(),  dl.getClassLabels(), config);
Expected Iris-setosa, predicted Iris-setosa with probability 0.9960185747628352
Expected Iris-setosa, predicted Iris-setosa with probability 0.9960185582287887
...
Expected Iris-versicolor, predicted Iris-virginica with probability 0.9955454129025534
Expected Iris-versicolor, predicted Iris-versicolor with probability 0.9894226988148483
expected/predicted	Iris-versicolor	Iris-virginica	Iris-setosa	
Iris-versicolor		9	1	0	
Iris-virginica		0	10	0	
Iris-setosa		0	0	11	
Accuracy: 0.967741935483871

Regression Usage

NeuralNetworkTrainingConfiguration config = new NeuralNetworkTrainingConfiguration();
config.setNumNetworksPerGeneration(1000);
config.setNumGenerations(500);
config.setNumHiddenLayers(2);
config.setNumNeuronsPerLayer(6);
config.setMaxLearningRate(1.0);
config.setVisualizer(vis);
config.setProbMutateActivationFunction(0.1);
RegressionGenticNeuralNetwork bestNetwork = RegressionGenticNeuralNetwork.train(data, values, config);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].