Im using mobilenet from tensorflow and are trying to load the models offline.
The model loads here:
tf.loadModel(this.path)]
My first approach was to simply download the model.json and point to that file instead of the full url in my code as follows:
// this.path = 'https://storage.googleapis.com/tfjs-models/tfjs/mobilenet_v1_1.0_224/model.json';
this.path = "./model.json";
But then I am getting the following error:
GET https://storage.googleapis.com/tfjs-models/tfjs/mobilenet_v1_1.0_224/group37-shard1of1 net::ERR_INTERNET_DISCONNECTED
weights_loader.js:47
How do I download and point correctly to the weights for use it offline?
UPDATE I now just downloaded every shard manually by using the link in the errormessage.
https://storage.googleapis.com/tfjs-models/tfjs/mobilenet_v1_1.0_224/group1-shard1of1 https://storage.googleapis.com/tfjs-models/tfjs/mobilenet_v1_1.0_224/group1-shard1of1 https://storage.googleapis.com/tfjs-models/tfjs/mobilenet_v1_1.0_224/group1-shard1of1 and so on up to https://storage.googleapis.com/tfjs-models/tfjs/mobilenet_v1_1.0_224/group55-shard1of1
Now the groups loads correctly:
but I am getting a new errormessage:
Error: Based on the provided shape, [1,1,1024,1000], and dtype float32, the tensor should have 1024000 values but has 410072
If you have tensorflow installed the MobileNet and MobileNet version 2 models are available as shown below. Documentation is [here.][1]. For original version you can get the weights for the model trained on the imagenet data set for image size 224 X 224 with the code below. There are four sets of pre-trained weights available for image sizes 224, 192,160,128 so select the one you want. Below I selected the weights for the 224 X 224 image size. The variable weights will contain the pre-trained weights.