Comment charger le modèle pré-entraîné en pytorch

pytorch_model = MNISTClassifier()
pytorch_model.load_state_dict(torch.load(path))
model.eval()
ai-lover