Properties of a NodeDef.

interface INodeDef {
    attr?: {
        [k: string]: IAttrValue;
    };
    device?: string;
    input?: string[];
    name?: string;
    op?: string;
}

Properties

attr?: {
    [k: string]: IAttrValue;
}

NodeDef attr

Type declaration

device?: string

NodeDef device

input?: string[]

NodeDef input

name?: string

NodeDef name

op?: string

NodeDef op

Generated using TypeDoc