neuralfit

How to save and load a NeuralFit model or weights?

How to save and load a NeuralFit model or weights? Question: I have evolved a neural network to learn y=x^2 using the neuralfit library, but I would like to save the model to do predictions later. I currently have: import neuralfit import numpy as np # y(x) = x^2 x = np.arange(10).reshape(-1,1) y = x**2 …

Total answers: 1

How to find number of parameters of a neuralfit model?

How to find number of parameters of a neuralfit model? Question: I am using the neuralfit library to evolve a neural network, but I can’t figure out the total number of hyperparameters of the model. I already monitor the size of the neural network, which should give the bias parameters, but it does not include …

Total answers: 1

How to disable status after each epoch in NeuralFit?

How to disable status after each epoch in NeuralFit? Question: I use the neuralfit package to evolve a neural network, but am not sure how I can avoid printing completely. I would simply like to plot the history after training. I currently have: import neuralfit import numpy as np x = np.asarray([[0],[1]]) y = np.asarray([[1],[0]]) …

Total answers: 1