메인 콘텐츠로 건너뛰기
사용자 프로필 페이지로 이동하여 오른쪽 상단 모서리에 있는 사용자 아이콘을 선택하세요. 드롭다운 메뉴에서 Settings 를 선택합니다.

Profile

Profile 섹션에서는 계정 이름과 소속 기관을 관리하고 수정할 수 있습니다. 선택 사항으로 약력, 위치, 개인 또는 기관 웹사이트 링크를 추가하고 프로필 이미지를 업로드할 수 있습니다.

Edit your intro

소개(intro)를 편집하려면 프로필 상단에 있는 Edit 을 클릭하세요. 열리는 WYSIWYG 에디터는 Markdown 을 지원합니다.
  1. 라인을 편집하려면 해당 라인을 클릭하세요. 시간을 절약하려면 / 를 입력하고 목록에서 Markdown 을 선택할 수 있습니다.
  2. 항목의 드래그 핸들을 사용하여 이동하세요.
  3. 블록을 삭제하려면 드래그 핸들을 클릭한 다음 Delete 를 클릭하세요.
  4. 변경 사항을 저장하려면 Save 를 클릭하세요.

소셜 배지 추가하기

X의 @weights_biases 계정에 대한 팔로우 배지를 추가하려면, 배지 이미지를 가리키는 HTML <img> 태그와 함께 Markdown 스타일의 링크를 추가할 수 있습니다:
[![X: @weights_biases](https://img.shields.io/twitter/follow/weights_biases?style=social)](https://x.com/intent/follow?screen_name=weights_biases)
<img> 태그에서 width, height 또는 둘 다 지정할 수 있습니다. 하나만 지정하면 이미지의 비율이 유지됩니다.

Default team

하나 이상의 팀에 소속되어 있는 경우, Default team 섹션에서 run 또는 Weave trace가 팀을 지정하지 않을 때 사용할 기본 팀을 설정할 수 있습니다. 하나의 팀에만 소속되어 있는 경우 해당 팀이 기본값이 되며 이 섹션은 표시되지 않습니다. 계속하려면 탭을 선택하세요.
Default location to create new projects in 옆의 드롭다운을 클릭한 다음 기본 팀을 선택하세요.
자동화된 환경에서 스크립트를 실행할 때 기본 팀을 지정하려면 WANDB_ENTITY environment variable 을 사용하여 기본 위치를 지정할 수 있습니다.

Teams

Teams 섹션에는 귀하의 모든 Teams 가 나열됩니다.
  1. 팀 이름을 클릭하여 팀 페이지로 이동합니다.
  2. 추가 팀에 가입할 권한이 있는 경우, We found teams for you to join 옆의 View teams 를 클릭하세요.
  3. 선택 사항으로 Hide teams in public profile 을 활성화하세요.
팀을 생성하거나 관리하려면 Manage teams 를 참조하세요.

API keys

API Keys 섹션에서는 W&B 서비스 인증을 위한 개인 API 키 를 관리할 수 있습니다.

API 키 확인하기

API 키 테이블에는 다음이 표시됩니다:
  • Key ID: 식별에 사용되는 각 API 키 의 첫 부분
  • Name: 키를 생성할 때 입력한 설명이 포함된 이름
  • Created: 키가 생성된 시점
  • Last used: 가장 최근에 사용된 타임스탬프
보안을 위해 테이블에는 키 ID(키의 첫 부분)만 표시됩니다. 전체 보안 API 키 는 생성할 때 한 번만 표시됩니다.
API 키 목록을 검색하거나 필터링하려면 키 이름 또는 ID의 일부를 입력하세요.

새 API 키 생성하기

To create an API key, select the Personal API key or Service Account API key tab for details.
To create a personal API key owned by your user ID:
  1. Log in to W&B, click your user profile icon, then click User Settings.
  2. Click Create new API key.
  3. Provide a descriptive name for your API key.
  4. Click Create.
  5. Copy the displayed API key immediately and store it securely.
The full API key is only shown once at creation time. After you close the dialog, you cannot view the full API key again. Only the key ID (first part of the key) is visible in your settings. If you lose the full API key, you must create a new API key.
For secure storage options, see Store API keys securely.

API 키 삭제하기

API 키 를 삭제하여 엑세스 권한을 취소하려면:
  1. API 키 테이블에서 삭제하려는 키를 찾습니다.
  2. 키 옆의 삭제 버튼을 클릭합니다.
  3. 삭제를 확인합니다.
API 키 를 삭제하면 해당 키를 사용하는 모든 스크립트 또는 서비스의 엑세스 권한이 즉시 취소됩니다. 이전 키를 삭제하기 전에 모든 시스템이 새 키를 사용하도록 업데이트되었는지 확인하세요.

Store and handle API keys securely

API keys provide access to your W&B account and should be protected like passwords. Follow these best practices:

What to avoid

  • Never commit API keys to version control systems such as Git.
  • Do not store API keys in plain text configuration files.
  • Do not pass API keys on the command line, because they will be visible in the output of OS commands like ps.
  • Avoid sharing API keys through email, chat, or other unencrypted channels.
  • Do not hard-code API keys in your source code.
If an API key is exposed, delete the API key from your W&B account immediately and contact support or your AISE.

Environment variables

When using API keys in your code, pass them through environment variables:
export WANDB_API_KEY="your-api-key-here"
This approach keeps keys out of your source code and makes it easier to rotate them when needed.
Avoid setting the environment variable in line with the command, because it will be visible in the output of OS commands like ps:
# Avoid this pattern, which can expose the API key in process managers
export WANDB_API_KEY="your-api-key-here" ./my-script.sh

SDK version compatibility

New API keys are longer than legacy keys. When authenticating with older versions of the wandb or weave SDKs, you may encounter an API key length error. Solution: Update to a newer SDK version:
  • wandb SDK v0.22.3+
    pip install --upgrade wandb==0.22.3
    
  • weave SDK v0.52.17+
    pip install --upgrade weave==0.52.17
    
If you cannot upgrade the SDK immediately, set the API key using the WANDB_API_KEY environment variable as a workaround.

Beta features

Beta Features 섹션에서는 선택 사항으로 재미있는 애드온이나 개발 중인 신제품의 미리보기를 활성화할 수 있습니다. 활성화하려는 베타 기능 옆의 토글 스위치를 선택하세요.

Alerts

Runs 가 충돌하거나 종료될 때 알림을 받거나, wandb.Run.alert() 를 사용하여 커스텀 알림을 설정하세요. 이메일 또는 Slack을 통해 알림을 받을 수 있습니다. 알림을 받고 싶은 이벤트 유형 옆의 스위치를 토글하세요.
  • Runs finished: Weights and Biases run 이 성공적으로 종료되었는지 여부.
  • Run crashed: run 이 종료에 실패한 경우 알림.
알림을 설정하고 관리하는 방법에 대한 자세한 내용은 Send alerts with wandb.Run.alert() 를 참조하세요.

Personal GitHub integration

개인 GitHub 계정을 연결합니다. GitHub 계정을 연결하려면:
  1. Connect Github 버튼을 선택합니다. 그러면 OAuth(개방형 인증) 페이지로 리디렉션됩니다.
  2. Organization access 섹션에서 엑세스 권한을 부여할 조직을 선택합니다.
  3. Authorize wandb 를 선택합니다.

계정 삭제

계정을 삭제하려면 Delete Account 버튼을 선택하세요.
계정 삭제는 되돌릴 수 없습니다.

Storage

Storage 섹션에는 Weights and Biases 서버에서 사용 중인 계정의 총 메모리 사용량이 표시됩니다. 기본 스토리지 플랜은 100GB입니다. 스토리지 및 요금에 대한 자세한 내용은 Pricing 페이지를 참조하세요.