Properties of an AttrValue.

interface IAttrValue {
    b?: boolean;
    f?: number;
    func?: INameAttrList;
    i?: string | number;
    list?: IListValue;
    placeholder?: string;
    s?: string;
    shape?: ITensorShape;
    tensor?: ITensor;
    type?: DataType;
}

Properties

b?: boolean

AttrValue b

f?: number

AttrValue f

AttrValue func

i?: string | number

AttrValue i

list?: IListValue

AttrValue list

placeholder?: string

AttrValue placeholder

s?: string

AttrValue s

shape?: ITensorShape

AttrValue shape

tensor?: ITensor

AttrValue tensor

type?: DataType

AttrValue type

Generated using TypeDoc