일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- pytorch zero to all
- 파이토치 김성훈 교수님 강의 정리
- 미디언 필터링
- 딥러닝
- tensorflow 예제
- pytorch
- c++
- 팀프로젝트
- 모두의 딥러닝 예제
- 파이토치 강의 정리
- 케라스 정리
- 딥러닝 스터디
- c++공부
- TensorFlow
- MFC 프로그래밍
- matlab 영상처리
- 영상처리
- 컴퓨터 비전
- 김성훈 교수님 PyTorch
- Pytorch Lecture
- 모두의 딥러닝
- 해리스 코너 검출
- c언어
- object detection
- c언어 정리
- 골빈해커
- C언어 공부
- 파이토치
- 딥러닝 공부
- 가우시안 필터링
Archives
- Today
- Total
ComputerVision Jack
Exception in thread Thread -3: 본문
반응형
Exception in thread Thread -3:
해당 오류는 Classification Task 진행하던 도중에 만나게 되었다.
pytorch lightning module 사용하여 Trainer 정의할 때, worker 설정과 관련한 오류로, worker 맞게 설정하거나 낮추면 해결 가능하다.
trainer = pl.Trainer(
max_epochs=cfg['epochs'],
logger=TensorBoardLogger(cfg['save_dir'], make_model_name(cfg)),
gpus=cfg['gpus'],
accelerator='ddp' if platform.system() != 'Windows' else None,
plugins=DDPPlugin() if platform.system() != 'Windows' else None,
callbacks=callbacks,
resume_from_checkpoint=ckpt,
**cfg['trainer_options'],
)
trainer.fit(model_module, data_module)
반응형
'Computer Vision > PyTorch Framework ISSUE' 카테고리의 다른 글
TypeError: conv2d() received an incalid combination of arguments (0) | 2022.03.30 |
---|
Comments