메인 콘텐츠로 건너뛰기

class BetaReport

BetaReport는 W&B에서 생성된 리포트와 연관된 클래스입니다. 리포트의 속성(이름, 설명, 사용자, 스펙, 타임스탬프)에 접근할 수 있게 해주며, 연관된 실행과 섹션을 조회하고 리포트를 HTML로 렌더링하는 메서드를 제공합니다. Attributes:
  • id (string): 리포트의 고유 식별자.
  • display_name (string): 사람이 읽기 쉬운 형태의 리포트 표시 이름.
  • name (string): 리포트의 이름. 더 사용자 친화적인 이름에는 display_name을 사용하세요.
  • description (string): 리포트에 대한 설명.
  • user (User): 리포트를 생성한 사용자의 정보(username, email)를 담고 있는 딕셔너리.
  • spec (dict): 리포트의 스펙.
  • url (string): 리포트의 URL.
  • updated_at (string): 마지막으로 업데이트된 시각의 타임스탬프.
  • created_at (string): 리포트가 생성된 시각의 타임스탬프.

method BetaReport.__init__

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

속성 BetaReport.created_at


property BetaReport.description


property BetaReport.display_name


property BetaReport.id


속성 BetaReport.name


property BetaReport.sections

보고서의 패널 섹션(그룹)을 가져옵니다.

property BetaReport.spec


property BetaReport.updated_at


property BetaReport.url


property BetaReport.user


method BetaReport.runs

runs(
    section: 'dict[str, Any]',
    per_page: 'int' = 50,
    only_selected: 'bool' = True
) → public.Runs
리포트의 특정 섹션에 연관된 실행을 가져옵니다.

메서드 BetaReport.to_html

to_html(height: 'int' = 1024, hidden: 'bool' = False) → str
이 리포트를 표시하는 iframe을 포함한 HTML을 생성합니다.