mnist-data-handler.ts 707 Bytes
Newer Older
gaoqiong's avatar
gaoqiong committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

import {NativeModules} from 'react-native';

export interface MNISTInput {
  [name: string]: {
    dims: number[]; type: string; data: string;  // encoded tensor data
  };
}

export interface MNISTOutput {
  [name: string]: {
    data: string;  // encoded tensor data
  };
}

export interface MNISTResult {
  result: string;
}

type MNISTType = {
  getLocalModelPath(): Promise<string>; getImagePath(): Promise<string>; preprocess(uri: string): Promise<MNISTInput>;
  postprocess(result: MNISTOutput): Promise<MNISTResult>;
};

const MNIST = NativeModules.MNISTDataHandler;

export default MNIST as MNISTType;