denoiser
Version:
OIDN Denoiser with tensorflow.js
12 lines (11 loc) • 345 B
TypeScript
import { type TensorMap } from "./tza";
export declare class Weights {
private static instance;
private collections;
path?: string;
url: string;
private constructor();
static getInstance(): Weights;
getCollection(collection?: string, overrideUrl?: string): Promise<TensorMap>;
has(collection: string): boolean;
}