Package | Description |
---|---|
deepnetts.automl |
Support for automatically building deep learning models using hyper-parameter search.
|
deepnetts.net |
Neural network architectures with their corresponding builders.
|
deepnetts.net.layers |
Neural network layers, which are main building blocks of a neural network.
|
deepnetts.net.loss |
Commonly used loss functions, which are used to calculate error during the training as a difference between predicted and target output.
|
Modifier and Type | Method and Description |
---|---|
void |
FeedForwardNetworkFactory.setLossType(LossType lossType) |
Modifier and Type | Method and Description |
---|---|
ConvolutionalNetwork.Builder |
ConvolutionalNetwork.Builder.lossFunction(LossType lossType)
Sets loss function to be used by created neural network.
|
FeedForwardNetwork.Builder |
FeedForwardNetwork.Builder.lossFunction(LossType lossType)
Sets loss function to be used by created neural network.
|
Modifier and Type | Method and Description |
---|---|
LossType |
OutputLayer.getLossType() |
Modifier and Type | Method and Description |
---|---|
void |
OutputLayer.setLossType(LossType lossType) |
Modifier and Type | Method and Description |
---|---|
static LossType |
LossType.of(Class lossClass) |
static LossType |
LossType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LossType[] |
LossType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Copyright © 2022. All rights reserved.