机器学习
hanaif
PhD candidate in School of Electronics and Communication Engineering at Sun Yat-Sen University. Research interests include wireless sensing, mobile computing, and spectrum prediction.
展开
-
机器学习coursera第七周支持向量机最后测验
原创 2018-04-17 22:06:50 · 798 阅读 · 0 评论 -
解决xgboost-0.72-cpxx-cpxxm-win_amd64.whl is not a supported wheel on this platform.的问题
当你在安装xgboost时,有的人会选择直接在anaconda里面安装,但是你会发现anaconda里的xgboost并不是单纯的xgboost,而是r-xgboost等等,你在pycharm里调用他的时候你会发现报错提示没有发现xgboost模块,这时候你可以上官网下载相应的xgboost安装包,官网链接:各版本xgboost。但是安装的时候你会发现有如图错误,:出现原因可...原创 2018-08-07 17:43:51 · 3127 阅读 · 1 评论 -
解决Error occurred when installing packagexgboost'.(pycharm上xgboost安装失败)
先上图:在pycharm上直接安装xgboost出现Error occurred when installing packagexgboost' ,点进去看错误详情发现是Proposed solution: Try to run this command from the system terminal. Make sure that you use the correct version...原创 2018-08-06 22:27:22 · 33262 阅读 · 5 评论 -
coursera机器学习第九周最后测验--推荐系统(带解题思路)
1. Suppose you run a bookstore, and have ratings (1 to 5 stars) of books. Your collaborative filtering algorithm has learned a parameter vector θ(j) for user j, and a feature vector x(i) for each book...原创 2018-04-25 23:42:17 · 4506 阅读 · 6 评论 -
Coursera机器学习第八周Unsupervised Learning测验
原创 2018-04-19 23:35:00 · 1284 阅读 · 1 评论 -
coursera机器学习第八周PCA主成分分析法测验
原创 2018-04-19 23:26:36 · 596 阅读 · 0 评论 -
coursera机器学习第九周Anomaly Detection(异常检测)多元高斯分布的概率密度函数推导
推论为本人学完第九周后自己推导得出,推论公式在文中下半部分。本来在word上编辑好了公式复制到博客上乱码了,所以有些公式是粘贴的图片,不影响观看。欢迎大家指正,交流。 在一般的高斯分布模型中,我们计算高斯分布概率密度函数p(x),回顾高斯分布的基本知识。通常如果我们认为变量 x 符合高斯分布 x~N(μ,σ2)则其概率密度函数为:,其中,μ,σ2分别表示如下:。 ...原创 2018-04-23 19:22:52 · 3584 阅读 · 1 评论 -
(有解题思路)机器学习coursera吴恩达第六周最后测验习题汇总
第六周的习题做了三遍才100%正确,其中还是参照了不少论坛里大神的答案(比如BeiErGeLaiDe的博客,链接点击打开链接) 正式进入主题:ML第六周最后测验,共五题。文中大部分属于个人观点,如有错误欢迎指正、交流。1. You are working on a spam classification system using regularized logis...原创 2018-04-13 17:49:12 · 11341 阅读 · 6 评论 -
coursera机器学习第8周的常见问题(原文翻译)
原文地址:https://www.coursera.org/learn/machine-learning/discussions/weeks/8/threads/XLl24URmEea1pw5frt5utwThe lecture slides are nowavailable in the "Review" section of each week's course materials.Q1)Ho...翻译 2018-04-22 11:03:07 · 559 阅读 · 0 评论 -
100-Days-Of-ML-Code(Day4/5/6--LogisticRegression)
#!---* coding: utf-8 --*--#!/usr/bin/python"""ProjectName:LogisticRegression@Author:Aifu HanDate:2018.8.11"""#step1:数据预处理import numpy as npimport pandas as pdimport matplotlib.pyplot as pl...原创 2018-08-13 14:56:43 · 497 阅读 · 0 评论