Closed G-Slient closed 3 years ago
Hi! I was able to solve it by replacing image_name
to image_uri
in the creation of the docker container:
image_uri = 'tf2-object-detection'
!sh ./docker/build_and_push.sh $image_uri
And in the create_model
function:
def create_model( self, model_server_workers=None, role=None, vpc_config_override=None, entry_point=None, source_dir=None, dependencies=None, image_uri=None, **kwargs ):
and erasing it from the arguments of the super parameter:
super(CustomFramework, self).__init__( entry_point, source_dir, hyperparameters, **kwargs )
Hopefully it works for you!
Thanks @nfbalbontin I have adjusted based on your suggestion in the latest commit You can pull the latest changes and feel free to reopen the issue if needed.
When i am trying to start the training process using
estimator.fit(inputs)
I am getting this error.