Class wandb.apis.public.Project
method Project.artifacts_types()
Returns all artifact types associated with this project.Arguments
int
method Project.collections()
Returns all artifact collections associated with this project.Arguments
Mapping[str, Any] | None
Optional mapping of filters to apply to the query.
str | None
Optional string to specify the order of the results. If you prepend order with a + order is ascending (default). If you prepend order with a - order is descending.
int
The number of artifact collections to fetch per page. Default is 50.
method Project.sweeps()
Return a paginated collection of sweeps in this project.Arguments
int
The number of sweeps to fetch per request to the API.
dict[str, Any] | None
(dict) queries for specific sweeps using the runs filters, See wandb/apis/public/api.py:runs for more details.
str | None
Returns
ASweeps object, which is an iterable collection of Sweep objects.