Accelerating evolution
NeuralFit provides a Keras-like API to evolve neural networks in Python, allowing anyone to apply complex neuro-evolution algorithms.
- User-friendly API
- Export models to Keras
- Verbose errors
- Continuously updated
pip install neuralfit
import neuralfit as nf
model = nf.Model(3, 1)
model.compile('alpha', loss='mse')
model.evolve(x, y, epochs=100)
model.predict(x_test, y_test)