Assigned
Status Update
Comments
ri...@google.com <ri...@google.com> #2
I have one question related to Google translate API. but it is not related to this issue.
When i am trying to access Google Translate API using javascript when the query string size is around 13000 characters i am getting server response error code 400. Can you please let me know what is the request size limit if any exist.
When i am trying to access Google Translate API using javascript when the query string size is around 13000 characters i am getting server response error code 400. Can you please let me know what is the request size limit if any exist.
Description
Steps to reproduce:
from google.cloud import aiplatform
aiplatform.init(project=project, location=location)
ds = aiplatform.ImageDataset.create(
display_name=display_name,
)
ds.import_data(
gcs_source='first_source',
import_schema_uri=aiplatform.schema.dataset.ioformat.image.single_label_classification
)
ds.import_data(
gcs_source='second_source',
import_schema_uri=aiplatform.schema.dataset.ioformat.image.single_label_classification
)
As can be seen in the attachment: no ID for the annotation sets are provided and their names are the same.
Suggestion:
- Allow users to define the name of the annotation set when using the import_data function in the python sdk