You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use TensorDeserializer to deserialize the model from aws s3 bucket but getting 400 Bad Request error. However, using TensorSerializer to serialize the model to s3 bucket has no issue.
After some testing, I found that changing the signature_version to s3v4 and setting a proper region_name can make thing work. From aws doc, v2 signature version is deprecated (getting Access Denied), and region is used to overwrite the default value which will point to us-east-1.
The text was updated successfully, but these errors were encountered:
I am trying to use
TensorDeserializer
to deserialize the model from aws s3 bucket but getting400 Bad Request
error. However, usingTensorSerializer
to serialize the model to s3 bucket has no issue.After some testing, I found that changing the signature_version to
s3v4
and setting a proper region_name can make thing work. From aws doc,v2
signature version is deprecated (gettingAccess Denied
), andregion
is used to overwrite the default value which will point tous-east-1
.The text was updated successfully, but these errors were encountered: