Modifier and Type | Field and Description |
---|---|
protected Distribution |
NeuralNetConfiguration.Builder.dist |
Modifier and Type | Method and Description |
---|---|
NeuralNetConfiguration.Builder |
NeuralNetConfiguration.Builder.dist(Distribution dist)
Distribution to sample initial weights from.
|
Modifier and Type | Class and Description |
---|---|
class |
BinomialDistribution
A binomial distribution.
|
class |
GaussianDistribution
A normal distribution.
|
class |
NormalDistribution
A normal distribution.
|
class |
UniformDistribution
A uniform distribution.
|
Modifier and Type | Method and Description |
---|---|
Distribution |
Distribution.clone() |
Modifier and Type | Method and Description |
---|---|
static org.nd4j.linalg.api.rng.distribution.Distribution |
Distributions.createDistribution(Distribution dist) |
Modifier and Type | Class and Description |
---|---|
class |
LegacyDistributionHelper
A dummy helper "distribution" for deserializing distributions in legacy/different JSON format.
|
Modifier and Type | Method and Description |
---|---|
Distribution |
LegacyDistributionDeserializer.deserialize(org.nd4j.shade.jackson.core.JsonParser jp,
org.nd4j.shade.jackson.databind.DeserializationContext deserializationContext) |
Modifier and Type | Field and Description |
---|---|
protected Distribution |
BaseLayer.dist |
protected Distribution |
BaseLayer.Builder.dist |
Modifier and Type | Method and Description |
---|---|
ConvolutionLayer.Builder |
ConvolutionLayer.Builder.dist(Distribution dist)
Distribution to sample initial weights from.
|
T |
BaseLayer.Builder.dist(Distribution dist)
Distribution to sample initial weights from.
|
static void |
LayerValidation.generalValidation(String layerName,
Layer layer,
boolean useRegularization,
boolean useDropConnect,
double dropOut,
double l2,
double l2Bias,
double l1,
double l1Bias,
Distribution dist) |
static void |
LayerValidation.generalValidation(String layerName,
Layer layer,
boolean useRegularization,
boolean useDropConnect,
Double dropOut,
Double l2,
Double l2Bias,
Double l1,
Double l1Bias,
Distribution dist) |
Modifier and Type | Field and Description |
---|---|
protected Distribution |
FineTuneConfiguration.dist |
Modifier and Type | Method and Description |
---|---|
TransferLearning.Builder |
TransferLearning.Builder.nOutReplace(int layerNum,
int nOut,
Distribution dist)
Modify the architecture of a layer by changing nOut
Note this will also affect the layer that follows the layer specified, unless it is the output layer
|
TransferLearning.Builder |
TransferLearning.Builder.nOutReplace(int layerNum,
int nOut,
Distribution dist,
Distribution distNext)
Modify the architecture of a layer by changing nOut
Note this will also affect the layer that follows the layer specified, unless it is the output layer
Can specify different weight init schemes for the specified layer and the layer that follows it.
|
TransferLearning.Builder |
TransferLearning.Builder.nOutReplace(int layerNum,
int nOut,
Distribution dist,
WeightInit schemeNext)
Modify the architecture of a layer by changing nOut
Note this will also affect the layer that follows the layer specified, unless it is the output layer
Can specify different weight init schemes for the specified layer and the layer that follows it.
|
TransferLearning.Builder |
TransferLearning.Builder.nOutReplace(int layerNum,
int nOut,
WeightInit scheme,
Distribution distNext)
Modify the architecture of a layer by changing nOut
Note this will also affect the layer that follows the layer specified, unless it is the output layer
Can specify different weight init schemes for the specified layer and the layer that follows it.
|
TransferLearning.GraphBuilder |
TransferLearning.GraphBuilder.nOutReplace(String layerName,
int nOut,
Distribution dist)
Modify the architecture of a vertex layer by changing nOut
Note this will also affect the vertex layer that follows the layer specified, unless it is the output layer
Currently does not support modifying nOut of layers that feed into non-layer vertices like merge, subset etc
To modify nOut for such vertices use remove vertex, followed by add vertex
Can specify different weight init schemes for the specified layer and the layer that follows it.
|
TransferLearning.GraphBuilder |
TransferLearning.GraphBuilder.nOutReplace(String layerName,
int nOut,
Distribution dist,
Distribution distNext)
Modified nOut of specified layer.
|
TransferLearning.GraphBuilder |
TransferLearning.GraphBuilder.nOutReplace(String layerName,
int nOut,
Distribution dist,
WeightInit scheme) |
TransferLearning.GraphBuilder |
TransferLearning.GraphBuilder.nOutReplace(String layerName,
int nOut,
WeightInit scheme,
Distribution dist) |
Copyright © 2017. All rights reserved.