1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 | export type Shape = Array<null | number>;
|
13 | export type DataType = 'float32' | 'int32' | 'bool' | 'complex64' | 'string';
|
14 |
|
15 | export type DataFormat = 'channelsFirst' | 'channelsLast';
|
16 | export declare const VALID_DATA_FORMAT_VALUES: string[];
|
17 | export type InterpolationFormat = 'nearest' | 'bilinear';
|
18 | export declare const VALID_INTERPOLATION_FORMAT_VALUES: string[];
|
19 | export type DataFormatSerialization = 'channels_first' | 'channels_last';
|
20 |
|
21 | export type PaddingMode = 'valid' | 'same' | 'causal';
|
22 | export declare const VALID_PADDING_MODE_VALUES: string[];
|
23 |
|
24 | export type PoolMode = 'max' | 'avg';
|
25 | export declare const VALID_POOL_MODE_VALUES: string[];
|
26 |
|
27 | export type BidirectionalMergeMode = 'sum' | 'mul' | 'concat' | 'ave';
|
28 | export declare const VALID_BIDIRECTIONAL_MERGE_MODES: string[];
|
29 |
|
30 | export type SampleWeightMode = 'temporal';
|
31 | export declare const VALID_SAMPLE_WEIGHT_MODES: string[];
|