UNPKG

1.58 kBTypeScriptView Raw
1/**
2 * @license
3 * Copyright 2018 Google LLC. All Rights Reserved.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 * =============================================================================
16 */
17/**
18 * Public API symbols under the tf.node.* namespace.
19 */
20import { tensorBoard } from './callbacks';
21import { decodeBmp, decodeGif, decodeImage, decodeJpeg, decodePng, encodeJpeg, encodePng } from './image';
22import { getMetaGraphsFromSavedModel, getNumOfSavedModels, loadSavedModel } from './saved_model';
23import { summaryFileWriter } from './tensorboard';
24export declare const node: {
25 decodeImage: typeof decodeImage;
26 decodeBmp: typeof decodeBmp;
27 decodeGif: typeof decodeGif;
28 decodePng: typeof decodePng;
29 decodeJpeg: typeof decodeJpeg;
30 encodeJpeg: typeof encodeJpeg;
31 encodePng: typeof encodePng;
32 summaryFileWriter: typeof summaryFileWriter;
33 tensorBoard: typeof tensorBoard;
34 getMetaGraphsFromSavedModel: typeof getMetaGraphsFromSavedModel;
35 getNumOfSavedModels: typeof getNumOfSavedModels;
36 loadSavedModel: typeof loadSavedModel;
37};