> ## 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.

# 지원팀

export const HelpQuestionForm = () => {
  const [value, setValue] = useState("");
  useEffect(() => {
    const params = new URLSearchParams(window.location.search);
    if (!params.has("assistant")) {
      const url = new URL(window.location.href);
      url.searchParams.set("assistant", "");
      window.location.href = url.toString();
      return;
    }
    setValue(params.get("assistant") || "");
  }, []);
  const handleSubmit = e => {
    e.preventDefault();
    const trimmed = value.trim();
    if (!trimmed) return;
    const url = new URL(window.location.href);
    url.searchParams.set("assistant", trimmed);
    window.location.href = url.toString();
  };
  return <form onSubmit={handleSubmit} className="mb-8 mt-8">
      <div className="flex gap-2 flex-wrap">
        <input id="help-question" type="text" value={value} onChange={e => setValue(e.target.value)} placeholder="Ask your question..." className="flex-1 min-w-[200px] px-4 py-2 rounded-lg border border-zinc-950/20 dark:border-white/20 bg-white dark:bg-zinc-950 text-zinc-950 dark:text-white placeholder-zinc-500 focus:outline-none focus:ring-2 focus:ring-primary-500" aria-label="Ask your question" />
        <button type="submit" className="inline-flex items-center gap-2 whitespace-nowrap px-4 py-2 rounded-lg bg-primary text-white font-medium hover:opacity-90 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:ring-offset-2">
          <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" class="size-4 shrink-0 text-gray-700 group-hover/ai:text-gray-800 dark:text-gray-400 dark:group-hover/ai:text-gray-200"><g fill="white"><path d="M5.658,2.99l-1.263-.421-.421-1.263c-.137-.408-.812-.408-.949,0l-.421,1.263-1.263,.421c-.204,.068-.342,.259-.342,.474s.138,.406,.342,.474l1.263,.421,.421,1.263c.068,.204,.26,.342,.475,.342s.406-.138,.475-.342l.421-1.263,1.263-.421c.204-.068,.342-.259,.342-.474s-.138-.406-.342-.474Z" fill="white" data-stroke="none" stroke="none"></path><polygon points="9.5 2.75 11.412 7.587 16.25 9.5 11.412 11.413 9.5 16.25 7.587 11.413 2.75 9.5 7.587 7.587 9.5 2.75" fill="none" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></polygon></g></svg>
          Ask AI
        </button>
      </div>
    </form>;
};

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>;
};

<Banner title="어떤 도움이 필요하신가요?" background="/images/support/support_banner.png">
  지원팀 문서, 제품 문서,<br />
  그리고 W\&B 커뮤니티에서 도움말을 검색해 보세요.
</Banner>

<HelpQuestionForm />

<div id="browse-support-articles-by-product">
  ## 제품별 지원팀 문서 찾아보기
</div>

<CardGroup cols={3}>
  <Card title="W&B Models" href="/ko/support/models" arrow="true" icon="https://mintcdn.com/wb-21fd5541-wbdocs-1882/g98EkbyZbbkyMi8o/icons/cropped-models.svg?fit=max&auto=format&n=g98EkbyZbbkyMi8o&q=85&s=9fb86f175c2c39d6a1c8b58f395a1431" width="38" height="39" data-path="icons/cropped-models.svg">
    문서 190개 · 태그 33개
  </Card>

  <Card title="W&B Weave" href="/ko/support/weave" arrow="true" icon="https://mintcdn.com/wb-21fd5541-wbdocs-1882/g98EkbyZbbkyMi8o/icons/cropped-weave.svg?fit=max&auto=format&n=g98EkbyZbbkyMi8o&q=85&s=000128b16948c277f49ebb15369892fe" width="31" height="36" data-path="icons/cropped-weave.svg">
    문서 16개 · 태그 8개
  </Card>

  <Card title="W&B Inference" href="/ko/support/inference" arrow="true" icon="https://mintcdn.com/wb-21fd5541-wbdocs-1882/g98EkbyZbbkyMi8o/icons/cropped-inference.svg?fit=max&auto=format&n=g98EkbyZbbkyMi8o&q=85&s=4e5b355045eeafb3c67c0d1064cbd2e6" width="42" height="35" data-path="icons/cropped-inference.svg">
    문서 7개 · 태그 5개
  </Card>
</CardGroup>

<div id="featured-articles">
  ## 추천 문서
</div>

<div id="wb-models">
  ### W\&B Models
</div>

<Card title="트레이닝 코드에서 run 이름을 어떻게 설정하나요?" href="/ko/support/models/articles/how-can-i-configure-the-name-of-the-run-" arrow="true" horizontal>
  트레이닝 스크립트 시작 부분에서 실험 이름을 지정해 wandb.init를 호출하세요. 예: wandb.init(name="my\_aweso ...

  <Badge stroke shape="pill" color="orange" size="md">[Experiments](/ko/support/models/tags/experiments)</Badge>
</Card>

<Card title="Sweeps에서 맞춤형 CLI command를 어떻게 사용하나요?" href="/ko/support/models/articles/how-do-i-use-custom-cli-commands-with-sw" arrow="true" horizontal>
  트레이닝 설정이 command-line argument를 전달하는 경우, 맞춤형 CLI command와 함께 W\&B Sweeps를 사용할 수 있습니다. 예시에서는  ...

  <Badge stroke shape="pill" color="orange" size="md">[Sweeps](/ko/support/models/tags/sweeps)</Badge>
</Card>

<Card title="메트릭을 오프라인으로 저장하고 나중에 W&B와 sync할 수 있나요?" href="/ko/support/models/articles/is-it-possible-to-save-metrics-offline-a" arrow="true" horizontal>
  기본적으로 wandb.init는 메트릭을 클라우드에 실시간으로 sync하는 프로세스를 시작합니다. 오프라인으로 사용하려면 두 개의 environme ...

  <Badge stroke shape="pill" color="orange" size="md">[Experiments](/ko/support/models/tags/experiments)</Badge> <Badge stroke shape="pill" color="orange" size="md">[환경 변수](/ko/support/models/tags/environment-variables)</Badge> <Badge stroke shape="pill" color="orange" size="md">[메트릭](/ko/support/models/tags/metrics)</Badge>
</Card>

<Card title="wandb.init는 트레이닝 프로세스에서 무엇을 하나요?" href="/ko/support/models/articles/what-does-wandbinit-do-to-my-training-pr" arrow="true" horizontal>
  트레이닝 스크립트에서 wandb.init()가 실행되면 API call이 서버에 run 객체를 생성합니다. 새 프로세스가 시작되어 st ...

  <Badge stroke shape="pill" color="orange" size="md">[환경 변수](/ko/support/models/tags/environment-variables)</Badge> <Badge stroke shape="pill" color="orange" size="md">[Experiments](/ko/support/models/tags/experiments)</Badge>
</Card>

<Card title="원하는 내용을 아직 찾지 못하셨나요?" href="mailto:support@wandb.com" icon="circle-info">
  지원팀에 문의하기
</Card>
