机器学习入门之Machine Learning in a Week-机器学习一周入门实践
小标 2019-02-13 来源 : 阅读 1047 评论 0

摘要:本文主要向大家介绍了机器学习入门之Machine Learning in a Week-机器学习一周入门实践,通过具体的内容向大家展现,希望对大家学习机器学习入门有所帮助。

本文主要向大家介绍了机器学习入门之Machine Learning in a Week-机器学习一周入门实践,通过具体的内容向大家展现,希望对大家学习机器学习入门有所帮助。

Machine Learning in a Week

机器学习一周入门实践


Getting into machine learning(ml) can seem like an unachievable task from the outside.

在外界来看,机器学习的入门是一件难以企及的任务。

And it definitely can be, if you attack it from the wrong end.

事实是一旦你用错误的姿势打开,你的确可能永远不会真正入门。

However, after dedicating one week to learning the basics of the subject, I found it to be much more accessible than I anticipated.

然而,当我花了一周的时间学习机器学习相关的基础内容,我发现机器学习的门槛并没有我想象中那么高。

This article is intended to give others who’re interested in getting into ml a roadmap of how to get started, drawing from the experiences I made in my intro week.

本文是希望给那些同样对机器学习的同学一个蓝图,给大家分享我是怎么开始并规划我这一周的。


Background

背景

Before my machine learning week, I had been reading about the subject for a while, and had gone through half of Andrew Ng’s course on Coursera and a few other theoretical courses. So I had a tiny bit of conceptual understanding of ml, though I was completely unable to transfer any of my knowledge into code. This is what I want to change.

在我开始机器学习的这一周前,我已经阅读过这个学科的内容有一阵并在Coursera上学习了一半Andrew Ng的课程以及一些其他相关的理论课程。所以我已经有一些机器学习基础概念的了解。我并没有将这些知识应用并转化为代码,这也是我为啥想要改变并开始新的一周的原因。

I wanted to be able to solve problems with ml by the end of the week, even though this meant skipping a lot of fundamentals,and going for a top-down approach, instead of bottoms up.

我希望我可以在这周结束的时候能够通过机器学习解决一些实际的问题。这意味着我需要跳过基本的概念,通过自上而下的方法来学习,而不是自下而上的方式。

After asking for advice on Hacker News, I came to the conclusion that Python’s Scikit Learn-Module was the best starting point. This module gives you a wealth of algorithms to choose from, reducing the actual machine learning to a few lines of code.

通过在Hacker News上寻求的建议,我了解到Python Scikit learn模块是一个最好开始的一个点,这个模块给我们提供了一系列算法实践,让我们可以通过很少的代码来调用这些算法,用于处理实际的机器学习任务。


Monday: Learning some practicalities

周一:学习一些实例

I started off the week by looking for video tutorials which involved Scikit learn. I finally landed on Sentdex’s tutorial on how to use ml for investing in stocks, which gave me the necessary knowledge to move on to the next step.

在这一周的开始,我们通过观看一些介绍ScikitLearn视频教程来学习。最终我决定登录Sentdex’s教程学习机器学习在股票投资上如何应用,让我获取必要的知识来进入到下一步。




The good thing about the Sentdex tutorials that the instructor takes you through all the steps of gathering the data.As you go along, you realize that fetching and cleaning up the data can be much more time consuming than doing the actually machine learning. So the ability to write scripts to scrape data from files or crawl the web are essential skills for aspiring machine learning learning geeks.

Sentdex教程中有一点很赞的是给你详细介绍了数据收集相关的步骤。当你开始做机器学习以后,你会意识到抓取、清洗数据上花费的时间往往会多于真正去做机器学习的时间。所以,通过写脚本从文件中收集数据或者在网上爬取数据的能力是一个有追求的机器学习极客必须的技能。

I have re-watched several of the videos later on, to help me when I’ve been stuck with problem, so I’d recommend you to do the same.

我被卡住的时候,会去反复观看这些视频,这解决了我的疑问,所以也推荐你这么去实践。

However, if you already know how to scrape data from websites, this tutorial might not be the perfect fit, as a lot of the videos evolve around data fetching. In that case, the Udacity’s Intro to Machine Learning might be a better place to start

另外,如果你已经具备了从网上收集数据的技能,这个教程可能并没有能特别适合你,不过关于数据抓取的视频教程晚上还有很多。真那样的话,Udacity’s Intro to Machine Learning应该会是个更好的开始。


Tuesday: Applying it to a real problem

周二:应用机器学习到一个真实的问题

Tuesday I wanted to see if I could use what I had learned to solve an actual problem. As another developer in my coding cooperative was working on Bank of England’s data visualization competition, I teamed up with him to check out the datasets the bank has released. The most interesting data was their household surveys. This is an annual survey the bank perform on a few thousand households, regarding money related subjects.

周二我想看看有没有什么真实的问题能把我学到的机器学习相关的知识应用上。另外有一个开发童鞋,是我的开发伙伴,我们一起组队参加了大英银行数据可视化比赛,比赛支持我们下载银行公布出来的数据。里面最让我们感兴趣的数据就是家庭调研数据:银行每年对成千上万的家庭进行一项主题和收入相关的调研。

The Problem we decided to solve was the following:

我们决定想要解决的问题阈:

Given a person education level, age and income, can the computer predict its gender?

给定一个人的教育情况,年龄和收入,预测样本的性别

I Played around with the dataset, spent a few hours cleaning up the data, and used the Scikit Learn map to find a suitable algorithm for the problem.

我开始和这些数据集打交道,花了几小时的时间来清洗数据,然后在Scikit Learn map中找到一个合适的算法来解决上述问题。




We ended up with a success ratio at around63%, which isn’t impressive at all. But the machine did at least manage to guess a little better than flipping a coin, which would have given a success rate at 50%.

我们算法最终将预测准确率稳定在63%左右。这并不是一个令人亮瞎双眼的结果,但至少已经比抛硬币的50%的准确率高了一些了。

Seeing results is like fuel to your motivation, so I’d recommend you doing this for yourself, once you have a basic grasp of how to use Scikit Learn

看到结果能点燃你的激情,所以我推荐你自己亲手完成这个过程,这样你会让你对Scikit learn有一个直观的把握。

It’s a pivotal moment when you realize that you can start using ml to solve in real life problems.

关键的是让自己意识到你已经开始使用机器学习来解决一些生活中的实际问题了。


Wednesday: From the ground up

周三:从头开始

After playing around with various Scikit Learn modules, I decided to try and write linear regression algorithm from the ground up.

当我已经玩过了Scikit learn不同的模型,我决定尝试自己重头写一个线性回归算法。

I wanted to do this, because I felt (and still feel) that I really don’t understand what’s happening on under the hood.

从头做一个算法,是因为我觉得至今都没有真正理解在算法的内部发生了什么,我尝试去理解内部的逻辑。

Luckily, the Courera course goes into detail on how a few of the algorithms work, which came to great use at great use at this point. More specifically, ti describes the underlying concepts of using linear regressing with gradient descent.

幸运的是,Coursera课程会详细介绍一些算法的工作原理以及使用的方式。尤其是课程详细介绍了基于梯度下降的线性回归算法的基本概念。




This has definitely been the most effective of learning technique, as it forces you to understand the steps that are going on ‘under the hood’. I strongly recommend you to do this at some point.

将你的精力都集中在理解算法‘内部’发生了什么,绝对是非常有效的一种学习方式。我强烈推荐在这个阶段你也需要通过这种方式学习。

I plan to rewrite my own implementations of more complex algorithms as I go along, but I prefer doing this after I’ve played around with the respective algorithms in Scikit Learn.

我计划重写更多复杂的算法实践,不过当前我更需要在我完全掌握应用Scikit Learn中各个算法,所以我计划以后再去完成算法的重写。


Thursday: Start competing

周四:开始比赛

On Thursday, I started doing Kaggle’s introductory tutorials. Kaggle is a platform for machine learning competitions,where you can submit solutions to problems released by companies or organizations.

周四,我开始接触Kaggle论坛上的介绍教程。Kaggle是一个机器学习竞赛的平台,在平台上你可以提交基于一些公司/组织公布数据问题的解决方案。

I recommend you trying out Kaggle after having a little bit of a theoretical and practical understanding of machine learning. You’ll need this in order to start using Kaggle. Otherwise, it will be more frustrating than rewarding.

我推荐你在有一些机器学习的理论知识了解和实际练习之后再参加Kaggle的比赛。你会需要用到这些知识,不然贸然去参赛得到的挫败感比获得的成就感大得多。




The Bag of Words tutorial guides you through every steps you need to take in order to enter a submission to a competition, plus gives you a brief and exciting introduction into natural language Processing(NLP). I ended the tutorial with much higher interest in NLP than I had when entering it.

词袋模型的教程会引导你一步一步提交一次比赛结果,另外给你简要并激奋的介绍了和NLP(自然语言处理)相关的内容。这也让我除了提交的流程之外更多的对NLP产生了兴趣。


Friday: Back to school

周五:回到学校

Friday, I continued working on the Kaggle tutorials, and also started Udacity’s Intro to Machine Learning. I’m currently half ways through, and find it quite enjoyable.

周五,我继续把时间花在Kaggle上,也开始了学习Udacity’s Intro to Machine Learning课程,现在已经完成了一半的学习,我发现里面有很多有意思的东西。




It’s a lot easier the Coursera course, as it doesn’t go in depth in the algorithms. But it’s also more practical, as it teaches you Scikit Learn, which is a whole lot easier to apply to the real world than writing algorithms from the ground up in Octave, as you do in the Coursera course.

在Coursera的课程中有很多相对更简单的课程,并没有详细深入的介绍这些算法。相对来说,更多的Scikit Learn相关的练习,这些联系比起从Octave上从头开始写一个算法来说更容易在现实中得到应用。


The road ahead

前方的路

Doing it for a week hasn’t just been great fun, it has also helped my awareness of its usefulness of machine learning in society. The more I learn about it, the more I see which areas it can be used to solve problems.

过去的一周不仅仅让我获得了极大的成就感,还让我意识到机器学习在社会中的应用。我越对机器学习了解越多,发现有越多的领域可以用机器学习的方式来解决。

If you’re interested in getting into machine learning, I strongly recommend you setting off a few days or evenings and simply dive into it.

如果你有兴趣进入机器学习的世界,强烈推荐你腾出一些天或者一些晚上出来,好好的研究下这个领域。

Choose a top down approach if you’re not ready for the heavy stuff, and get into problem solving as quickly as possible.

如果你还没有准备好全面深入的学习这些东西,建议选择由上至下的方法,从尽快找一个需要解决的问题域开始。

Good luck

祝你好运


              

本文由职坐标整理并发布,希望对同学们有所帮助。了解更多详情请关注职坐标人工智能机器学习频道!

本文由 @小标 发布于职坐标。未经许可,禁止转载。
喜欢 | 0 不喜欢 | 0
看完这篇文章有何感觉?已经有0人表态,0%的人喜欢 快给朋友分享吧~
评论(0)
后参与评论

您输入的评论内容中包含违禁敏感词

我知道了

助您圆梦职场 匹配合适岗位
验证码手机号,获得海同独家IT培训资料
选择就业方向:
人工智能物联网
大数据开发/分析
人工智能Python
Java全栈开发
WEB前端+H5

请输入正确的手机号码

请输入正确的验证码

获取验证码

您今天的短信下发次数太多了,明天再试试吧!

提交

我们会在第一时间安排职业规划师联系您!

您也可以联系我们的职业规划师咨询:

小职老师的微信号:z_zhizuobiao
小职老师的微信号:z_zhizuobiao

版权所有 职坐标-一站式IT培训就业服务领导者 沪ICP备13042190号-4
上海海同信息科技有限公司 Copyright ©2015 www.zhizuobiao.com,All Rights Reserved.
 沪公网安备 31011502005948号    

©2015 www.zhizuobiao.com All Rights Reserved

208小时内训课程