전체 글 (60) 썸네일형 리스트형 Using Euclidean Distance 인공지능에 자주나오는 수학 1 - 유클리디안 거리(Euclidean Distance) 제일 먼저 알아볼 공식은 "유클리디안 거리(Euclidean distance)"라는 것입니다."유클리드"라는 수학자가 생각해댄 공식인데...아시다 시피 "유클리드"는 최대공약수를 계산해내는 "유클리드 호제법"으로 유명한 분이죠."유클리디안 거리" 공식은 n차원의 공간에서 두 점간의 거리를 알아내는 공식입니다.참고로 "유클리안 거리" 계산 법을 "L2 Distance"라고도 합니다. 우리는 쉽게 x축과 y축으로 구성된 2차원에 두점이 있고 그 두점 사이의 거리를 측정하는 것은 피타고라스 정의를 이용해 쉽게 할 수 있습니다. (학교 졸업한지 좀 지나신 분들은 아닐 수도 있지만... 뭐 정 안되면 직접 그려서 자로 재면 되니.. [Maven] pom.xml 1. pom이란A Project Object Model or POM is the fundamental unit of work in Maven. It is an XML file that contains information about the project and configuration details used by Maven to build the project. It contains default values for most projects. Examples for this is the build directory, which is target; the source directory, which is src/main/java; the test source directory, which is src/mai.. [MySQL] Macbook에서 root 패스워드 지정 >> cd /user/local/mysql/bin (엔터)>> sudo ./mysql (엔터)sudo : Mac OS에서 운영체제 관리자의 권한을 요구하는 작업을 수행할 때 필요한 명령어 mysql> use mysql;mysql> update user set password=password('비밀번호') where user='root';mysql> flush privileges;mysql> exit; >> sudo ./mysql -uroot -pEnter Password : 비밀번호 Mahout 분석 - 협업적 필터링(collaborative filtering) [협업적 필터링]1. Recommendation 소개http://mahout.apache.org/users/recommender/recommender-documentation.html 2. 주요 Keyword1) UserSimilarity2) ItemSimilarity 이전 1 ··· 5 6 7 8 다음