본문 바로가기

Python

For문을 이용한 Dictionary의 key, item 접근

반응형
# method 1
for key, value in batch.items():
    if (exp_dim): batch[key] = batch[key].unsqueeze(0).cuda()
    else: batch[key] = batch[key].cuda()
    
# method 2
for _, (key, value) in enumerate(batch.items()):
    if (exp_dim): batch[key] = batch[key].unsqueeze(0).cuda()
    else: batch[key] = batch[key].cuda()

 

'Python' 카테고리의 다른 글

Pandas 명령어 모음  (0) 2023.04.19
python에서 evaluate과 tqdm 같이 사용하기  (0) 2023.04.12
[Anaconda] Conda env clone  (0) 2019.08.30
numpy array with increasing integer element  (0) 2018.11.22
generate a sequence of random int in range  (0) 2018.10.30