Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Help us improve these docs. Take our quick survey.
with wandb.init() as run: # 個々のメトリクスをログする metric_a = run.summary.get("metric_a", 0.5) metric_b = run.summary.get("metric_b", 0.7) # ... 必要に応じて他のメトリクスをログする metric_n = run.summary.get("metric_n", 0.9) # メトリクスを重みで結合する # 最適化の目標に応じて重みを調整する # 例えば、metric_a と metric_n をより重視する場合: metric_combined = 0.3 * metric_a + 0.2 * metric_b + ... + 1.5 * metric_n run.log({"metric_combined": metric_combined})
metric: name: metric_combined goal: minimize
Was this page helpful?