1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 | import * as tf from '@tensorflow/tfjs';
|
18 | import * as nodeIo from './io/index';
|
19 | import './kernels/all_kernels';
|
20 | export declare const version: {
|
21 | 'tfjs-node': string;
|
22 | 'tfjs-core': string;
|
23 | 'tfjs-backend-cpu': string;
|
24 | 'tfjs-backend-webgl': string;
|
25 | 'tfjs-data': string;
|
26 | 'tfjs-layers': string;
|
27 | 'tfjs-converter': string;
|
28 | 'tfjs': string;
|
29 | };
|
30 | export declare const io: {
|
31 | fileSystem: typeof nodeIo.fileSystem;
|
32 | nodeHTTPRequest: typeof nodeIo.nodeHTTPRequest;
|
33 | copyModel: typeof import("@tensorflow/tfjs-core/dist/io/model_management").copyModel;
|
34 | listModels: typeof import("@tensorflow/tfjs-core/dist/io/model_management").listModels;
|
35 | moveModel: typeof import("@tensorflow/tfjs-core/dist/io/model_management").moveModel;
|
36 | removeModel: typeof import("@tensorflow/tfjs-core/dist/io/model_management").removeModel;
|
37 | browserFiles: typeof import("@tensorflow/tfjs-core/dist/io/browser_files").browserFiles;
|
38 | browserHTTPRequest: typeof import("@tensorflow/tfjs-core/dist/io/http").browserHTTPRequest;
|
39 | concatenateArrayBuffers: typeof import("@tensorflow/tfjs-core/dist/io/io_utils").concatenateArrayBuffers;
|
40 | decodeWeights: typeof import("@tensorflow/tfjs-core/dist/io/io_utils").decodeWeights;
|
41 | encodeWeights: typeof import("@tensorflow/tfjs-core/dist/io/io_utils").encodeWeights;
|
42 | fromMemory: typeof import("@tensorflow/tfjs-core/dist/io/passthrough").fromMemory;
|
43 | getLoadHandlers: (url: string | string[], loadOptions?: tf.io.LoadOptions) => tf.io.IOHandler[];
|
44 | getModelArtifactsInfoForJSON: typeof import("@tensorflow/tfjs-core/dist/io/io_utils").getModelArtifactsInfoForJSON;
|
45 | getSaveHandlers: (url: string | string[]) => tf.io.IOHandler[];
|
46 | http: typeof import("@tensorflow/tfjs-core/dist/io/http").http;
|
47 | isHTTPScheme: typeof import("@tensorflow/tfjs-core/dist/io/http").isHTTPScheme;
|
48 | loadWeights: typeof import("@tensorflow/tfjs-core/dist/io/weights_loader").loadWeights;
|
49 | registerLoadRouter: (loudRouter: import("@tensorflow/tfjs-core/dist/io/router_registry").IORouter) => void;
|
50 | registerSaveRouter: (loudRouter: import("@tensorflow/tfjs-core/dist/io/router_registry").IORouter) => void;
|
51 | weightsLoaderFactory: typeof import("@tensorflow/tfjs-core/dist/io/weights_loader").weightsLoaderFactory;
|
52 | withSaveHandler: typeof import("@tensorflow/tfjs-core/dist/io/passthrough").withSaveHandler;
|
53 | };
|
54 | export * from '@tensorflow/tfjs';
|
55 | export * from './node';
|