-
Notifications
You must be signed in to change notification settings - Fork 14
Ja v3 refresh #1228
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: translation-refresh
Are you sure you want to change the base?
Ja v3 refresh #1228
Conversation
Deploying docs with
|
Latest commit: |
8abe9ec
|
Status: | ✅ Deploy successful! |
Preview URL: | https://eb2ef1f6.docodile.pages.dev |
Branch Preview URL: | https://ja-v3-refresh.docodile.pages.dev |
Edit: Fixed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving but waiting for guidance on whether to proceed; my suggestion is we wait for our resident Japanese speakers to sanity check.
7. Organize runs, embed and automate visualizations, describe your findings, and share updates with collaborators with [Reports]({{< relref path="/guides/core/reports/" lang="ja" >}}). | ||
1. W&B の基本的な計算単位である [runs]({{< relref path="/guides/models/track/runs/" lang="ja" >}}) について学びます。 | ||
2. [Experiments]({{< relref path="/guides/models/track/" lang="ja" >}}) を使用して、機械学習の実験を作成および追跡します。 | ||
3. [Artifacts]({{< relref path="/guides/core/artifacts/" lang="ja" >}}) を使用して、データセット と モデル の バージョン管理を行うための、W&B の柔軟で軽量な構成要素を見つけます。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
modify to "Artifacts を使用し、データやモデルのバージョン管理をシンプルかつ効率的に行います。"
3. [Artifacts]({{< relref path="/guides/core/artifacts/" lang="ja" >}}) を使用して、データセット と モデル の バージョン管理を行うための、W&B の柔軟で軽量な構成要素を見つけます。 | ||
4. [Sweeps]({{< relref path="/guides/models/sweeps/" lang="ja" >}}) を使用して、ハイパーパラメーター 探索を自動化し、可能なモデルの空間を探索します。 | ||
5. [Registry]({{< relref path="/guides/core/registry/" lang="ja" >}}) を使用して、トレーニング から プロダクション までの モデル ライフサイクルを管理します。 | ||
6. [Data Visualization]({{< relref path="/guides/models/tables/" lang="ja" >}}) ガイドで、モデル バージョン全体の予測を可視化します。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
modify to
データビジュアライゼーションガイドで、モデルのバージョンごとの予測結果を比較・可視化して理解を深めましょう。
4. [Sweeps]({{< relref path="/guides/models/sweeps/" lang="ja" >}}) を使用して、ハイパーパラメーター 探索を自動化し、可能なモデルの空間を探索します。 | ||
5. [Registry]({{< relref path="/guides/core/registry/" lang="ja" >}}) を使用して、トレーニング から プロダクション までの モデル ライフサイクルを管理します。 | ||
6. [Data Visualization]({{< relref path="/guides/models/tables/" lang="ja" >}}) ガイドで、モデル バージョン全体の予測を可視化します。 | ||
7. [Reports]({{< relref path="/guides/core/reports/" lang="ja" >}}) を使用して、runs の整理、可視化の埋め込みと自動化、発見事項の記述、および コラボレーター との更新の共有を行います。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reportsでランを整理し、ビジュアライゼーションを埋め込み、自分の知見を記述・共有:チームとのコラボレーションや情報共有を効率的に行います。
weight: 1 | ||
--- | ||
|
||
Use the W&B Python SDK to track machine learning experiments. You can then review the results in an interactive dashboard or export your data to Python for programmatic access with the [W&B Public API]({{< relref path="/ref/python/public-api/" lang="ja" >}}). | ||
W&B Python SDK を使用して、 機械学習 の 実験 を追跡します。次に、インタラクティブな ダッシュボード で 結果 を確認するか、[W&B Public API]({{< relref path="/ref/python/public-api/" lang="ja" >}}) でプログラムから アクセス できるように データ を Python にエクスポートできます。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Too many spaces
@@ -54,10 +54,10 @@ with wandb.init( | |||
... | |||
``` | |||
|
|||
For more information on how to configure an experiment, see [Configure Experiments]({{< relref path="./config.md" lang="ja" >}}). | |||
実験 の構成方法の詳細については、[実験 の構成]({{< relref path="./config.md" lang="ja" >}}) を参照してください。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
実験の設定方法の詳細については、[実験の設定]({{< relref path="./config.md" lang="ja" >}}) を参照してください。
### Log metrics inside your training loop | ||
Call [`run.log()`]({{< relref path="/ref/python/log.md" lang="ja" >}}) to log metrics about each training step such as accuracy and loss. | ||
### トレーニング ループ 内で メトリクス を ログ 記録 | ||
[`run.log()`]({{< relref path="/ref/python/log.md" lang="ja" >}}) を呼び出して、精度や損失など、各トレーニング ステップ に関する メトリクス を ログ 記録します。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[run.log()
]({{< relref path="/ref/python/log.md" lang="ja" >}}) を呼び出して、精度や損失など、各トレーニング ステップ に関する メトリクス を ログします。
@@ -107,19 +106,18 @@ with wandb.init( | |||
run.log_artifact("path_to_model.onnx", name="trained-model", type="model") | |||
``` | |||
|
|||
## Next steps: Visualize your experiment | |||
Use the W&B Dashboard as a central place to organize and visualize results from your machine learning models. With just a few clicks, construct rich, interactive charts like [parallel coordinates plots]({{< relref path="/guides/models/app/features/panels/parallel-coordinates.md" lang="ja" >}}),[ parameter importance analyzes]({{< relref path="/guides/models/app/features/panels/parameter-importance.md" lang="ja" >}}), and [more]({{< relref path="/guides/models/app/features/panels/" lang="ja" >}}). | |||
## 次の ステップ : 実験 を視覚化する |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
次の ステップ : 実験 を可視化する
|
||
{{% alert %}} | ||
The URL that your terminal prints directs you to the project where W&B stores your artifact. | ||
ターミナル に表示される URL は、W&B が artifact を保存する プロジェクト に移動します。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ターミナルに表示されるURLは、W&Bがアーティファクトを保存しているプロジェクトページへのリンクです。
|
||
If there is a conflict, W&B displays the highest level of permissions next to the name of the user. | ||
競合がある場合、W&B は ユーザー の名前の横に最高の権限レベルを表示します。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
権限が重なった場合、W&B はユーザー名の横に一番強い権限を表示します。
Gemini Flash 2.0 translation