728x90 반응형 SMALL 전체 글161 Reinstall missing kernel modules sudo apt-get install --reinstall linux-headers-$(uname -r) sudo apt-get update && sudo apt-get upgrade CUDA와 CUDNN 설치후 동작 테스트 할때, GPU device를 찾지 못한다는 에러가 나는 경우, 커널이 망가져있을 수 있다. 2023. 6. 27. nvrtc: error: invalid value for --gpu-architecture (-arch) [error] nvrtc: error: invalid value for --gpu-architecture (-arch) [solution] 1. detectron2/detectron2/engine/train_loop.py line 491 : 주석처리 #with autocast(dtype=self.precision): 2. detectron2/detectron2/engine/train_loop.py line 435~ : False를 True로 변경 class AMPTrainer(SimpleTrainer): def __init__( ... ... zero_grad_before_foward = True ): 2023. 6. 27. [pytorch] AttributeError: module 'distutils' has no attribute 'version' [Solution] pip install setuptools==59.5.0 2023. 6. 26. Nvidia driver, Cuda remove #Nvidia remove sudo apt-get -y remove --purge '^nvidia-.*' #Cuda remove sudo apt-get -y --purge remove 'cuda*' sudo apt-get -y autoremove --purge 'cuda*' #folder remove sudo rm -rf /usr/local/cuda* 2023. 6. 22. [Mask DINO] Train with Custom Dataset [Error] 1. File "/home/.../detectron2/detectron2/engine/train_loop.py" TypeError: __init__() got an unexpected keyword argument 'dtype' 1- solution /detectron2/detectron2/engine/train_loop.py 에서 with autocast(dtype=self.precision): 위 문장 주석처리 2. UnboundLocalError: local variable 'losses' referenced before assignment 2-solution /detectron2/detectron2/engine/train_loop.py 에서 zero_grad_before_forwar.. 2023. 6. 21. [Mask DINO] Environment Setting & Dataloader with Custom Dataset https://github.com/IDEA-Research/MaskDINO python=3.8, pytorch=1.9.0, cuda=11.8 [Error] ####################################################################################### "ImportError: cannot import name 'cached_property' from 'functools' (/opt/conda/lib/python3.7/functools.py)" python 3.8 이상의 버전 필요 ####################################################################################### [Envi.. 2023. 6. 20. [논문리뷰]Mask DINO : Towards A Unified Transformer-based Framework for Object Detection and Segmentation (작성중) https://arxiv.org/pdf/2206.02777.pdf 0. Abstract Mask DINO는 Object Detection과 Segmentation을 통합하는 framework다. 기존 DINO에 segmentation task를 할수 있게 한 모델이다. set of binary mask 형태로 예측하기 위해 high-resolution pixel embedding를 dotproduct(스칼라곱)하는 DINO의 query embeddings를 사용한다. DINO에서 몇몇 key components들은 공유되는 architecture와 train process를 통해서 Segmentation으로 확장되었다. Mask DINO는 simple, efficient, scalable 세단어로 형용할.. 2023. 6. 20. 이하선암 방사선 치료 7~14회차 후기 7회차부터 슬슬 체력이 떨어지는게 조금씩 느껴졌음.. 그치만 난 굴하지 않지 방사선 째애애애식 근데 이상하게 두통이 사라지지 않고...메스껍고... 식욕이 많이 줄어드는 거 같더라...? 몸이 좀 많이 피곤해지고 몸살있는 것같은? 이틀밤 샌거 같은? 그런 느낌으로 몸이 무거워져서 피로해짐.... 평소에 빵도 잘 안먹는데 빵같은 간식이 너무 땡기고 매운맛이 좀 크게 느껴지게 되더라 김치찌개를 먹어도 매워.....자존심상해... 근데 최대 난제는 목요일이였음... 오랜만에 저녁 약속나가서 노는데 이상하게 너무 피곤한거임... 그냥 피곤한가보다~하고 집에와서 뻗었다가 밤이 다되서 씻으려고 치료부위를 만졌는데 머리카락이 손에 가득있더라 ....? 치료부위에 머리가 좀 빠질수도 있다고 했는데 벌써 빠질 줄이야.. 2023. 6. 19. Combo Loss https://arxiv.org/abs/1805.02798 Combo Loss: Handling Input and Output Imbalance in Multi-Organ Segmentation Simultaneous segmentation of multiple organs from different medical imaging modalities is a crucial task as it can be utilized for computer-aided diagnosis, computer-assisted surgery, and therapy planning. Thanks to the recent advances in deep learning, se arxiv.org Combo Loss는 거짓 긍정 또는 거.. 2023. 6. 14. 이전 1 ··· 11 12 13 14 15 16 17 18 다음 728x90 반응형 LIST