일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- freebooze
- normalization
- thresholding
- remove outliers
- sidleup
- non parametic softmax
- domain adaptation
- clip intensity values
- 3d medical image
- checkitout
- shadowing
- 자료구조
- pulloff
- scowl
- objective functions for machine learning
- Excel
- Knowledge Distillation
- fastapi
- Policy Gradient
- noise contrast estimation
- sample rows
- model-free control
- loss functions
- REINFORCE
- rest-api
- straightup
- Inorder Traversal
- Actor-Critic
- MRI
- resample
- Today
- Total
목록전체 글 (57)
Let's Run Jinyeah
2022 Fall 미국 컴퓨터공학 석사 지원 COVID-19으로 GRE 점수 없이 지원 막학기(2021-2학기)에 1학점을 들으면서 대학원 준비 Timeline 8, 9월: TOFEL 공부 (8월부터 공부시작했고 원하는 점수를 얻은 건 11월) 9월: 교수님 면담, 추천서 요청 10월: CV작성, SOP 개요 잡기 11월, 12월: SOP, PS 작성 12월, 1월, 2월: 지원 3월, 4월, 5월: 결과 발표 현재 3월에 합격소식 받고 4월부터 국내 대학원 연구실에서 연구중(8월까지)
Statistic methods np.sort np.min() & np.max() & np.median() np.percentile 더보기 calculate the ith percentile of the input numpy array along a specified axis ith percentile is the value at which i percent of the data is below it axis (default): input array is flattened np.histogram Find index or value np.where Change the shape np.squeeze 더보기 remove 1-dimensional axis np.tile transpose & reshape rav..

What is Thresholding? Thresholding is a type of image segmentation. It converts an image from colour or grayscale into a binary image that is simply black and white. Overall Process of Thresholding (fixed-level thresholding) 1) load the original image 2) convert it to grayscale - grayscale images containe pixel values in the range from 0 to 1 3) de-noise image ex.blurring - not necessary, but im..

What is difference between csv(.csv) and excel(.xls)? 1. CSV simple type of plain text file which uses a specific structure to arrange tabular data a newline terminates each row to begin the next row each column is separated by a comman within a row 2. Excel spreadsheet software included in the Microsoft office suite binary file that holds information about all the worksheets in a workbook Read ..
read dicom image import pydicom as dcm D_TYPE = 'float32' ds = dcm.dcmread('filename.dcm') image = ds.pixel_array.astype(D_TYPE) save gray-scale image to dicom import pydicom as dcm D_TYPE = 'float32' num_bits = 16 ds = dcm.dcmread('filename.dcm') image = ds.pixel_array.astype(D_TYPE) """ image processing for gray image.... output = gray_image (dtype: float32, pixel_range = [0.0, 1.0]) """ gray_..
1. leave의 여러 뜻 (자) 떠나다, (타) 떠나다 I leave Korea I left him alone (타) 남기다 Don't thorw all the water. leave some. Is there any conffee left? (타) 그대로 두다 leave the door open 2. 술 관련 주량 묻기 How much do you drink? 술이 세다 I am a heavy/good drinker, I am a heavy weight, I drink like a fish 술이 약하다 I am a light drinker, I am a light weight 3. 횡단보도, 무단횡단 횡단보도 crosswalk 길을 건너다 cross the street 무단횡단하다 jay walk 빨..
1. conda 활용 #생성 conda create -n python=3.8 #활성화 conda activate #가상환경 확인 conda env list #가상환경 제거 conda remove -n 가상환경이름 --all 2. pip 활용 #생성 virtualenv --python=/usr/bin/python3.6 #활성화 source /bin/activate #제거 rm -r virtualenv -p python3 myenv source myenv/bin/activate rm -r myenv