Sam
새 문서: == 개요 == === '''GPU 세팅''' === <syntaxhighlight lang="python"> if torch.cuda.is_available(): DEVICE = torch.device('cuda') else: DEVICE = torch.device('cpu') </syntaxh...
11:20
+1,045