Skip to content

Commit 87b2f56

Browse files
authored
Merge pull request #181 from fastlabel/feature/dataset-visibility-organization
feat: dataset visibility organization
2 parents f480b4e + ef2c214 commit 87b2f56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2394,7 +2394,7 @@ Create a new dataset.
23942394
dataset = client.create_dataset(
23952395
name="object-detection", # Only lowercase alphanumeric characters + hyphen is available
23962396
tags=["cat", "dog"], # max 5 tags per dataset.
2397-
visibility="workspace", # visibility can be 'workspace' or 'public'. workspace is only visible to your workspace members. public is visible to all users.
2397+
visibility="workspace", # visibility can be 'workspace' or 'public' or 'organization'
23982398
license="The MIT License" # Optional
23992399
)
24002400
```
@@ -2441,7 +2441,7 @@ You can filter by keywords and visibility, tags.
24412441
datasets = client.get_datasets(
24422442
keyword="dog",
24432443
tags=["cat", "dog"], # max 5 tags per dataset.
2444-
visibility="workspace", # visibility can be 'workspace' or 'public'.
2444+
visibility="workspace", # visibility can be 'workspace' or 'public' or 'organization'.
24452445
)
24462446
```
24472447

0 commit comments

Comments
 (0)