-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
Labels
Description
To get help from the community, we encourage using Stack Overflow and the tensorflow.js
tag.
TensorFlow.js version
1.4.0
Browser version
Chrome Version 79.0.3945.79 (Official Build) (64-bit)
Describe the problem or feature request
I tried to load tfjs_converter converted custom object detection model made with object detection api. It was successfully loaded. But when I run model.executeAsync
, it gives me an error: 'TypeError: Unknown op '_FusedConv2D''.
Code to reproduce the bug / link to feature request
this.model = await tfconv.loadGraphModel(this.modelPath); const result = await this.model.executeAsync(tf.zeros([1, 300, 300, 3])) as tf.Tensor[];
dolevrdolevr