メインコンテンツへスキップ

class BetaReport

BetaReport は、W&B で作成された Reports に関連付けられたクラスです。 レポートの属性 (name、description、user、spec、timestamps) にアクセスし、関連する run やセクションを取得したり、レポートを HTML として表示したりするための method を提供します。 属性:
  • id (string): レポートの一意の識別子。
  • display_name (string): 人が読める形式のレポートの表示名。
  • name (string): レポートの名。よりわかりやすい名前には display_name を使用します。
  • description (string): レポートの説明。
  • user (User): レポートを作成したユーザーの情報 (ユーザー名、メールアドレス) を含む辞書。
  • spec (dict): レポートの spec。
  • url (string): レポートの URL。
  • updated_at (string): 最終更新の Timestamp。
  • created_at (string): レポートが作成された Timestamp。

method BetaReport.__init__

__init__(
    client: 'RetryingClient',
    attrs: 'dict',
    entity: 'str | None' = None,
    project: 'str | None' = None
)

プロパティ BetaReport.created_at


プロパティ BetaReport.description


プロパティ BetaReport.display_name


プロパティ BetaReport.id


プロパティ BetaReport.name


プロパティ BetaReport.sections

レポートからパネルのセクション (グループ) を取得します。

プロパティ BetaReport.spec


プロパティ BetaReport.updated_at


プロパティ BetaReport.url


プロパティ BetaReport.user


method BetaReport.runs

runs(
    section: 'dict[str, Any]',
    per_page: 'int' = 50,
    only_selected: 'bool' = True
) → public.Runs
レポートのセクションに関連付けられたrunを取得します。

method BetaReport.to_html

to_html(height: 'int' = 1024, hidden: 'bool' = False) → str
このレポートを表示するためのiframeを含むHTMLを生成します。