This commit is contained in:
jeanfad 2016-05-24 10:14:08 +02:00
Родитель ff19078498
Коммит bcb39e4766
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -146,6 +146,7 @@ CNTK2 = [
// 13. Others
// 12. Others
Pass(_, tag='') = new ComputationNode [ operation = 'Pass' ; inputs = _ /*plus the function args*/ ]
Dropout(_, tag='') = new ComputationNode [ operation = 'Dropout' ; inputs = _ /*plus the function args*/ ]
]
LearnableParameter (outputDim, inputDim, learningRateMultiplier = 1.0, init = 'uniform'/*|fixedValue|gaussian|fromFile*/, initValueScale = 1, value = 0, initFromFilePath = '', initFromLiteral = '', initOnCPUOnly=true, randomSeed=-1, tag='') = new ComputationNode [ operation = 'LearnableParameter' ; shape = new TensorShape [ dims = (outputDim : inputDim) ] /*plus the function args*/ ]