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'. ) ```