전체 글 13

[Pytorch] visdom 작동 오류

지난달(2020.08)까지 작동이 잘되던 visdom 이 작동되지 않음. 참고로, visdom은 페이스북에서 오픈소스로 공개한 시각화 도구임. visdom 은 웹 브라우저에 띄워서 사용할 수 있고 웹서버는 페이스북이 인수했던 FriendFeed가 만든 Tornado 를 사용하고 있음. 아래는 문제 해결 방법. 1) 작동하던 것이 갑자기 안되는 것은 버전 호환 문제 일 가능성이 높음. 2) 오류 내용으로 보면 tornado 이 언급되어 있음. 3) 현재 설치된 tornado 버전을 확인함. (확인 결과, 6.0.4 버전임) >> pip list 4) torado 를 다음과 같이 삭제함 >> pip uninstall tornado 5) 구버전 tornado 를 새로 설치 (downgrade) >> pip i..

카테고리 없음 2020.09.29

[RI/SRI]2017 방사성동위원소취급자일반면허시험/방사성동위원소취급자감독자면허시험 일정

2017 면허 시험 일정 RI (방사성동위원소취급자 일반면허시험)접수일정: 2017.02.20~2017.02.24필기시험: 2017.04.02 SRI(방사성동위원소취급자 감독자면허시험)접수일정: 2017.07.17~2017.07.21 필기시험: 2017.08.27 출처: 원자력관계 면허 및 국가자격시험 홈페이지 (http://license.kins.re.kr)

[엑셀오류해결]LoadTestExcelAddIn.vsto 에러 해결

엑셀 켤 때마다 LoadTestExcelAddIn.vsto 에러가 발생하였음.'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies\Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.vsto' 해 결 방 법 >> 엑셀 - 파일 - 옵션 - 추가 기능 - (관리) COM 추가 기능- 이동 - Load Test Report Add-in 제거 영문 : In Excel 2010 go to File>Options>Addins, select COM Add-ins and click GOIn the available add-ins list select 'Load Test Repo..

Learn by doing 2016.08.12

[영상평가] 20개의 intraoral digital system 의 영상 특성을 비교

Evaluation of image quality parameters of representative intraoral digital radiographic systems Hema Udupa, BDS, MS, Peter Mah, DMD, MS, Stephen B. Dove, DDS, MS, and William D. McDavid, PhD Oral Surg Oral Med Oral Pathol Oral Radiol 2013;116:774-783 목적: 20개의 intraoral digital system 의 영상 특성을 비교하는 것 항목: Gray scale, spatial resolution, contrast/detail detectability 1. Direct digital system- solid..

[MATLAB] Dicom Reading & Image Processing (매틀랩/왕초보/기초)

1. dicom 파일 2개 여는 방법 -> 2개 파일의 size 는 같아야함 (ex: 512*512)InputDicomA = dicomread('A.dcm'); InputDicomB = dicomread('B.dcm'); 2. B영상에서 A영상을 빼는 방법 -> matrix 연산과 동일함 OutputDicomC = InputDicomB- InputDicomA ; 3. 처리가 완료된 영상을 dicom 파일로 저장하는 방법dicomwrite(OutputDicomC, 'output.dcm'); 4. 정확한 영상 출력을 위해 각 영상의 최소/최대값을 확인 (생략해도 무방함) min_valueA = min(InputDicomA(:)); max_valueA = max(InputDicomA(:)); min_value..

[coursera] linear regression that is 1st learning algorithm

1st learning algorithm -> linear regression [review] supervised learning : given a "right answer" - classification problem : 0 or 1 discrete value - regression problem : "predict" real-valued output 1. linear regression with one variable "exponentiation" ? 거듭제곱, 누승법 ... Training set -> learning algorithm -> h (hypothesis) x -> h -> estimated value (y) : h maps from x's to y's 2. mathematical def..

[coursera] supervised & unsupervised learning

Machine Learning | Coursera 2016.05.17I. Introduction Machine learning is the field of study that gives computers the ability to learn without being explicitly programmed. 1. Supervised learning à regression or classification problem (what is right answer ?)- Classification à discrete valued output ( 0 or 1 ) – small number of value- Regression à a set of continued real value 2. Unsupervised lea..

[SRI] 방사선취급감독자면허 시험일정/원서접수/응시자격

2015년 SRI 방사선취급 감독자면허 원서접수 기간 : 7/13 오전9시 - 7/17 오후6시 시험 : 9/5 오전 8시30분 부터12시 50분까지 장소 : 충남대학교 백마교양 교육관 합격발표 : 10/23 > 이공계(4년) + 장해방어 실무 2년 이공계(4년) + 장해방어 실무 1년 + 6주 교육 이공계(4년) + 장해방어 실무 1년 + 경력인정분야 24학점 방사선학(4년) + 장해방어 실무 1년 (10학번 이전) RI 취득 + 장해방어 실무 2년 RI 취득 + 장해방어 실무 1년 + 6주 교육 이공계(4년) + RG 실무 4년 이공계(4년) + RG 실무 2년 + 6주 교육 이공계(4년) + RG 실무 2년 + 경력인정분야 24학점 방사선학(4년) + RG 실무 2년 (10학번 이전) RI 취득 +..