| Package | Description |
|---|---|
| de.jungblut.classification.nn |
| Modifier and Type | Method and Description |
|---|---|
RBM |
RBM.RBMBuilder.build() |
static RBM |
RBM.deserialize(DataInputStream in)
Deserializes the RBM back from the binary stream input.
|
static RBM |
RBM.single(int numHiddenNodes) |
static RBM |
RBM.single(int numHiddenNodes,
ActivationFunction func) |
static RBM |
RBM.singleGPU(int numHiddenNodes,
ActivationFunction func) |
static RBM |
RBM.stacked(ActivationFunction func,
int... numHiddenNodes)
Creates a new stacked RBM with sigmoid activation and with the given number
of hidden nodes in each stacked layer.
|
static RBM |
RBM.stacked(int... numHiddenNodes)
Creates a new stacked RBM with sigmoid activation and with the given number
of hidden nodes in each stacked layer.
|
static RBM |
RBM.stackedGPU(ActivationFunction func,
int... numHiddenNodes)
Creates a new stacked RBM with sigmoid activation and with the given number
of hidden nodes in each stacked layer.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
RBM.serialize(RBM model,
DataOutput out)
Serializes this RBM model into the given output stream.
|
Copyright © 2016. All rights reserved.