Skip to content
Merged
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
```
Expand Down Expand Up @@ -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'.
)
```

Expand Down