Gather properties of machine learning model from GPU
gathers all properties of the input regression or classification model
gatheredMdl
= gather(mdl
)mdl
and returns the gathered model gatheredMdl
.
All properties of the output model are stored in the local workspace.
Use gather
to create a machine learning model with properties
stored in the local workspace from a model fitted using data stored as a GPU array. For more
details on GPU arrays, see gpuArray
(Parallel Computing Toolbox).
[gatheredMdl1,gatheredMdl2,...,gatheredMdln] = gather(mdl1,mdl2,...,mdln)
gathers the properties of multiple models mdl1,mdl2,...,mdln
and returns
the corresponding gathered models
gatheredMdl1,gatheredMdl2,...,gatheredMdln
. The number of input
arguments and output arguments must match.
ClassificationKNN
| CompactGeneralizedLinearModel
| CompactLinearModel
| GeneralizedLinearModel
| LinearModel
| gather
(Parallel Computing Toolbox) | gpuArray
(Parallel Computing Toolbox)