Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Correct docstring in Dataset classes #1553

Merged
merged 2 commits into from
Aug 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions google/cloud/aiplatform/datasets/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,13 @@ def create(
``import_schema_uri``,
e.g. jsonl file.
project (str):
Project to upload this model to. Overrides project set in
Project to upload this dataset to. Overrides project set in
aiplatform.init.
location (str):
Location to upload this model to. Overrides location set in
Location to upload this dataset to. Overrides location set in
aiplatform.init.
credentials (auth_credentials.Credentials):
Custom credentials to use to upload this model. Overrides
Custom credentials to use to upload this dataset. Overrides
credentials set in aiplatform.init.
request_metadata (Sequence[Tuple[str, str]]):
Strings which should be sent along with the request as metadata.
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/aiplatform/datasets/image_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ def create(
``import_schema_uri``,
e.g. jsonl file.
project (str):
Project to upload this model to. Overrides project set in
Project to upload this dataset to. Overrides project set in
aiplatform.init.
location (str):
Location to upload this model to. Overrides location set in
Location to upload this dataset to. Overrides location set in
aiplatform.init.
credentials (auth_credentials.Credentials):
Custom credentials to use to upload this model. Overrides
Custom credentials to use to upload this dataset. Overrides
credentials set in aiplatform.init.
request_metadata (Sequence[Tuple[str, str]]):
Strings which should be sent along with the request as metadata.
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/aiplatform/datasets/tabular_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ def create(
example:
"bq://project.dataset.table_name"
project (str):
Project to upload this model to. Overrides project set in
Project to upload this dataset to. Overrides project set in
aiplatform.init.
location (str):
Location to upload this model to. Overrides location set in
Location to upload this dataset to. Overrides location set in
aiplatform.init.
credentials (auth_credentials.Credentials):
Custom credentials to use to upload this model. Overrides
Custom credentials to use to upload this dataset. Overrides
credentials set in aiplatform.init.
request_metadata (Sequence[Tuple[str, str]]):
Strings which should be sent along with the request as metadata.
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/aiplatform/datasets/text_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@ def create(
``import_schema_uri``,
e.g. jsonl file.
project (str):
Project to upload this model to. Overrides project set in
Project to upload this dataset to. Overrides project set in
aiplatform.init.
location (str):
Location to upload this model to. Overrides location set in
Location to upload this dataset to. Overrides location set in
aiplatform.init.
credentials (auth_credentials.Credentials):
Custom credentials to use to upload this model. Overrides
Custom credentials to use to upload this dataset. Overrides
credentials set in aiplatform.init.
request_metadata (Sequence[Tuple[str, str]]):
Strings which should be sent along with the request as metadata.
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/aiplatform/datasets/time_series_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ def create(
example:
"bq://project.dataset.table_name"
project (str):
Project to upload this model to. Overrides project set in
Project to upload this dataset to. Overrides project set in
aiplatform.init.
location (str):
Location to upload this model to. Overrides location set in
Location to upload this dataset to. Overrides location set in
aiplatform.init.
credentials (auth_credentials.Credentials):
Custom credentials to use to upload this model. Overrides
Custom credentials to use to upload this dataset. Overrides
credentials set in aiplatform.init.
request_metadata (Sequence[Tuple[str, str]]):
Strings which should be sent along with the request as metadata.
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/aiplatform/datasets/video_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ def create(
``import_schema_uri``,
e.g. jsonl file.
project (str):
Project to upload this model to. Overrides project set in
Project to upload this dataset to. Overrides project set in
aiplatform.init.
location (str):
Location to upload this model to. Overrides location set in
Location to upload this dataset to. Overrides location set in
aiplatform.init.
credentials (auth_credentials.Credentials):
Custom credentials to use to upload this model. Overrides
Custom credentials to use to upload this dataset. Overrides
credentials set in aiplatform.init.
request_metadata (Sequence[Tuple[str, str]]):
Strings which should be sent along with the request as metadata.
Expand Down