-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathuseExecutorchModule.ts
58 lines (53 loc) · 1.2 KB
/
useExecutorchModule.ts
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import { useState } from 'react';
import { _ETModule } from '../../native/RnExecutorchModules';
import { useModule } from '../useModule';
import { ETInput } from '../../types/common';
import { getError } from '../../Error';
interface Props {
modelSource: string | number;
}
export const useExecutorchModule = ({
modelSource,
}: Props): {
error: string | null;
isReady: boolean;
isGenerating: boolean;
downloadProgress: number;
forward: (
input: ETInput | ETInput[],
shape: number[] | number[][]
) => Promise<number[][]>;
loadMethod: (methodName: string) => Promise<void>;
loadForward: () => Promise<void>;
} => {
const [module] = useState(() => new _ETModule());
const {
error,
isReady,
isGenerating,
downloadProgress,
forwardETInput: forward,
} = useModule({
modelSource,
module,
});
const loadMethod = async (methodName: string) => {
try {
await module.loadMethod(methodName);
} catch (e) {
throw new Error(getError(e));
}
};
const loadForward = async () => {
await loadMethod('forward');
};
return {
error,
isReady,
isGenerating,
downloadProgress,
forward,
loadMethod,
loadForward,
};
};