unused_layers.py 353 字节
Newer Older
1
from paddle.trainer_config_helpers import *
Q
qijun 已提交
2
settings(batch_size=1000, learning_rate=1e-4)
3 4 5 6 7 8 9 10

probs = data_layer(name='probs', size=100)

outputs(
    sampling_id_layer(input=probs),  # It seems not support training

    # It seems this layer is not correct, and should be rewrite.
    # block_expand_layer(input=probs, channel=1, block_x=1, block_y=3),
Q
qijun 已提交
11
)