conf.es6 625 字节
Newer Older
W
wangqun 已提交
1 2 3 4 5 6 7 8
/* eslint-disable */
/**
 * @file softmax的配置文件
 * @author yangmingming
 */
export default {
    dep: [
        {
W
wangqun 已提交
9
            func: 'getValueFromTensorPos',
W
wangqun 已提交
10
            conf: {
W
wangqun 已提交
11
                TENSOR_NAME: 'origin'
W
wangqun 已提交
12 13 14 15
            }
        }
    ],
    conf: [
W
wangqun 已提交
16 17 18
        'WIDTH_SHAPE_ORIGIN',
        'HEIGHT_SHAPE_ORIGIN',
        'LENGTH_SHAPE_ORIGIN',
W
wangqun 已提交
19 20
        'WIDTH_TEXTURE_ORIGIN',
        'HEIGHT_TEXTURE_ORIGIN',
W
wangqun 已提交
21
        'CHANNEL_ORIGIN',
W
wangqun 已提交
22 23 24 25 26 27 28 29 30 31
    ],
    input: [
        {
            tensor: 'origin',
            variable: 'texture',
            setter: 'initTexture',
            type: 'texture'
        }
    ]
};