There doesn't seem to be any option to get the ARN. I would like to get the ARN and add tags to the training job / end point. ``` pytorch_model = PyTorchModel(model_data=model_data, role=role, source_dir=source_dir, entry_point='inference.py', framework_version='1.0.0', name=end_point_name ) # Deploy to endpoint predictor = pytorch_model.deploy( instance_type='ml.t2.medium', # instance_type='local', initial_instance_count=1) ```