본문 바로가기

반치용/기타 및 저장74

[펌]3080 세팅 https://koos808.tistory.com/41 RTX 3080 & 3090 setting OS : Windows10 VGA : RTX 3090 VGA Driver : 456.43 cuda : CUDA 11.0 -> cuda_11.0.3_451.82_win10 cudnn : Cudnn 8.0.4 -> cudnn-11.0-windows-x64-v8.0.4.30 anaconda : Anaconda3-2020.11-Windows-x86_64 tf : pip install tf-nightly==2.5.0.dev20210110 [ 참고로 Tensorflow 개발자 버전인 tf-nightly가 아닌 Tensorflow 2.4.0 버전도 사용 가능합니다 ] 2021. 7. 22.
[저장]파이썬을 이용한 dicom(dcm) 비식별화 설명은 코드로 대체합니다. import os import pydicom # 파일리스트 추출 가장 짧은 코드 (현재폴더안의 파일/폴더명 추출) # 파일은 image 폴더 내에 넣어야 됨 rootdir = './image/' # 해당 폴더 내에 파일/폴더 리스팅 files = os.listdir(rootdir) # 처리 함수 def Fn_di_di(temp_img): # 메타 비식별화 (변경할 내용들 참고) temp_img.SeriesDate='Anonimized' temp_img.StudyDate='Anonimized' temp_img.ContentDate ='Anonimized' temp_img.AccessionNumber='Anonimized' temp_img.PatientName='Anonimized.. 2021. 3. 23.
[저장]선형회귀 한 방 정리 brunch.co.kr/@gimmesilver/38 2020. 11. 9.
[저장]pdf에 이미지 넣기 (파이썬) djshin2000.github.io/insert-image-to-pdf/ 2020. 11. 6.
[저장]Yolo 모바일 적용 관련 순서는 3 -> 2 -> 1 으로 진행 실행해보려고 저장. 1. 메인 글 https://junyoung-jamong.github.io/machine/learning/2019/01/25/Android%EC%97%90%EC%84%9C-%EB%82%B4-YOLO%EB%AA%A8%EB%8D%B8-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0.html Android에서 내가 학습한 YOLO 모델을 이용해 Object Detection 구현하기 TensorFlow를 기반으로 학습한 모델은 가중치 정보를 포함하는 파일로 변환하여 다양한 플랫폼에 적용할 수 있다. Darkflow 역시 TensorFlow를 기반으로하기 때문에 Darkflow를 이용해 학습한 모델을 여러 junyoung-jamong... 2020. 8. 31.
[저장]network analysis / community detection - Community Detection 설명 및 Louvain algorithm에 대한 설명 [ https://mons1220.tistory.com/129 ] - Louvain algorithm에 대한 최근 nature 논문 [ https://www.nature.com/articles/s41598-019-41695-z ] 2020. 7. 17.