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

> W&B Sweeps를 활용한 하이퍼파라미터 검색 및 모델 최적화

# Sweeps Overview

export const TryProductLink = ({url}) => <a href={url} target="_blank" rel="noopener noreferrer" className="github-source-link">
    <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" xmlns="http://www.w3.org/2000/svg">
      <line x1="4" y1="21" x2="4" y2="14"></line>
      <line x1="4" y1="10" x2="4" y2="3"></line>
      <line x1="12" y1="21" x2="12" y2="12"></line>
      <line x1="12" y1="8" x2="12" y2="3"></line>
      <line x1="20" y1="21" x2="20" y2="16"></line>
      <line x1="20" y1="12" x2="20" y2="3"></line>
      <circle cx="4" cy="12" r="2"></circle>
      <circle cx="12" cy="10" r="2"></circle>
      <circle cx="20" cy="14" r="2"></circle>
    </svg>
    W&amp;B에서 사용해 보기
  </a>;

export const ColabLink = ({url}) => <a href={url} target="_blank" rel="noopener noreferrer" className="colab-link">
    <svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
      <path d="M14.25.18l.9.2.73.26.59.3.45.32.34.34.25.34.16.33.1.3.04.26.02.2-.01.13V8.5l-.05.63-.13.55-.21.46-.26.38-.3.31-.33.25-.35.19-.35.14-.33.1-.3.07-.26.04-.21.02H8.77l-.69.05-.59.14-.5.22-.41.27-.33.32-.27.35-.2.36-.15.37-.1.35-.07.32-.04.27-.02.21v3.06H3.17l-.21-.03-.28-.07-.32-.12-.35-.18-.36-.26-.36-.36-.35-.46-.32-.59-.28-.73-.21-.88-.14-1.05-.05-1.23.06-1.22.16-1.04.24-.87.32-.71.36-.57.4-.44.42-.33.42-.24.4-.16.36-.1.32-.05.24-.01h.16l.06.01h8.16v-.83H6.18l-.01-2.75-.02-.37.05-.34.11-.31.17-.28.25-.26.31-.23.38-.2.44-.18.51-.15.58-.12.64-.1.71-.06.77-.04.84-.02 1.27.05zm-6.3 1.98l-.23.33-.08.41.08.41.23.34.33.22.41.09.41-.09.33-.22.23-.34.08-.41-.08-.41-.23-.33-.33-.22-.41-.09-.41.09zm13.09 3.95l.28.06.32.12.35.18.36.27.36.35.35.47.32.59.28.73.21.88.14 1.04.05 1.23-.06 1.23-.16 1.04-.24.86-.32.71-.36.57-.4.45-.42.33-.42.24-.4.16-.36.09-.32.05-.24.02-.16-.01h-8.22v.82h5.84l.01 2.76.02.36-.05.34-.11.31-.17.29-.25.25-.31.24-.38.2-.44.17-.51.15-.58.13-.64.09-.71.07-.77.04-.84.01-1.27-.04-1.07-.14-.9-.2-.73-.25-.59-.3-.45-.33-.34-.34-.25-.34-.16-.33-.1-.3-.04-.25-.02-.2.01-.13v-5.34l.05-.64.13-.54.21-.46.26-.38.3-.32.33-.24.35-.2.35-.14.33-.1.3-.06.26-.04.21-.02.13-.01h5.84l.69-.05.59-.14.5-.21.41-.28.33-.32.27-.35.2-.36.15-.36.1-.35.07-.32.04-.28.02-.21V6.07h2.09l.14.01.21.03zm-6.47 14.25l-.23.33-.08.41.08.41.23.33.33.23.41.08.41-.08.33-.23.23-.33.08-.41-.08-.41-.23-.33-.33-.23-.41-.08-.41.08z" />
    </svg>
    Colab에서 사용해 보기
  </a>;

<CardGroup cols={4}>
  <ColabLink url="https://colab.research.google.com/github/wandb/examples/blob/master/colabs/pytorch/Organizing_Hyperparameter_Sweeps_in_PyTorch_with_W%26B.ipynb" />

  <TryProductLink url="https://wandb.ai/stacey/deep-drive/workspace?workspace=user-lavanyashukla" />
</CardGroup>

W\&B Sweeps를 사용해 하이퍼파라미터 검색을 자동화하고, 풍부한 대화형 실험 추적 결과를 시각화하세요. 베이즈, grid search, random과 같은 널리 사용되는 검색 방법 중에서 선택해 하이퍼파라미터 공간을 탐색할 수 있습니다. 하나 이상의 머신에서 sweep을 확장하고 병렬로 실행하세요.

<Frame>
  <img src="https://mintcdn.com/wb-21fd5541-docs-weave-byob-note/i8yeI9Xq9Uj1zDoK/images/sweeps/intro_what_it_is.png?fit=max&auto=format&n=i8yeI9Xq9Uj1zDoK&q=85&s=d9b4713cf919028831807a431e0c0aeb" alt="하이퍼파라미터 튜닝 인사이트" width="1074" height="870" data-path="images/sweeps/intro_what_it_is.png" />
</Frame>

<div id="how-it-works">
  ## 작동 방식
</div>

다음 두 개의 [W\&B CLI](/ko/models/ref/cli/) 명령을 사용해 sweep를 생성합니다:

1. sweep를 초기화합니다.

```bash theme={null}
  wandb sweep --project <project-name> <path-to-config file>
```

2. sweep 에이전트를 시작합니다.

```bash theme={null}
  wandb agent <sweep-ID>
```

<Note>
  앞서 나온 code snippet과 이 페이지에 링크된 Colab은 W\&B CLI를 사용해 sweep을 초기화하고 생성하는 방법을 보여줍니다. Python SDK를 사용해 sweep을 설정, 초기화, 실행하는 방법은 [Sweeps 워크스루](/ko/models/sweeps/walkthrough/)를 참조하세요.
</Note>

<div id="how-to-get-started">
  ## 시작하기
</div>

사용 사례에 따라 W\&B Sweeps를 시작하는 데 도움이 되는 다음 리소스를 살펴보세요.

* sweep 설정을 정의하고, sweep을 초기화하고, sweep을 시작하는 데 사용하는 W\&B Python SDK 명령을 단계별로 설명한 [sweeps 워크스루](/ko/models/sweeps/walkthrough/)를 읽어보세요.
* 이 장을 살펴보며 다음 방법을 알아보세요.
  * [코드에 W\&B 추가](/ko/models/sweeps/add-w-and-b-to-your-code/)
  * [sweep 설정 정의](/ko/models/sweeps/define-sweep-configuration/)
  * [sweeps 초기화](/ko/models/sweeps/initialize-sweeps/)
  * [sweep agent 시작](/ko/models/sweeps/start-sweep-agents/)
  * [sweep 결과 시각화](/ko/models/sweeps/visualize-sweep-results/)
* W\&B Sweeps를 사용한 하이퍼파라미터 최적화를 다루는 [엄선된 Sweep 실험 목록](/ko/models/sweeps/useful-resources/)을 살펴보세요. 결과는 W\&B Reports에 저장됩니다.

단계별 비디오는 다음을 참조하세요. [Tune Hyperparameters Easily with W\&B Sweeps](https://www.youtube.com/watch?v=9zrmUIlScdY\&ab_channel=Weights%26Biases).

<div id="notebook-examples">
  ### 노트북 예제
</div>

다음 노트북 예제에서는 다양한 프레임워크와 활용 사례에서 하이퍼파라미터 최적화를 위해 W\&B Sweeps를 사용하는 방법을 알아볼 수 있습니다:

* [Sweeps를 사용한 하이퍼파라미터 최적화](https://colab.research.google.com/github/wandb/examples/blob/master/colabs/tensorflow/Hyperparameter_Optimization_in_TensorFlow_using_W\&B_Sweeps.ipynb)
* [XGBoost에서 W\&B Sweeps 사용하기](https://colab.research.google.com/github/wandb/examples/blob/master/colabs/boosting/Using_W\&B_Sweeps_with_XGBoost.ipynb)
