Inputs format on AWS Sagemaker
#43
by
yuleisheng
- opened
Hi there, i deployed OmniParser in WAS Sagemaker
predictor = huggingface_model.deploy(
initial_instance_count=1, # number of instances
instance_type='ml.m5.xlarge' # ec2 instance type
)
I'm trying to figure the inputs format that i should use when i call predictor.predict()
predictor.predict({
// what should the format be?
})
Thank you!