시작은 미약하였으나 , 그 끝은 창대하리라

데이스쿨 스터디 - 전력 사용량 예측 [1] 본문

Study 공부/데이스쿨 (전력사용량(시계열) 우승자코드 분석)

데이스쿨 스터디 - 전력 사용량 예측 [1]

애플파ol 2023. 10. 1. 20:31

참여이유 : 심플하게 말해서 나에 대해 객관화를 하고 싶어 스터디에 들어갔고, 나보다 잘하는 사람들에게 배우고 싶어서 참여했다.

                 또한 알고 있는 개념들도 많이 있지만 예전에 보았을때와 지금 다시 보았을때 느낌은 다르기 때문에 느껴보고 싶었다. 

주관 : https://dacon.io/competitions/official/236162/overview/description

 

[데이스쿨 스터디 1기] 전력사용량 예측 - DACON

분석시각화 대회 코드 공유 게시물은 내용 확인 후 좋아요(투표) 가능합니다.

dacon.io

 

 

def seed_everything(seed: int):
    import random, os
    import numpy as np
    import torch
    
    random.seed(seed)
    os.environ['PYTHONHASHSEED'] = str(seed)
    np.random.seed(seed)
    torch.manual_seed(seed)
    torch.cuda.manual_seed(seed)
    torch.backends.cudnn.deterministic = True
    torch.backends.cudnn.benchmark = True
    
seed_everything(42)

Comments