2020-08-18 14:04:33 +02:00
|
|
|
import { ExtractWeightsFunction, ParamMapping } from '../common';
|
|
|
|
import { DenseBlock3Params, DenseBlock4Params } from './types';
|
|
|
|
export declare function extractorsFactory(extractWeights: ExtractWeightsFunction, paramMappings: ParamMapping[]): {
|
|
|
|
extractDenseBlock3Params: (channelsIn: number, channelsOut: number, mappedPrefix: string, isFirstLayer?: boolean) => DenseBlock3Params;
|
|
|
|
extractDenseBlock4Params: (channelsIn: number, channelsOut: number, mappedPrefix: string, isFirstLayer?: boolean) => DenseBlock4Params;
|
|
|
|
};
|
2020-08-21 15:01:04 +02:00
|
|
|
//# sourceMappingURL=extractorsFactory.d.ts.map
|