devin.hee
devin.hee
> The files are in the validation set, you could find them in _ctw-trainval-**-of-26.tar_. Thanks to reply, I have got them!
Hi! I retrained this model with keras, but the model accuracy for now can only reach 89%. I guess it might be something wrong with my dataset, I can not...
> @devinhee - what's your data categorization error rate at? If you did a basic pull off of reddit etc. You might have some significant misclassifications that are holding your...
> Hi Thank you very much for your pre-trained model! > > I am gathering some new data and using your code to fine-tune.After 100 epochs, I get a new...
> > > Hi Thank you very much for your pre-trained model! > > > I am gathering some new data and using your code to fine-tune.After 100 epochs, I...
> I had the same problem - `get_model` doesn't seem to be throwing the error when downloading the model. > > I fixed it by manually downloading the models and...
It's the .record file missing , check and make sure that the .record file has been generated.
before you get the base_model, you can check the model summary to see name of each layer. like this: `base_model = resnet50.ResNet50(weights="imagenet", include_top=True) base_model.summary()` you will find whether there is...