If I instantiate a SageMaker PyTorchModel object like this:
from sagemaker.pytorch import PyTorchModel
model = PyTorchModel(name=name_from_base('model-name'),
model_data=model_data,
role=role,
framework_version='1.0.0',
entry_point='serve.py',
source_dir='src',
sagemaker_session=sagemaker_session,
predictor_cls=ImagePredictor)
#model.create_without_deploying??
Is there a way that I can create this model using the sagemaker python SDK so that the model shows up in the SageMaker console, but without actually deploying it to an endpoint?