public final class Components extends Object
| Constructor and Description |
|---|
Components() |
| Modifier and Type | Method and Description |
|---|---|
static ALayerStack |
asLayerStack(IComponent comp) |
static Dropout |
dropout(int length) |
static Dropout |
dropout(int length,
double dropoutRate) |
static Join |
join(IComponent... components) |
static Join |
join(List<? extends IComponent> components) |
static NeuralNet |
neuralLayer(int inputLength,
int outputLength,
mikera.vectorz.Op op) |
static NeuralNet |
neuralLayer(int inputLength,
int outputLength,
mikera.vectorz.Op op,
boolean fullyConnected) |
static Operator |
operator(mikera.vectorz.Op op,
int length) |
static Stack |
stack(IComponent... components) |
static Stack |
stack(List<? extends IComponent> components) |
static AWeightLayer |
weightLayer(int inputLength,
int outputLength,
int maxLinks) |
public static Stack stack(List<? extends IComponent> components)
public static Stack stack(IComponent... components)
public static Join join(List<? extends IComponent> components)
public static Join join(IComponent... components)
public static Operator operator(mikera.vectorz.Op op, int length)
public static NeuralNet neuralLayer(int inputLength, int outputLength, mikera.vectorz.Op op)
public static Dropout dropout(int length)
public static Dropout dropout(int length, double dropoutRate)
public static AWeightLayer weightLayer(int inputLength, int outputLength, int maxLinks)
public static NeuralNet neuralLayer(int inputLength, int outputLength, mikera.vectorz.Op op, boolean fullyConnected)
public static ALayerStack asLayerStack(IComponent comp)
Copyright © 2013. All Rights Reserved.