You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2394,7 +2394,7 @@ Create a new dataset.
2394
2394
dataset = client.create_dataset(
2395
2395
name="object-detection", # Only lowercase alphanumeric characters + hyphen is available
2396
2396
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'
2398
2398
license="The MIT License"# Optional
2399
2399
)
2400
2400
```
@@ -2441,7 +2441,7 @@ You can filter by keywords and visibility, tags.
2441
2441
datasets = client.get_datasets(
2442
2442
keyword="dog",
2443
2443
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'.
0 commit comments