From ef2c21432f89c35c72cbd0537c6386a4682fc262 Mon Sep 17 00:00:00 2001 From: Jiei-S Date: Thu, 7 Sep 2023 15:30:20 +0900 Subject: [PATCH] feat: dataset visibility organization - mod README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9b47d88..4c51f9b 100644 --- a/README.md +++ b/README.md @@ -2394,7 +2394,7 @@ Create a new dataset. dataset = client.create_dataset( name="object-detection", # Only lowercase alphanumeric characters + hyphen is available tags=["cat", "dog"], # max 5 tags per dataset. - visibility="workspace", # visibility can be 'workspace' or 'public'. workspace is only visible to your workspace members. public is visible to all users. + visibility="workspace", # visibility can be 'workspace' or 'public' or 'organization' license="The MIT License" # Optional ) ``` @@ -2441,7 +2441,7 @@ You can filter by keywords and visibility, tags. datasets = client.get_datasets( keyword="dog", tags=["cat", "dog"], # max 5 tags per dataset. - visibility="workspace", # visibility can be 'workspace' or 'public'. + visibility="workspace", # visibility can be 'workspace' or 'public' or 'organization'. ) ```