Skip to main content

Documentation Index

Fetch the complete documentation index at: https://wb-21fd5541-sdk-testing.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Description

A project is a namespace for runs.

Args

  • client: Legacy GraphQL client retained for API compatibility.
  • entity: The entity name that owns the project.
  • project: The name of the project.
  • attrs: A dictionary of project attributes, typically obtained from a GraphQL response.
  • service_api: Interface to the wandb-core service that performs W&B API calls for this project.

Properties

property owner

Returns the project owner as a User object.

property path

Returns the path of the project. The path is a list containing the entity and project name.

property url

Returns the URL of the project.

property id

Returns the unique identifier of the project.

Methods

method artifacts_types

self,
per_page: 'int' = 50
Returns all artifact types associated with this project.
Arguments
  • per_page:

method collections

self,
filters: 'Mapping[str, Any] | None' = None,
order: 'str | None' = None,
per_page: 'int' = 50
Returns all artifact collections associated with this project.
Arguments
  • filters: Optional mapping of filters to apply to the query.
  • order: 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.
  • per_page: The number of artifact collections to fetch per page. Default is 50.

method display

self, height=420, hidden=False
Display this object in jupyter.
Arguments
  • height:
  • hidden:

method sweeps

self,
per_page: 'int' = 50
Return a paginated collection of sweeps in this project.
Arguments
  • per_page: The number of sweeps to fetch per request to the API.