메인 콘텐츠로 건너뛰기
GitHub source

class BetaReport

BetaReport 는 W&B 에서 생성된 Reports 와 관련된 클래스입니다. 이 클래스는 Reports 의 속성(이름, 설명, User, spec, 타임스탬프)에 대한 access 와 연관된 Runs, 섹션을 가져오고 리포트를 HTML로 렌더링하는 메소드들을 제공합니다. Attributes:
  • id (string): 리포트의 고유 식별자.
  • display_name (string): 사람이 읽기 좋은 리포트의 표시 이름.
  • name (string): 리포트의 이름. 더 사용자 친화적인 이름을 원하시면 display_name 을 사용하세요.
  • description (string): 리포트에 대한 설명.
  • user (User): 리포트를 생성한 사용자 정보(사용자 이름, 이메일)가 포함된 사전.
  • 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을 생성합니다.