2020-12-23 18:58:47 +01:00
|
|
|
import * as tf from '../../dist/tfjs.esm';
|
2020-12-23 17:26:55 +01:00
|
|
|
import { ParamMapping } from '../common/types';
|
|
|
|
import { TinyYolov2Config } from './config';
|
|
|
|
import { TinyYolov2NetParams } from './types';
|
|
|
|
export declare function extractParamsFromWeigthMap(weightMap: tf.NamedTensorMap, config: TinyYolov2Config): {
|
|
|
|
params: TinyYolov2NetParams;
|
|
|
|
paramMappings: ParamMapping[];
|
|
|
|
};
|