专栏名称: 机器学习研究会
机器学习研究会是北京大学大数据与机器学习创新中心旗下的学生组织,旨在构建一个机器学习从事者交流的平台。除了及时分享领域资讯外,协会还会举办各种业界巨头/学术神牛讲座、学术大牛沙龙分享会、real data 创新竞赛等活动。
目录
相关文章推荐
爱可可-爱生活  ·  《爱可可微博热门分享(3.21)》 ... ·  昨天  
机器之心  ·  刚刚,OpenAI开启语音智能体时代,API ... ·  昨天  
爱可可-爱生活  ·  本文创新性地提出了 RAGSchema ... ·  昨天  
爱可可-爱生活  ·  【[30星]Textoshop:一款“Pho ... ·  2 天前  
爱可可-爱生活  ·  PENCIL: ... ·  2 天前  
51好读  ›  专栏  ›  机器学习研究会

【学习】迁移学习与深度学习预训练模型应用

机器学习研究会  · 公众号  · AI  · 2017-06-02 19:01

正文



点击上方 “机器学习研究会” 可以订阅哦
摘要

转自:爱可可-爱生活

Introduction

Neural networks are a different breed of models compared to the supervised machine learning algorithms. Why do I say so? There are multiple reasons for that, but the most prominent is the cost of running algorithms on the hardware.


In today’s world, RAM on a machine is cheap and is available in plenty. You need hundreds of GBs of RAM to run a super complex supervised machine learning problem – it can be yours for a little investment / rent. On the other hand, access to GPUs is not that cheap. You need access to hundred GB VRAM on GPUs – it won’t be straight forward and would involve significant costs.


Now, that may change in future. But for now, it means that we have to be smarter about the way we use our resources in solving Deep Learning problems. Especially so, when we try to solve complex real life problems on areas like image and voice recognition. Once you have a few hidden layers in your model, adding another layer of hidden layer would need immense resources.


Thankfully, there is something called “Transfer Learning” which enables us to use pre-trained models from other people by making small changes. In this article, I am going to tell how we can use pre-trained models to accelerate our solutions.


Note This article assumes basic familiarity with Neural networks and deep learning. If you are new to deep learning, I would strongly recommend that you read the following articles first:

  1. What is deep learning and why is it getting so much attention?

  2. Deep Learning vs. Machine Learning – the essential differences you need to know!







请到「今天看啥」查看全文