I am using custom algorithm in AWS Sagemaker and used boto3 "create_training_job" API to train the model. The "S3Uri" location of the training data is passed to this API. Sagemaker in turn copies this data to the folder "/opt/ml/input/data/" inside the docker image and I have configured the training logic based on this location - /opt/ml/input/data/.
Now I need to generate inference using "create_transform_job" API. I am passing the "S3Uri" of the inference dataset, to this API. To which location inside the docker, will this inference dataset be copied over to? This is required for configuring the location in the code.