• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






sfzyk

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

12 2016 档案

 
scikit-learn实现ebay数据分析 的随笔
摘要:注:只是随笔 import pandas as pd train = pd.read_csv() 读入scv格式的文件 train = train_set.drop(['EbayID','QuantitySold','SellerName'], axis=1) 去掉无用的features; trai 阅读全文
posted @ 2016-12-24 17:27 sfzyk 阅读(221) 评论(0) 推荐(0)
machine leanring 笔记 vectorization
摘要:the summation of the product of two terms can be expressed as the product of two vectors ps. surf :plot 3-d mesh surf(a,b,c) c's coloum=a's length and 阅读全文
posted @ 2016-12-22 19:23 sfzyk 阅读(126) 评论(0) 推荐(0)
machine learning 笔记 normal equation
摘要:theta=(Xt*X)^-1 Xt*y x is feature matrix y is expectation 阅读全文
posted @ 2016-12-21 16:26 sfzyk 阅读(153) 评论(0) 推荐(0)
machine leanring 笔记 octave命令笔记
摘要:来源于coursea 的公开课 A*B 一般意义的矩阵相乘 A.*B矩阵各位相乘 A.^2 A矩阵的每个数平方 1./A 对A矩阵的各位取倒 .表示对每一项都如此操作 log (A) exp(A) abs(A) -A th v+ones(length(v),1) add vector of all 阅读全文
posted @ 2016-12-21 13:13 sfzyk 阅读(191) 评论(0) 推荐(0)