@hoff97/tensor-js
Version:
PyTorch like deep learning inferrence library
9 lines (8 loc) • 376 B
TypeScript
import Tensor from '../../types';
import { OnnxNode } from '../node';
import { Constants } from '../types';
import { SequenceOptimization } from './optimization';
export declare class ConvRelu extends SequenceOptimization {
constructor();
apply(nodes: OnnxNode[], resolveConstant: (name: string) => Tensor<any>, constants: Constants, onnxVersion: number): OnnxNode;
}