일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Inorder Traversal
- scowl
- pulloff
- fastapi
- domain adaptation
- objective functions for machine learning
- 3d medical image
- Knowledge Distillation
- non parametic softmax
- sidleup
- loss functions
- Actor-Critic
- straightup
- checkitout
- Policy Gradient
- rest-api
- Excel
- remove outliers
- freebooze
- noise contrast estimation
- normalization
- sample rows
- model-free control
- resample
- shadowing
- MRI
- clip intensity values
- REINFORCE
- thresholding
- 자료구조
- Today
- Total
목록Programming (39)
Let's Run Jinyeah
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
1. 프로세스 확인 및 강제 종료 ps aux | grep python sudo kill -9 4894 2. 장착된 하드디스크 확인 #하드디스크 마운트 위치 예시 /dev/sdq, /dev/sdb... #하드디스크 정보 출력 lsblk 3. 디스크 용량 확인 #파일시스템 용량 확인 df -h #현재 디렉토리 용량 확인 du -sh 4. 디렉토리(파일 제거) rm -rf //
1. local에서 vscode 실행 후 확장(ctrl+shift+X)에서 Remote Development 다운 2. F1을 누른 후 Remote-SSH:Connect to Host...클릭 3. ssh 아이디@ip주소 형식으로 입력하고 비밀번호를 치면 접속됨 참고 https://doheejin.github.io/vscode/2021/02/25/vscode-server.html https://snwo.tistory.com/173
Copy Directory 1. rsync 이용 --ignore-existing : overwriting 없이 복사 가능 -a : 재귀적으로 복사, 권한/그룹/수정시간/소유권 유지 -r : 재귀적으로 복사 -v : 상세 출력 -u : 서버에 있는 파일이 더 최신인 경우 소스에서 서버로 파일을 복사하지 않음 -d : 소스 경로에 없는 파일이 서버에 있을 경우 해당 파일을 삭제함 -R: 상대경로 이용 -h : 사람이 읽기 편한 포맷으로 결과 출력 rsync -avr --ignore-existing // @:// 2. scp 이용 -p : 원본 파일의 변경 시간, 접근시간, 퍼미션 보존 -r : 하위 디렉토리 및 파일까지 재귀적으로 복사 -v : tkdtp wjdqh cnffur -P: 포트 지정 scp -r..
Principle of MRI 1. What kinds of nuclei can be used for MRI? Use Hydrogen atoms: sensitive to magnetic resonance and most abundant in the body (the majority of Hydrogen in Water) Atoms consist of Nucleus and Electrons Nuclei are made of protons and neutrons Nucleus have 2 properties: Spin and Charge --> magnetic moment Pairs of spins tend to cancel, so only atoms with an odd number of protons h..
1. type =RAND() to generate a random number in the top cell of last column 2. copy the formula into the lower cells in the same column select the top cell place the cursor on the bottom right corner hold and drag the cursor to apply the formula to the entire column in all adjacent cells 3. sort the excel spreadsheet in increasing order of the random numbers 4. take the first rows up to how many ..
HTTP library - requests make and send HTTP request to interact with APIs GET / POST / PUT / DELETE import requests # GET : url에 특정 id api_url = "https://jsonplaceholder.typicode.com/todos/10" response = requests.get(api_url) print(response.json()) print(response.status_code) print(response.headers["Content-Type"]) #metatdata about the response # POST: 전체 todos url 사용 api_url = "https://jsonplace..
FastAPI uses Python type hints and has built-in support for async operations designed to build APIs with modern Python features built on top of Starlette and Pydantic Preparation install fastapi and uvicorn(server that can run FastAPI applications) with pip $ python -m pip install fastapi $ python -m pip install uvicorn[standard] save the code in a file called app.py Run $ uvicorn app:app --relo..