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

# setup()

export const GitHubLink = ({url}) => <a href={url} target="_blank" rel="noopener noreferrer" className="github-source-link">
    <svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
      <path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z" />
    </svg>
    GitHub source
  </a>;

<GitHubLink url="https://github.com/wandb/wandb/blob/main/wandb/sdk/wandb_setup.py" />

### <kbd>function</kbd> `setup`

```python theme={null}
setup(settings: 'Settings | None' = None) → _WandbSetup
```

현재 프로세스와 그 자식 프로세스에서 사용할 수 있도록 W\&B를 준비합니다.

일반적으로 `wandb.init()`에 의해 암시적으로 호출되므로 이 함수를 직접 호출하지 않아도 무방합니다.

멀티 프로세스 환경에서 wandb를 사용하는 경우, 자식 프로세스를 시작하기 전에 부모 프로세스에서 `wandb.setup()`을 호출하면 성능과 리소스 활용도를 높일 수 있습니다.

`wandb.setup()`은 `os.environ`을 수정하며, 자식 프로세스가 수정된 환경 변수를 상속받는 것이 중요합니다.

`wandb.teardown()`도 함께 참고하세요.

**Args:**

* `settings`: 전역적으로 적용할 설정입니다. 이후 호출되는 `wandb.init()`에 의해 이 설정이 덮어씌워질 수 있습니다.

**Example:**

```python theme={null}
import multiprocessing

import wandb


def run_experiment(params):
   with wandb.init(config=params):
        # 실험 실행
        pass


if __name__ == "__main__":
   # 백엔드 시작 및 전역 설정 지정
   wandb.setup(settings={"project": "my_project"})

   # 실험 파라미터 정의
   experiment_params = [
        {"learning_rate": 0.01, "epochs": 10},
        {"learning_rate": 0.001, "epochs": 20},
   ]

   # 각각 별도의 실험을 실행하는 여러 프로세스 시작
   processes = []
   for params in experiment_params:
        p = multiprocessing.Process(target=run_experiment, args=(params,))
        p.start()
        processes.append(p)

   # 모든 프로세스가 완료될 때까지 대기
   for p in processes:
        p.join()

   # 선택 사항: 명시적으로 백엔드 종료
   wandb.teardown()
```
