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

# Weights & Biases ドキュメント

> すべての Weights & Biases プロダクトのドキュメントを参照できます

export const ProductCard = ({title, iconSrc, href, subtitle, children, className = ''}) => {
  const handleCardClick = e => {
    let target = e.target;
    while (target && target !== e.currentTarget) {
      if (target.tagName === 'A') {
        return;
      }
      target = target.parentElement;
    }
    if (href) {
      window.location.href = href;
    }
  };
  return <div className="group flex overflow-hidden rounded-lg border border-gray-200 dark:border-gray-800 hover:shadow-md transition-all p-6" onClick={handleCardClick} style={{
    cursor: href ? 'pointer' : 'default'
  }}>
      {}
      {iconSrc && <div className="flex-shrink-0 mr-4" style={{
    marginTop: '-12px'
  }}>
          <img src={iconSrc} alt={title} width="60" height="60" className="w-[60px] h-[60px]" />
        </div>}
      
      {}
      <div className="flex-1">
        <h2 className="text-xl font-normal mb-2" style={{
    fontFamily: '"Source Serif 4", serif'
  }}>
          {title}
        </h2>
        {subtitle && <h3 className="text-base font-semibold mb-3 text-gray-700 dark:text-gray-300">
            {subtitle}
          </h3>}
        <div className="text-sm text-gray-600 dark:text-gray-400 leading-relaxed">
          {children}
        </div>
      </div>
    </div>;
};

export const HomeWrapper = ({children, padding = "0"}) => {
  return <div className={padding}>{children}</div>;
};

export const Banner = ({title, background, children, home}) => {
  useEffect(() => {
    if (home) {
      const header = document.querySelector("div#content-area > header#header");
      if (header) {
        header.style.display = "none";
      }
      const mdxContent = document.querySelector("div.mdx-content");
      if (mdxContent) {
        mdxContent.style.marginTop = "0";
      }
    }
    return () => {
      const header = document.querySelector("div#content-area > header#header");
      if (header) {
        header.style.display = "";
      }
      const mdxContent = document.querySelector("div.mdx-content");
      if (mdxContent) {
        mdxContent.style.marginTop = "";
      }
    };
  }, [home]);
  return <div className="relative w-full min-h-[200px] bg-gray-900 bg-cover bg-center bg-no-repeat rounded-lg overflow-hidden" style={{
    backgroundImage: `url('${background}')`
  }}>
      <div className="absolute inset-0 bg-black bg-opacity-40"></div>
      <div className="relative z-10 flex flex-col justify-center h-full px-8 py-12 text-white">
        <h2 className="font-serif text-2xl text-white font-normal mb-4 leading-tight mt-4">{title}</h2>
        <div className="text-gray-200 leading-relaxed">{children}</div>
      </div>
    </div>;
};

<HomeWrapper>
  <div className="grid grid-cols-1 md:grid-cols-2 gap-4">
    <ProductCard title="W&B Models" iconSrc="icons/cropped-models.svg" href="/ja/models" subtitle="AI モデルを開発">
      W\&B Models を使用して、AI モデル開発を管理します。機能には、トレーニング、ファインチューニング、レポート、ハイパーパラメーター Sweeps の自動化、モデルレジストリを使ったバージョン管理と再現性の確保が含まれます。

      <br />

      <br />

      • <a href="/ja/models">概要</a><br />
      • <a href="/ja/models/quickstart">クイックスタート</a><br />
      • <a href="https://www.youtube.com/watch?v=tHAFujRhZLA">YouTube チュートリアル</a><br />
    </ProductCard>

    <ProductCard title="W&B Weave" iconSrc="icons/cropped-weave.svg" href="/ja/weave" subtitle="アプリで AI モデルを活用">
      W\&B Weave を使用して、コード内の AI モデルを管理します。機能には、トレース、出力の評価、コスト見積もりに加え、さまざまな大規模言語モデル (LLM) や設定を比較できるホスト型の推論サービスとプレイグラウンドが含まれます。

      <br />

      <br />

      • <a href="/ja/weave">概要</a><br />
      • <a href="/ja/weave/quickstart">クイックスタート</a><br />
      • <a href="https://www.youtube.com/watch?v=IQcGGNLN3zo">YouTube デモ</a><br />
    </ProductCard>

    <ProductCard title="W&B Inference" iconSrc="icons/cropped-inference.svg" href="/ja/inference" subtitle="基盤モデルにアクセス">
      W\&B Inference を使用して、OpenAI 互換 API 経由で主要なオープンソースの基盤モデルにアクセスします。機能には、複数のモデルオプション、使用状況のトラッキング、トレースと評価のための Weave とのインテグレーションが含まれます。

      <br />

      <br />

      • <a href="/ja/inference">概要</a><br />
      • <a href="https://wandb.ai/inference">プレイグラウンドで試す</a>
    </ProductCard>

    <ProductCard title="W&B Training" iconSrc="icons/cropped-training.svg" href="/ja/training" subtitle="モデルを事後トレーニング">
      現在パブリックプレビュー中の W\&B Training を使用すると、サーバーレスの強化学習 (RL) で大規模言語モデルを事後トレーニングできます。機能には、完全マネージドの GPU インフラストラクチャー、ART および RULER とのインテグレーション、マルチターンのエージェント型タスク向けの自動スケーリングが含まれます。

      <br />

      <br />

      • <a href="/ja/training">概要</a><br />
      • <a href="/ja/training/prerequisites">クイックスタート</a><br />
    </ProductCard>
  </div>
</HomeWrapper>
