Because my Jupyter notebook (Vertex AI Workbench, user-managed) displayed list when I used the tab key after a period to inspect methods of the Study class, I naively expected Study.list() to list all Vizier studies in a project, but it hits an error:
from google.cloud import aiplatform
from google.cloud.aiplatform.vizier import Study
aiplatform.init(project='MY-PROJECT',location='us-central1')
Study.list()
The error I receive is ValueError: Unknown field for ListStudiesRequest: filter
The list() method is apparently being inherited from the base.VertexAiResourceNounWithFutureManager class.
The Study class refers to a _list_method, but it doesn't seem to be implemented implemented.
Because my Jupyter notebook (Vertex AI Workbench, user-managed) displayed
listwhen I used the tab key after a period to inspect methods of the Study class, I naively expectedStudy.list()to list all Vizier studies in a project, but it hits an error:The error I receive is
ValueError: Unknown field for ListStudiesRequest: filterThe list() method is apparently being inherited from the
base.VertexAiResourceNounWithFutureManagerclass.The Study class refers to a
_list_method, but it doesn't seem to be implemented implemented.