print: Print a Deep Belief Net

Description Usage Arguments Value See Also Examples

Description

Print a DeepBeliefNet or RestrictedBolzmannMachine and returns it invisibly

Usage

1
2
3
4
5
6
7
8
## S3 method for class 'Layer'
print(x, ...)

## S3 method for class 'DeepBeliefNet'
print(x, ...)

## S3 method for class 'RestrictedBolzmannMachine'
print(x, ...)

Arguments

x

the RestrictedBolzmannMachine or DeepBeliefNet object to be printed

...

ignored

Value

Returns x invisibly

See Also

print Layer

RestrictedBolzmannMachine, DeepBeliefNet, print

RestrictedBolzmannMachine, print

Examples

1
2
3
4
5
6
layer <- Layer(10L, "gaussian")
print(layer)
dbn <- DeepBeliefNet(Layers(c(784, 1000, 500, 250, 30), input="continuous", output="gaussian"))
print(dbn)
rbm <- RestrictedBolzmannMachine(Layer(784, "continuous"), Layer(1000, "binary"))
print(rbm)

xrobin/DeepLearning documentation built on Sept. 18, 2020, 5:23 a.m.