You are using a CUDA device ('NVIDIA RTX A6000') that has Tensor Cores. To properly utilize them, you should set `torch.set_float32_matmul_precision('medium' | 'high')` which will trade-off precision for performance. For more details, read https://pytorch.org/docs/stable/generated/torch.set_float32_matmul_precision.html#torch.set_float32_matmul_precision
Initializing distributed: GLOBAL_RANK: 0, MEMBER: 1/4
대충 너 GPU 환경 좋은데 왜 설정 높게 안해놨냐고 따지는 내용이다.
import torch
torch.set_float32_matmul_precision('high')
처음에 이렇게 시작하고나면 해당 경고문은 해결된다.
그외 각종 지저분한 tensorflow 경고문 해결하는 방법은 아래와 같이 숨기기...가 최선인 것으로 보인다.
import os
import tensorflow as tf
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' # TensorFlow 경고 숨기기
tf.get_logger().setLevel('ERROR') # 로그 레벨 조정
728x90
반응형
'TechStudy > TimeSeries' 카테고리의 다른 글
이동 평균 분해법(moving-average-based season-trend decomposition) (0) | 2024.11.25 |
---|---|
TimeMixer (ICIR2024) (0) | 2024.11.20 |
Recurrent Neural Networks for Multivariate Time Series With Missing Values(2016) (0) | 2024.10.16 |
Time Series Forecasting With Deep Learning A Survey(2020) (0) | 2024.10.15 |
시계열 Foundation 모델 최신 연구 동향 (LG 블로그) (0) | 2024.10.15 |