본문 바로가기

Soft Thresholding a - http://www.simonlucey.com/soft-thresholding/aa- http://link.springer.com/article/10.1007/s10107-013-0701-9aaaaaaaaaaaaaaaaaaaaa 더보기
Hierarchical Dirichlet Process 구현 이 프로젝트는 고급 베이지안 통계학 최종 프로젝트로 진행한 것입니다. Hierarchical Dirichlet Process (HDP)는 Topic modelling에 효과적으로 사용될 수 있으며 현재는 문서 데이터를 모델링하는데 사용하고 있습니다. 단어들로 이뤄진 문서들이 있을 때, 단어들의 분포를 의미하는 토픽을 찾고, 문서를 해당 토픽의 분포로 표현하는 것을 목표로 합니다. 수행 화면 위의 두 화면은 실시간으로 Log likelihood와 토픽의 수를 나타내는 K를 보여줍니다. 아래는 MCMC에 사용되는 파라미터를 설정할 수 있는 창입니다. 오른쪽 아래는 상태창으로 현재 불러온 데이터와 사용된 파라미터를 보여줍니다. 결과 화면 정해준 숫자 만큼 MCMC를 한 후에는 위의 화면과 같이 그래프로 결과를.. 더보기
[MFC] Radio Button, Edit Box, Check Box, CString2char* MFC 에서 거의 매번 사용되는 Radio Button, Edit Box, Check Box를 다시 정리해보자.1. Radio Button - 버튼 설정: CButton* pButton = (CButton*)GetDlgItem(IDC_RADIO_1); pButton->SetCheck(true); delete pButton; - 버튼 해재: CButton* pButton = (CButton*)GetDlgItem(IDC_RADIO_2); pButton->SetCheck(true); delete pButton; 2. Edit Box - 에디트 박스의 값을 읽어온다. 그리고 더블로 가져온다. CString str; double val; GetDlgItem(IDC_EDIT_INPUT_1)->GetWindowTex.. 더보기
Finding CONTOUR from 2D points Finding surrounding contour from 2D meaasurements is a quite complicated problem. It seems easy at first, but one can easily find out that it is not a trivial regression problem, i.e., input output problem. For example, let's say we are given sensory measurements below. I believe finding the appropriate contour surrounding the measurement must be done in 3-dimensional space. Currently, I am tryi.. 더보기