Keras Regression to approximate function (goal: loss < 1e-7)
问题 I'm working on a neural network which approximates a function f(X)=y, with X a vector [x0, .., xn] and y in [-inf, +inf]. This approximated function needs to have an accuracy (sum of errors) around 1e-8. In fact, I need my neural network to overfit. X is composed of random points in the interval -500 and 500. Before putting these points into the input layer I normalized them between [0, 1]. I use keras as follow: dimension = 10 #example self.model = Sequential() self.model.add(Dense(128,