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 WorkspaceModeComputationGraphConfiguration. inferenceWorkspaceModeprotected WorkspaceModeMultiLayerConfiguration.Builder. inferenceWorkspaceModeprotected WorkspaceModeMultiLayerConfiguration. inferenceWorkspaceModeprotected WorkspaceModeNeuralNetConfiguration.Builder. inferenceWorkspaceModeprotected WorkspaceModeComputationGraphConfiguration. trainingWorkspaceModeprotected WorkspaceModeMultiLayerConfiguration.Builder. trainingWorkspaceModeprotected WorkspaceModeMultiLayerConfiguration. trainingWorkspaceModeprotected WorkspaceModeNeuralNetConfiguration.Builder. trainingWorkspaceModeMethods in org.deeplearning4j.nn.conf that return WorkspaceMode Modifier and Type Method Description static WorkspaceModeWorkspaceMode. 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.BuilderMultiLayerConfiguration.Builder. inferenceWorkspaceMode(@NonNull WorkspaceMode workspaceMode)NeuralNetConfiguration.BuilderNeuralNetConfiguration.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.BuilderMultiLayerConfiguration.Builder. trainingWorkspaceMode(@NonNull WorkspaceMode workspaceMode)NeuralNetConfiguration.BuilderNeuralNetConfiguration.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 WorkspaceModeFineTuneConfiguration. inferenceWorkspaceModeprotected WorkspaceModeFineTuneConfiguration. trainingWorkspaceModeMethods in org.deeplearning4j.nn.transferlearning with parameters of type WorkspaceMode Modifier and Type Method Description FineTuneConfiguration.BuilderFineTuneConfiguration.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.GraphBuilderTransferLearning.GraphBuilder. setWorkspaceMode(WorkspaceMode workspaceMode)FineTuneConfiguration.BuilderFineTuneConfiguration.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)
-