Hi,
I have trained EuroSAT ResNet18 model
How do I convert the .pt file into NN model ?
Your answer will be very appreciated !
Hi,
I have trained EuroSAT ResNet18 model
How do I convert the .pt file into NN model ?
Your answer will be very appreciated !
Hi @rkuo2000
For PyTorch models, it is highly recommended to export your .pt file to .onnx format first. Then, you may use the Offline Conversion Toolkit to convert .onnx file to .nb file. You may refer to the Offline AI Model Conversion Guide for more details.
Thank you.