2016/11/28 인공지능 과제
Note: l 프로젝트 목적 : 1) 인공지능에 대한 기본 원리를 이해하기 위함 2) 인공지능의 핵심 이론과 관련 프로그램 수행을 통하여 각 지능 이론의 실제적 이해하기 위함 3) 팀웍을 통한 리더쉽 향상을 도모하기 위함 l 프로젝트 방법 : 1) 팀웍 향상을 위해 한 팀에 3 명으로 구성한다 . 2) 인공신경망에 관한 FAQ 와 구체적인 project steps 은 아래와 같다 . Step0: Obtain FAQ and Source code 인공신경망에 관한 다양한 서적과 인터넷 참고자료를 활용 https://www.codeproject.com/KB/AI/brainnet/brainnet_src.zip (backpropagation 알고리즘 소스코드 vb소스파일) https://github.com/neuroph/neuroph/tree/master/neuroph-2.9/Samples/src/main/java/org/neuroph/samples/uci (Didn't check yet) https://mattmazur.com/2015/03/17/a-step-by-step-backpropagation-example/ (good to look up , python code in git repository) http://zerkpage.tripod.com/project.htm ( c++ source code / If your visual studio version is upto 2008, change header <iostream.h> to <iostream> and use 'using std::xxxx' for using cin,cout,etc. / getch and khbit were depreciated use _getch and _khbit instead.) ...