Skip to content

Commit c096f68

Browse files
committed
[fix] fixed modelset. added onnx and tf larger models
1 parent 328d717 commit c096f68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export class Client {
6969
}
7070

7171
public modelset(keName: string, m: Model): Promise<any> {
72-
let args: any[] = [keName, m.backend.toString(), m.device];
72+
const args: any[] = [keName, m.backend.toString(), m.device];
7373
if (m.tag !== undefined) {
7474
args.push('TAG');
7575
args.push(m.tag.toString());

0 commit comments

Comments
 (0)