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

API 概要


Source

class FeedbackQuery

サーバー からフィードバックを取得するための遅延読み込み用 オブジェクト です。 Source

method __init__

__init__(
    entity: 'str',
    project: 'str',
    query: 'Query',
    offset: 'int | None' = None,
    limit: 'int | None' = None,
    show_refs: 'bool' = False
)

Source

method execute

execute() → Feedbacks

Source

method refresh

refresh() → Feedbacks

Source

method refs

refs() → Refs

Source

class Feedbacks

ユーティリティを備えた Feedback オブジェクト のコレクションです。 Source

method __init__

__init__(
    show_refs: 'bool',
    feedbacks: 'Iterable[Feedback] | None' = None
) → None

Source

method refs

refs() → Refs
これらのフィードバックに関連付けられた一意の ref を返します。
Source

class RefFeedbackQuery

特定の ref に関連付けられたフィードバックを操作するための オブジェクト です。 Source

method __init__

__init__(ref: 'str') → None

Source

method add

add(
    feedback_type: 'str',
    payload: 'dict[str, Any] | None' = None,
    creator: 'str | None' = None,
    annotation_ref: 'str | None' = None,
    **kwargs: 'dict[str, Any]'
) → str
ref にフィードバックを追加します。 feedback_type: フィードバックの種類を識別する文字列。“wandb.” プレフィックスは予約済みです。creator: フィードバックの作成者として表示する名前。
Source

method add_note

add_note(note: 'str', creator: 'str | None' = None) → str

Source

method add_reaction

add_reaction(emoji: 'str', creator: 'str | None' = None) → str

Source

method execute

execute() → Feedbacks

Source

method purge

purge(feedback_id: 'str') → None

Source

method refresh

refresh() → Feedbacks

Source

method refs

refs() → Refs