Package | Description |
---|---|
org.deeplearning4j.nn.conf | |
org.deeplearning4j.nn.transferlearning |
Modifier and Type | Field and Description |
---|---|
protected WorkspaceMode |
MultiLayerConfiguration.inferenceWorkspaceMode |
protected WorkspaceMode |
MultiLayerConfiguration.Builder.inferenceWorkspaceMode |
protected WorkspaceMode |
NeuralNetConfiguration.Builder.inferenceWorkspaceMode |
protected WorkspaceMode |
ComputationGraphConfiguration.inferenceWorkspaceMode |
protected WorkspaceMode |
MultiLayerConfiguration.trainingWorkspaceMode |
protected WorkspaceMode |
MultiLayerConfiguration.Builder.trainingWorkspaceMode |
protected WorkspaceMode |
NeuralNetConfiguration.Builder.trainingWorkspaceMode |
protected WorkspaceMode |
ComputationGraphConfiguration.trainingWorkspaceMode |
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
MultiLayerConfiguration.Builder |
MultiLayerConfiguration.Builder.inferenceWorkspaceMode(WorkspaceMode workspaceMode)
|
NeuralNetConfiguration.Builder |
NeuralNetConfiguration.Builder.inferenceWorkspaceMode(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(WorkspaceMode workspaceMode)
|
NeuralNetConfiguration.Builder |
NeuralNetConfiguration.Builder.trainingWorkspaceMode(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) |
Modifier and Type | Field and Description |
---|---|
protected WorkspaceMode |
FineTuneConfiguration.inferenceWorkspaceMode |
protected WorkspaceMode |
FineTuneConfiguration.trainingWorkspaceMode |
Modifier and Type | Method and 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)
|
Copyright © 2018. All rights reserved.