項目 widget-area-1 尚未註冊或是沒有一個 view.php 檔案.
項目 widget-area-1 尚未註冊或是沒有一個 view.php 檔案.
項目 search-input 尚未註冊或是沒有一個 view.php 檔案.

【Google ML】5 – Lesson 4 – What it means to be AI first (下) – ML要成功的秘訣與策略

前言

今天繼續完成 How Google does Machine Learning 的第二章節最後一部分~

這次鐵人賽的30天中,我目前所寫文章的所有課程目錄如下:

Course – How Google does Machine Learning

第二章節的課程地圖:(紅字標記為本篇文章中會介紹到的章節)
* What it means to be AI first
* What it means to be AI first
* Two stages of ML
* ML in Google products
* Demo: ML in Google products
* Demo: ML in Google Photos
* Google Translate and Gmail
* Replacing heuristics
* It’s all about data
* Framing an ML problem
* Lab Intro – Framing an ML Problem
* Framing an ML problem
* Lab debrief
* ML in applications
* Demo: ML in applications
* Pre-trained models
* The ML marketplace is evolving <— (昨天到這邊)
* A data strategy
* Training and serving skew
* An ML strategy
* Transform your business
* Transform your business
* Lab Intro - ML use case
* Non-traditional ML use case
* Module 2 Quiz


11. A data strategy (接續昨天的編號)

課程地圖
* What it means to be AI first
* A data strategy

這邊講到google map的一些應用

https://ithelp.ithome.com.tw/upload/images/20190906/20120424VSLe7VNCkh.png

左圖:依照rule”搜尋最快路徑”

需要參考的東西:交通堵塞? 橋未開放?
怎麼蒐集上述的資料?
最後使用 A* algorithm 解決問題 (最短路徑演算法)
以結果來說,終究只是在設定rule

中間:另外一個例子,如何知道使用者在二樓?

wi-fi points, barometric pressure, typical walking speed 之類的資料
你有了這些數據,嘗試使用ML來避免寫rule

右邊:google地圖還能夠推薦使用者?

連接使用者過去的歷史,清楚使用者偏好,並進行推薦
我們希望google map能成為使用者的虛擬助手,
這問題只有ML能夠實現地圖服務的”個人化”

因此,ML就是能超越手寫規則的方法,
手寫規則有太多有可能無法實現的事情了。

從上例中左圖(通用)到右圖(個人化),
越個人化的事情越只能靠ML來實現,
(前面章節也有提到,這就是local data的問題)

但不管需不需要ML,要完成這些事情我們都需要大量大量的data
對我們而言,寫rules或models相對來說只是小case。

比喻:ML是火箭引擎,data就是燃料

If machine learning is a rocket engine, data is the fuel.

https://ithelp.ithome.com.tw/upload/images/20190906/20120424iHl5muajTk.png

不論任何的階段,Data永遠是勝利的關鍵
收集data除了要求量之外,也需要多樣化

以認識下圖為例子,如果資料太少,你可能用再複雜的規則也不知其形,
隨著資料夠多,整理的樣子就會更加得清楚。

https://ithelp.ithome.com.tw/upload/images/20190906/20120424oCTU3oys7o.png

因此,ML最重要最首先的事情,就是收集數據的策略

ML strategy is first and foremost a data strategy.


12. Training and serving skew

課程地圖
* What it means to be AI first
* Training and serving skew

在ML之前,我們還是必須要先分析一下數據
1. 分析數據也代表著要收集資料,掌握數據是最耗時又最難的部分
2. 收集好數據還需要去rating data(finding labels),有先分析過再進入ML階段可以避免做白工
3. 要建立一個好的ML模型,就要夠清楚你的資料,先分析數據也是為了這點
4. ML會將產品走向自動與規畫化,也就是ML是數據分析的延伸與擴展。

換句話說,如果不會數據分析,也不能做ML。

有一個常見ML產品的fail原因: training-serving skew

簡單說是兩個單位收集資料的方式不同,造成資料訓練與服務時沒有對應

The problem is that the result of stream processing and the result of batch processing have to be the same.

https://ithelp.ithome.com.tw/upload/images/20190906/201204241PewJj70e5.png

解決(減少問題發生的機會)方法:
用一樣的方法蒐集資料,一個同時處理batch與stream的階段
所以較好的架構應該如下圖:

https://ithelp.ithome.com.tw/upload/images/20190906/201204248z6x7w0Yiv.png


13. An ML strategy

課程地圖
* What it means to be AI first
* An ML strategy

ML要注意的事情:”ML的重點在量而不是在複雜度

即使是小的ML model有有它的價值。

另外一個心態是,多盡快失敗並反覆重試

The idea is that if you’re failing fast, you get the ability to iterate. This ability to experiment is critical in the realm of machine learning.

https://ithelp.ithome.com.tw/upload/images/20190906/201204246NwdwE53tM.png

從上圖我們可以看到,多嘗試,多快速的失敗,更能夠達到成功。
(慢慢嘗試後得到的慢速失敗(採取比較穩紮穩打的作法),反而成功的機會會小一些。)

另外提到資料,90%的企業資料皆是沒有被結構化的

試想 emails, video footage, texts, reports, catalogs, fashion shoots, events, news, you name it. All unstructured data.>

不過幸運的是,我們現在處理這些未結構化的資料,
因為有了google的各種pre-trained model已經變很簡單了,
我們就把這些unstructured data丟進這些ML APIs,
我們就能得到一些像entities, places, labels, people… 之類的資料,