Open brianspiesman opened 1 year ago
Is this an appropriate place to ask this question or is another forum more appropriate?
@Linchenn any ideas here?
having same issue !! i trained a model in EfficientNetB0 , same error is showing , did you find any solution ?
Nope. No response. I've moved on to a different approach.
I used tensorflow.keras.layers.Normalization() in my model and I am getting the same error. Did you guys find a workaround for this issue?
same issue
I have the same issue. Has anyone found a workaround?
I trained a custom EfficientNetB2 classification model with Tensorflow 2.9.0:
I then converted the resulting .h5 saved model to tfjs (using tensorflowjs 3.19.0):
tfjs.converters.save_keras_model(saved_model, 'tfjs_model')
After the conversion completes I get this message:
weight normalization_3/count with shape () and dtype int64 was auto converted to the type int32
Then, when I use the tfjs model in a react native app, I get this error message:
I am using @tensorflow/tfjs 4.4.0
This seems to be an error related to normalization but I am not sure how to address it.
Any help would be appreciated!