Skip to main content

Documentation Index

Fetch the complete documentation index at: https://wb-21fd5541-john-wbdocs-2044-rename-serverless-products.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

노트북에서 다음과 같은 로그 메시지가 표시되지 않게 하려면:
INFO SenderThread:11484 [sender.py:finish():979]
오류만 표시하고 INFO 수준 로그 출력을 숨기려면 로그 수준을 logging.ERROR로 설정합니다.
import logging

logger = logging.getLogger("wandb")
logger.setLevel(logging.ERROR)
로그 출력을 크게 줄이려면 WANDB_QUIET 환경 변수를 True로 설정하세요. 로그 출력을 완전히 비활성화하려면 WANDB_SILENT 환경 변수를 True로 설정하세요. 노트북에서는 wandb.login을 실행하기 전에 WANDB_QUIET 또는 WANDB_SILENT를 설정하세요.
%env WANDB_SILENT=True

노트북 환경 변수