You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the classic MobileNet model loaded const model = await mobilenet.load() you can use model.infer(image, 'conv_preds') for example and it works fine and you can do your transfer learning.
Any advice would be appreciated !
The text was updated successfully, but these errors were encountered:
I am using TensorFlow.js and I am interested in gettings the embeddings instead of the logits of a pre-trained model just as described in https://github.com/tensorflow/tfjs-models/tree/master/mobilenet for MobileNet ('Getting embeddings')
With the classic MobileNet model loaded
const model = await mobilenet.load()
you can usemodel.infer(image, 'conv_preds')
for example and it works fine and you can do your transfer learning.Any advice would be appreciated !
The text was updated successfully, but these errors were encountered: