> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-sdk-testing-latest.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Experiments

<Card title="W&B は `multiprocessing` ライブラリを使用しますか？" href="/ja/support/models/articles/does-wb-use-the-multiprocessing-library" arrow="true" horizontal>
  はい、W\&B は multiprocessing ライブラリを使用します。そのため、W\&B を直接呼び出すスクリプトでは、エントリポイントを適切に保護する必要があります ...
</Card>

<Card title="ログすることによってトレーニングはブロックされますか？" href="/ja/support/models/articles/does-logging-block-my-training" arrow="true" horizontal>
  「ログする関数は遅延実行されますか？ローカルで実行している間、結果をサーバーに送信するためにネットワークへ依存したくありません ...
</Card>

<Card title="このツールはトレーニングデータをトラッキングまたは保存しますか？" href="/ja/support/models/articles/does-your-tool-track-or-store-training-d" arrow="true" horizontal>
  データセットをトレーニング run に関連付けるには、SHA または一意の識別子を wandb.Run.config.update(...) に渡します。W\&B は保存します ...
</Card>

<Card title="Runs にログされたデータに直接プログラムからアクセスするにはどうすればよいですか？" href="/ja/support/models/articles/how-can-i-access-the-data-logged-to-my-r" arrow="true" horizontal>
  history オブジェクトは wandb.log でログされたメトリクスをトラッキングします。history オブジェクトにアクセスするには、API を使用します:
</Card>

<Card title="エポックやステップをまたいで画像やメディアを比較するにはどうすればよいですか？" href="/ja/support/models/articles/how-can-i-compare-images-or-media-across" arrow="true" horizontal>
  異なるエポックやステップでログされた画像やその他のメディアを比較するには、画像パネルを展開し、step スライダーを使用して  ...
</Card>

<Card title="トレーニングコードで run 名を設定するにはどうすればよいですか？" href="/ja/support/models/articles/how-can-i-configure-the-name-of-the-run-" arrow="true" horizontal>
  トレーニングスクリプトの先頭で、run 名を指定して wandb.init を呼び出します。例: wandb.init(name="my\_awesome\_run") ...
</Card>

<Card title="`wandb` ファイルのローカル保存場所を指定するにはどうすればよいですか？" href="/ja/support/models/articles/how-can-i-define-the-local-location-for-" arrow="true" horizontal>
  wandb がファイルをローカルに保存する場所は、次の環境変数を設定するか、記載がある場合は  ... によって制御できます
</Card>

<Card title="ログしたチャートやメディアを W&B UI で整理するにはどうすればよいですか？" href="/ja/support/models/articles/how-can-i-organize-my-logged-charts-and-" arrow="true" horizontal>
  ログしたチャートやメディアは、共通の接頭辞を付けて名前を付けることで関連するグループに整理でき、これにより  ... が容易になります
</Card>

<Card title="run に関連付けられた git コミットを保存するにはどうすればよいですか？" href="/ja/support/models/articles/how-can-i-save-the-git-commit-associated" arrow="true" horizontal>
  wandb.init を呼び出すと、W\&B はリモートリポジトリのリンクや SHA などの Git 情報を自動的に収集します ...
</Card>

<Card title="Files タブに表示されないファイルを確認するにはどうすればよいですか？" href="/ja/support/models/articles/how-can-i-see-files-that-do-not-appear-i" arrow="true" horizontal>
  Files タブには最大 10,000 件のファイルが表示されます。すべてのファイルをダウンロードするには、Public API を使用します:
</Card>

<Card title="たとえば分散トレーニングで、multiprocessing とともに W&B を使用するにはどうすればよいですか？" href="/ja/support/models/articles/how-can-i-use-wandb-with-multiprocessing" arrow="true" horizontal>
  この記事では、分散トレーニング ジョブのように複数のプロセスにまたがるトレーニングプログラムで W\&B を使用する方法を説明します ...
</Card>

<Card title="Tables に Plotly または Bokeh のチャートを追加するにはどうすればよいですか？" href="/ja/support/models/articles/how-do-i-add-plotly-or-bokeh-charts-into" arrow="true" horizontal>
  Plotly または Bokeh の図を Tables に直接組み込むことはサポートされていません。代わりに、図を HTML としてエクスポートして含めてください ...
</Card>

<Card title="メトリクスのログ時に `Rate limit exceeded` エラーを修正するにはどうすればよいですか？" href="/ja/support/models/articles/rate-limit-exceeded-on-metric-logging" arrow="true" horizontal>
  wandb.log() を呼び出したときに HTTP 429 の Rate limit exceeded エラーを受け取る場合、... の rate limit クォータを超過しています
</Card>

<Card title="スクリプトでランダムな run 名を取得するにはどうすればよいですか？" href="/ja/support/models/articles/how-do-i-get-the-random-run-name-in-my-s" arrow="true" horizontal>
  現在の run を保存するには、Run オブジェクトの .save() メソッドを呼び出します。名前は Run オブジェクトの name 属性から取得します。
</Card>

<Card title="1 つのスクリプトから複数の run を起動するにはどうすればよいですか？" href="/ja/support/models/articles/how-do-i-launch-multiple-runs-from-one-s" arrow="true" horizontal>
  1 つのスクリプト内で複数の run をログするには、新しい run を開始する前に、前の run をそれぞれ終了する必要があります。以下 ...
</Card>

<Card title="値のリストをログするにはどうすればよいですか？" href="/ja/support/models/articles/how-do-i-log-a-list-of-values" arrow="true" horizontal>
  `wandb.Run.log()` を使用すると、step ごとの損失などの値のリストをログできます。以下の例では、一般的な 2 つの方法を示 ...
</Card>

<Card title="2 つの異なる時間スケールでメトリクスをログするにはどうすればよいですか？" href="/ja/support/models/articles/how-do-i-log-metrics-on-two-time-scales" arrow="true" horizontal>
  2 つの異なる時間スケールでメトリクスをログするには、メトリクスとあわせて batch や エポック などのインデックスをログします。たとえば、 ...
</Card>

<Card title="凡例付きの plot に複数の線を表示するにはどうすればよいですか？" href="/ja/support/models/articles/how-do-i-plot-multiple-lines-on-a-plot-w" arrow="true" horizontal>
  `wandb.plot.line_series()` を使用して、複数の線を持つカスタム チャートを作成します。線チャートを表示するには、project ページに移動します。凡例を追加するには ...
</Card>

<Card title="人が読みやすい run 名にプログラムからアクセスするにはどうすればよいですか？" href="/ja/support/models/articles/how-do-i-programmatically-access-the-hum" arrow="true" horizontal>
  `wandb.Run` の `.name` 属性にアクセスするには、次のコードを使用します。
</Card>

<Card title="W&B をオフラインで実行するにはどうすればよいですか？" href="/ja/support/models/articles/how-do-i-run-wandb-offline" arrow="true" horizontal>
  インターネットにアクセスできないマシンでトレーニングし、後で結果を W\&B にアップロードするには、次の step に従う: 1. 環境 ...
</Card>

<Card title="run 名を Run ID に設定するにはどうすればよいですか？" href="/ja/support/models/articles/how-do-i-set-the-run-name-to-the-run-id" arrow="true" horizontal>
  run 名を Run ID で上書きするには、次のコード スニペットを使用します。
</Card>

<Card title="run に名前を付けていません。run 名はどこから来るのですか？" href="/ja/support/models/articles/i-didnt-name-my-run-where-is-the-run-nam" arrow="true" horizontal>
  run に明示的な名前が付けられていない場合、W\&B は project 内で識別するためにランダムな名前を割り当てます。ランダムな名前の例は ...
</Card>

<Card title="InitStartError: wandb プロセス との通信エラー" href="/ja/support/models/articles/initstarterror-error-communicating-with-" arrow="true" horizontal>
  このエラーは、W\&B ライブラリがデータをサーバーに同期する プロセス を起動できないことを示しています。これを解決するには ...
</Card>

<Card title="メトリクスをオフラインで保存して、後で W&B に sync できますか？" href="/ja/support/models/articles/is-it-possible-to-save-metrics-offline-a" arrow="true" horizontal>
  デフォルトでは、`wandb.init` はメトリクスをリアルタイムでクラウドに sync する プロセス を開始します。インターネット接続がない環境で Experiments を実行する必要がある場合は ...
</Card>

<Card title="UI では run の状態が `crashed` ですが、マシン上ではまだ実行中です。データを取り戻すにはどうすればよいですか？" href="/ja/support/models/articles/my-runs-state-is-crashed-on-the-ui-but-i" arrow="true" horizontal>
  この状態は通常、トレーニング中にマシンとの接続が失われたことを意味します。データを復旧するには、`wandb sync PATH_ ...` を実行します。
</Card>

<Card title="`wandb.init` はトレーニング プロセス に対して何をしますか？" href="/ja/support/models/articles/what-does-wandbinit-do-to-my-training-pr" arrow="true" horizontal>
  トレーニング スクリプトで `wandb.init()` が実行されると、API 呼び出しによって W\&B サーバー上に Run オブジェクト が作成されます。新しい プロセス が開始され ...
</Card>

<Card title="クラス属性を `wandb.Run.log()` に渡すとどうなりますか？" href="/ja/support/models/articles/what-happens-if-i-pass-a-class-attribute" arrow="true" horizontal>
  クラス属性を `wandb.Run.log()` に渡すことは避けてください。属性はネットワーク呼び出しが実行される前に変更される可能性があります。st ...
</Card>

<Card title="W&B に何百万もの step をログするとどうなりますか？ブラウザーではどのように表示されますか？" href="/ja/support/models/articles/what-happens-when-i-log-millions-of-step" arrow="true" horizontal>
  送信される points の数は、UI でのグラフの読み込み時間に影響します。1,000 points を超える線については、バックエンドが ...
</Card>

<Card title="W&B を自分の project に統合したいものの、画像やメディアはまったくアップロードしたくない場合はどうすればよいですか？" href="/ja/support/models/articles/what-if-i-want-to-integrate-wb-into-my-p" arrow="true" horizontal>
  W\&B では、アップロードする file やデータを指定することで、スカラーのみをログする Projects もサポートしています。logg ... の例については
</Card>

<Card title="バッチごとにログするメトリクスと、エポックごとにのみログするメトリクスがある場合はどうすればよいですか？" href="/ja/support/models/articles/what-if-i-want-to-log-some-metrics-on-ba" arrow="true" horizontal>
  各バッチで特定のメトリクスをログし、プロットを標準化するには、目的の X-axis の値をメトリクスと一緒にログします。... では
</Card>

<Card title="wandb.init の mode の違いは何ですか？" href="/ja/support/models/articles/what-is-the-difference-between-wandbinit" arrow="true" horizontal>
  wandb.init を呼び出すと、クライアントが W\&B Server とどのように通信するかを制御する mode を選択できます。以下 ... です
</Card>

<Card title="ログした数よりもデータポイントが少なく表示されるのはなぜですか？" href="/ja/support/models/articles/why-am-i-seeing-fewer-data-points-than-i" arrow="true" horizontal>
  Step 以外の X-axis に対してメトリクスを可視化する場合、表示されるデータポイントが少なくなることがあります。メトリクスは ... でログする必要があります
</Card>

<Card title="CSV のメトリクス エクスポートで step が欠けるのはなぜですか？" href="/ja/support/models/articles/why-are-steps-missing-from-a-csv-metric-" arrow="true" horizontal>
  エクスポートの制限により、run history 全体を CSV または run.history API でエクスポートできないことがあります。... にアクセスするには
</Card>

<Card title="特定の文字を含むメトリクスを並べ替えたりフィルターしたりできないのはなぜですか？" href="/ja/support/models/articles/why-cant-i-sort-or-filter-metrics-with-c" arrow="true" horizontal>
  W\&B のメトリクス名は、UI で並べ替えやフィルターができるよう、GraphQL の命名規則に従う必要があります。有効なメトリクス ... は
</Card>

<Card title="W&B と一緒に Hydra を使用すると、プロセスが応答しなくなるのはなぜですか？" href="/ja/support/models/articles/process-hangs-when-using-hydra-with-wan" arrow="true" horizontal>
  このページでは、W\&B と併用して Hydra でプロセスを開始したときに発生する、プロセスが応答しなくなる問題の解決方法を説明します。I ...
</Card>

<Card title="分散トレーニングでトレーニングが停止するのはなぜですか？" href="/ja/support/models/articles/training-hangs-with-distributed-trainin" arrow="true" horizontal>
  この記事では、分散トレーニング フレームワークで W\&B を使用する際にトレーニングが停止する問題を解決し、Runs を st ... できるようにします
</Card>

<Card title="グラフに何も表示されないのはなぜですか？" href="/ja/support/models/articles/why-is-nothing-showing-up-in-my-graphs" arrow="true" horizontal>
  「No visualization data logged yet」というメッセージが表示される場合、スクリプトで最初の wandb.log 呼び出しがまだ実行されていません。これには ... が考えられます
</Card>

<Card title="同じメトリクスが複数回表示されるのはなぜですか？" href="/ja/support/models/articles/why-is-the-same-metric-appearing-more-th" arrow="true" horizontal>
  同じ Key で複数のデータ タイプをログすると、W\&B はそれらをデータベース内で分割します。その結果、... に複数のエントリが生じます
</Card>

<Card title="wandb はトレーニングを遅くしますか？" href="/ja/support/models/articles/will-wandb-slow-down-my-training" arrow="true" horizontal>
  通常の使用条件では、W\&B がトレーニングのパフォーマンスに与える影響は最小限です。通常の使用には、... の頻度でログすることが含まれます
</Card>
