Uses of Class
org.deeplearning4j.nn.conf.WorkspaceMode
-
Packages that use WorkspaceMode Package Description org.deeplearning4j.nn.conf org.deeplearning4j.nn.transferlearning -
-
Uses of WorkspaceMode in org.deeplearning4j.nn.conf
Fields in org.deeplearning4j.nn.conf declared as WorkspaceMode Modifier and Type Field Description protected WorkspaceMode
ComputationGraphConfiguration. inferenceWorkspaceMode
protected WorkspaceMode
MultiLayerConfiguration.Builder. inferenceWorkspaceMode
protected WorkspaceMode
MultiLayerConfiguration. inferenceWorkspaceMode
protected WorkspaceMode
NeuralNetConfiguration.Builder. inferenceWorkspaceMode
protected WorkspaceMode
ComputationGraphConfiguration. trainingWorkspaceMode
protected WorkspaceMode
MultiLayerConfiguration.Builder. trainingWorkspaceMode
protected WorkspaceMode
MultiLayerConfiguration. trainingWorkspaceMode
protected WorkspaceMode
NeuralNetConfiguration.Builder. trainingWorkspaceMode
Methods in org.deeplearning4j.nn.conf that return WorkspaceMode Modifier and Type Method Description static WorkspaceMode
WorkspaceMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static WorkspaceMode[]
WorkspaceMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.deeplearning4j.nn.conf with parameters of type WorkspaceMode Modifier and Type Method Description MultiLayerConfiguration.Builder
MultiLayerConfiguration.Builder. inferenceWorkspaceMode(@NonNull WorkspaceMode workspaceMode)
NeuralNetConfiguration.Builder
NeuralNetConfiguration.Builder. inferenceWorkspaceMode(@NonNull WorkspaceMode workspaceMode)
This method defines Workspace mode being used during inference:
NONE: workspace won't be used
ENABLED: workspaces will be used for inference (reduced memory and better performance)MultiLayerConfiguration.Builder
MultiLayerConfiguration.Builder. trainingWorkspaceMode(@NonNull WorkspaceMode workspaceMode)
NeuralNetConfiguration.Builder
NeuralNetConfiguration.Builder. trainingWorkspaceMode(@NonNull WorkspaceMode workspaceMode)
This method defines Workspace mode being used during training:
NONE: workspace won't be used
ENABLED: workspaces will be used for training (reduced memory and better performance) -
Uses of WorkspaceMode in org.deeplearning4j.nn.transferlearning
Fields in org.deeplearning4j.nn.transferlearning declared as WorkspaceMode Modifier and Type Field Description protected WorkspaceMode
FineTuneConfiguration. inferenceWorkspaceMode
protected WorkspaceMode
FineTuneConfiguration. trainingWorkspaceMode
Methods in org.deeplearning4j.nn.transferlearning with parameters of type WorkspaceMode Modifier and Type Method Description FineTuneConfiguration.Builder
FineTuneConfiguration.Builder. inferenceWorkspaceMode(WorkspaceMode inferenceWorkspaceMode)
This method defines Workspace mode being used during inference:
NONE: workspace won't be used
ENABLED: workspaces will be used for inference (reduced memory and better performance)TransferLearning.GraphBuilder
TransferLearning.GraphBuilder. setWorkspaceMode(WorkspaceMode workspaceMode)
FineTuneConfiguration.Builder
FineTuneConfiguration.Builder. trainingWorkspaceMode(WorkspaceMode trainingWorkspaceMode)
This method defines Workspace mode being used during training: NONE: workspace won't be used ENABLED: workspaces will be used for training (reduced memory and better performance)
-