반응형

분류 전체보기 487

Week 4 Lecture ML : Neural Network

Non-linear hypothesis Nerural Network There's this sense that if the same piece of physical brain tissue can process sight or sound or touch then maybe there is one learning algorithm that can process sight or sound or touch. And instead of needing to implement a thousand different programs or a thousand different algorithms to do, you know, the thousand wonderful things that the brain does, may..

2020년 8월 기점 블로그 인기글

1 문과대학생이 다니는 코딩학원 - 학원 #1 일대일 과외 편 문과대학생이 다니는 코딩학원 - 학원 #1 일대일 과외 편 안녕하세요 문과코딩입니다. 이름부터 알 수 있지만 문과인데 코딩 공부를 하고 있습니다. 의외로 이 닉네임을 아무도 안 썼더라고요 그래서 제가 선점했습니다. 첫 글인 만큼 닉네임에 걸맞게 so-es-immer.tistory.com 2 지혜의 여신 미네르바 '미네르바의 부엉이는 황혼 무렵에야 날개를 펴기 ... 지혜의 여신 미네르바 ‘미네르바의 부엉이는 황혼 무렵에야 날개를 펴기 시작한다.’ 진리이�� 기업에게 철학이 필요한 것도 개인의 경우와 다르지 않다. 유태인이 종교적 신념 으로 예측할 수 없는 어려운 환경을 극복했듯이 기업도 환경으로부터의 도전을 극 복하는 데 많은 도움을 받을 s..

블로그 관리 2020.08.09

[TDD] 로또 프로그램 다음 단계 : 6개 숫자 중 5개 숫자 같은지 확인

#include #include #include #define MAX_NUM 6 int is_first(int mach[7], int user[7]) { int visit[6] = {0}; int cnt = 0; for (int i = 0; i < 6; i++) { for (int j = 0; j< 6;j++) { if (mach[j] == user[i]) { if (visit[j] == 0) { visit[j] = 1; cnt++; } } } } if (cnt == 6) return (1); else return (0); } int is_second(int mach[7], int user[7]) { int cnt = 0; int i; for (i = 0; i < 6; i++) { if (user[i] ..

C언어 2020.08.08

Week 3 Lecture ML : Classification and Representation

ML:Logistic Regression Now we are switching from regression problems to classification problems. Don't be confused by the name "Logistic Regression"; it is named that way for historical reasons and is actually an approach to classification problems, not regression problems. To attempt classification, one method is to use linear regression and map all predictions greater than 0.5 as a 1 and all l..

반응형