> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-docs-1917.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, iconSize = 24, 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={`product-card group flex flex-col rounded-lg p-6 transition-all ${className}`} onClick={handleCardClick} style={{
    cursor: href ? 'pointer' : 'default'
  }}>
      {iconSrc && <span className="product-card-icon" aria-hidden="true" style={{
    display: 'block',
    width: `${iconSize}px`,
    height: `${iconSize}px`,
    backgroundColor: '#D4870D',
    WebkitMaskImage: `url(${iconSrc})`,
    maskImage: `url(${iconSrc})`,
    WebkitMaskRepeat: 'no-repeat',
    maskRepeat: 'no-repeat',
    WebkitMaskSize: 'contain',
    maskSize: 'contain',
    WebkitMaskPosition: 'left center',
    maskPosition: 'left center',
    marginBottom: '8px',
    lineHeight: 1
  }} />}

      <h2 className="product-card-title">
        {title}
      </h2>
      {subtitle && <h3 className="product-card-subtitle">
          {subtitle}
        </h3>}
      <div className="product-card-body leading-relaxed">
        {children}
      </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="banner-title font-serif text-2xl text-white font-normal mb-4 leading-tight mt-4">{title}</h2>
        <div className="banner-body text-gray-200 leading-relaxed">{children}</div>
      </div>
    </div>;
};

<HomeWrapper>
  ## Weights & Biases

  実験管理、評価、オブザーバビリティのためのW\&Bプラットフォームで、AIモデルを開発し、LLMアプリケーションを本番展開できます。

  <div className="grid grid-cols-1 md:grid-cols-2 gap-4" style={{ marginTop: '2rem' }}>
    <ProductCard title="W&B Models" iconSrc="icons/cropped-models.svg" href="/ja/models" subtitle="AIモデルを開発">
      実験管理、ファインチューニング、レポート、ハイパーパラメーター sweep、バージョン管理と再現性のためのモデル Registry を使用して、AIモデル開発を管理します。

      <br />

      <br />

      • <a href="/ja/models">概要</a><br />
      • <a href="/ja/models/quickstart">クイックスタート</a><br />
    </ProductCard>

    <ProductCard title="W&B Weave" iconSrc="icons/cropped-weave.svg" href="/ja/weave" subtitle="アプリでAIモデルを使用">
      トレース、出力の評価、コスト見積もり、さらに大規模言語モデル (LLM) とSettingsを比較するためのPlaygroundを使って、コード内のAIモデルを管理します。

      <br />

      <br />

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

  ## CoreWeave による提供

  CoreWeave のインフラストラクチャー上で稼働するマネージドサービスです。

  <div className="grid grid-cols-1 md:grid-cols-3 gap-4" style={{ marginTop: '2rem' }}>
    <ProductCard title="Serverless Inference" iconSrc="icons/cropped-inference.svg" href="/ja/inference" subtitle="基盤モデルにアクセス">
      OpenAI互換APIを通じて主要なオープンソースの基盤モデルにアクセスでき、Usage のトラッキングと、トレースおよび評価のためのWeaveインテグレーションを利用できます。

      <br />

      <br />

      • <a href="/ja/inference">概要</a><br />
      • <a href="https://wandb.ai/inference">Playgroundで試す</a>
    </ProductCard>

    <ProductCard title="Serverless RL" iconSrc="icons/cropped-training.svg" href="/ja/serverless-rl" subtitle="モデルをポストトレーニング">
      現在パブリックプレビュー中です。サーバーレス強化学習、マネージドGPUインフラストラクチャー、ARTおよびRULERインテグレーション、マルチターンのエージェントタスク向けのオートスケーリングを使用して、LLMをポストトレーニングできます。

      <br />

      <br />

      • <a href="/ja/serverless-rl">概要</a><br />
      • <a href="/ja/serverless-rl/prerequisites">クイックスタート</a><br />
    </ProductCard>

    <ProductCard title="Serverless Sandboxes" iconSrc="icons/cropped-sdk.svg" href="/ja/sandboxes" subtitle="分離された環境でコードを実行">
      現在、招待制のプライベートプレビュー中です。ライフサイクル管理、シークレットの処理、file へのアクセス、Python SDKを備えた分離コンピュート環境でコードを実行できます。

      <br />

      <br />

      • <a href="/ja/sandboxes">概要</a><br />
      • <a href="/ja/sandboxes/create-sandbox">クイックスタート</a><br />
    </ProductCard>
  </div>
</HomeWrapper>
