-
Notifications
You must be signed in to change notification settings - Fork 208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to reduce model training time #361
Comments
I suppose you meant 3000 rows with 6 or 7 columns as number of rows should be the same for inputs and outputs. You can try to remove some training samples and use them to validate the surrogate and see if it is good enough. |
KRG can predict only 1 output, so if you have multiple outputs you have to train a surrogate for each output. |
3000 points and 7 6-D model could be long. Another tip (not recommended); |
Ideally, it would be great to fix TNC which is a gradient-based optimizer to train continuous models much faster #294 ... |
...
model = KRG({})
model.set_training_values(inputsincolumns,outputsincolumns)
model.train()
...
#============
The amount of data:inputsincolumns(6 rows and 3000 columns),outputsincolumns(7 rows and 3000 columns)
and the trainning takes almost 5mins
Is there some way to increase training speed?
The text was updated successfully, but these errors were encountered: