-
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 1.2.8
Chrome 77.0.3865.90
Describe the problem or feature request
Getting "backend_webgl.ts:2088 Uncaught (in promise) TypeError: Cannot read property 'filterHeight' of undefined" when trying to fit downloaded model to training data.
My code does the following:
- Downloads mobilenet
- Modifies the model by freezing all but the last couple layers and adds a custom output layer (https://imgur.com/a/PFqPHsz)
- Attempts to train the modified model layers with images + corresponding labels (https://imgur.com/a/yEoMWMl)
Modifying and freezing the model work fine (I've confirmed these work by checking the model summary), but attempting to fit the model leads to the error seen below (it seems that convInfo is undefined, but I'm unsure how to debug the root cause).
Any help on this issue would be much appreciated!
