일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- straightup
- shadowing
- 자료구조
- Knowledge Distillation
- sample rows
- scowl
- noise contrast estimation
- Inorder Traversal
- MRI
- 3d medical image
- domain adaptation
- remove outliers
- REINFORCE
- clip intensity values
- thresholding
- fastapi
- objective functions for machine learning
- normalization
- Excel
- Policy Gradient
- Actor-Critic
- pulloff
- resample
- non parametic softmax
- rest-api
- loss functions
- model-free control
- freebooze
- checkitout
- sidleup
- Today
- Total
목록분류 전체보기 (57)
Let's Run Jinyeah

MDP를 모르는 상황에서 최적의 정책을 찾는 Model-Free Control 기법에 대한 리뷰입니다. David Silver의 "Introduction to reinforcement learning" 강의 Lecture 5를 참고하였습니다. Outline On-policy Monte-Carlo(MC) control On-policy Temporal-Difference(TD) learning Sarsa: TD방법으로 액션-가치 함수(Q)를 학습 n-Step Sarsa: MC와 TD의 절충안 Sarsa(λ) Off-policy Temporal-Difference(TD) learning Q러닝 Model-Free Control 문제 MDP model을 모르고, 경험은 샘플링할 수 있는 문제 MDP model..
Changing mode from insert mode to command mode From command mode to insert mode - type a/A/i/I/o/O (더보기) From insert mode to command mode - type Esc (escape key) 더보기 Text Entry commands a Append text following current cursor position A Append text to the end of current line i Insert text before the current cursor position I Insert text at the beginning of the cursor line o Open up a new line fol..
현재 commit으로부터 과거 N개의 commit에 대해 commit 통합, 메세지 수정 git rebase -i HEAD~N git push -f [origin] [feature브랜치] 커밋 해시값 앞에 squash(약어로는 s)를 붙여줌. pick 대상에 squash로 지정된 커밋이 합쳐짐 :wq 명령어로 저장 기존의 작업에 대한 커밋 메시지는 지우고 하나의 대표적인 commit 메세지 작성 원격 저장소에 commit 변경내역 push 다른 branch에 있는 여러 commit 내역을 현재 branch에 적용시키기 git rebase {가져올 Branch 이름}
[Github 기본 브랜치 master에서 main으로 변경됨] Github 기본 브랜치 master에서 main으로 변경하면서 새로운 저장소를 생성할 때 초기 옵션을 선택하면 main 브랜치가 기본 브랜치로 생성된다. 하지만 Git 2.28.0 버전 이하를 사용한다면 command창에서 로컬 저장소의 기본 브랜치는 여전히 master이다. 따라서 처음 로컬 저장소를 github에 올릴 때 자동으로 두 개의 branch(main, master)가 생성되는 경우가 발생한다. 해결방법은 두 가지이다. 1. Git 버전을 업그레이드 한다. 2. 로컬 저장소에서 main branch를 생성한 후 github에 push 한다. 두 번째 방법으로 해결해보았다. git init git add . git commit ..
1. staged 상태의 수정사항으로 unstaged 상태로 변경 git reset HEAD -1 2. 다른 점 확인 git diff 3. 브랜치 충돌 지점 확인 4. 수정 5. add & commit
Error - failed to push some refs to remote repository(github)에 나의 local repository에 없는 commit이 존재 팀원이 github에 새로운 수정사항을 반영한 경우 C:\mirror>git push -u origin main ! [rejected] main -> main (non-fast-forward) error: failed to push some refs to hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull..
블록체인으로 창업을 하신 분도 있고 비트코인 이야기가 나오면 항상 블록체인이 빠지지 않는데 도대체 블록체인이 무엇인지 항상 궁금했었다. 그 궁금중을 풀어보고자 라는 책을 펼쳤다. 책 정보 블록체인으로 무엇을 할 수 있는가 출판사: 연암사 김용태 지음 요약 블록체인은 비트코인이라는 화폐시스템을 설계한 알고리즘이기 때문에 이 책에서는 비트코인의 탄생 배경과 비트코인이 무엇인지 설명하고 블록체인이 어떻게 비트코인이라는 화폐시스템을 실현화할 수 있었는지를 설명한다. 이후 이더리움, 리플과 같은 암호화폐의 탄생, 진화 과정과 디앱과 같은 블록체인을 활용한 어플리케이션을 설명한다. 비트코인의 탄생 배경과 비트코인이란 무엇인가? 비트코인은 은행 없는 은행이다. 비트코인은 기존의 은행 시스템은 여러 문제로 인해 탄생했..
List slicing notation a[start_index : stop_index] a[start_index : stop_index : step_size] 리스트의 가장 처음부터 or 마지막까지를 슬라이싱할 경우 start_index 또는 stop_index 생략 가능 슬라이싱 결과는 (stop_index-1)번째 원소까지 포함 (stop_index의 item은 제외) List slicing with negative index and negative step value # negative start or stop index a[-1] # 마지막 item a[-2:] # 마지막에서 두번째 item부터 마지막 item까지 a[:-2] # 처음부터 마지막에서 두번째 item 전까지 # negative s..