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

File saved to W&B. Represents a single file stored in W&B. Includes access to file metadata. Files are associated with a specific run and can include text files, model weights, datasets, visualizations, and other artifacts. You can download the file, delete the file, and access file properties. Specify one or more attributes in a dictionary to fine a specific file logged to a specific run. You can search using the following keys:
  • id (str): The ID of the run that contains the file
  • name (str): Name of the file
  • url (str): path to file
  • direct_url (str): path to file in the bucket
  • sizeBytes (int): size of file in bytes
  • md5 (str): md5 of file
  • mimetype (str): mimetype of file
  • updated_at (str): timestamp of last update
  • path_uri (str): path to file in the bucket, currently only available for S3 objects and reference files

Args

  • client: The run object that contains the file
  • attrs: A dictionary of attributes that define the file
  • run: The run object that contains the file

Properties

property size

Returns the size of the file in bytes.

property path_uri

Returns the URI path to the file in the storage bucket.

Methods

method delete

self
Delete the file from the W&B server.

method display

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

method download

self,
root: 'str' = '.',
replace: 'bool' = False,
exist_ok: 'bool' = False,
api: 'Api | None' = None
Downloads a file previously saved by a run from the wandb server.
Arguments
  • root: Local directory to save the file. Defaults to the current working directory (”.”).
  • replace: If True, download will overwrite a local file if it exists. Defaults to False.
  • exist_ok: If True, will not raise ValueError if file already exists and will not re-download unless replace=True. Defaults to False.
  • api: If specified, the Api instance used to download the file.