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

class BetaReport

BetaReport は、 W&B で作成された Reports に関連付けられたクラスです。 レポートの属性(名前、説明、ユーザー、 spec 、タイムスタンプ)へのアクセスや、関連する Runs やセクションの取得、レポートを HTML としてレンダリングするためのメソッドを提供します。 Attributes:
  • id (string): レポートの一意識別子。
  • display_name (string): 人間が読みやすいレポートの表示名。
  • name (string): レポートの名前。よりユーザーフレンドリーな名前が必要な場合は display_name を使用してください。
  • description (string): レポートの説明。
  • user (User): レポートを作成した Users 情報(ユーザー名、メールアドレス)を含む辞書。
  • spec (dict): レポートの spec 。
  • url (string): レポートの URL 。
  • updated_at (string): 最終更新時のタイムスタンプ。
  • created_at (string): レポート作成時のタイムスタンプ。

method BetaReport.__init__

__init__(client, attrs, entity=None, project=None)

property BetaReport.created_at


property BetaReport.description


property BetaReport.display_name


property BetaReport.id


property BetaReport.name


property BetaReport.sections

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

property BetaReport.spec


property BetaReport.updated_at


property BetaReport.url


property BetaReport.user


method BetaReport.runs

runs(section, per_page=50, only_selected=True)
レポートのセクションに関連付けられた Runs を取得します。

method BetaReport.to_html

to_html(height=1024, hidden=False)
このレポートを表示する iframe を含む HTML を生成します。