干貨 | TF的55個經典案例

TensorFlow

導語:本文是TensorFlow實現流行機器學習算法的教程匯集悼凑,目標是讓讀者可以輕松通過清晰簡明的案例深入了解 TensorFlow。這些案例適合那些想要實現一些 TensorFlow 案例的初學者苦囱。本教程包含還包含筆記和帶有注解的代碼。
第一步:給TF新手的教程指南

1:tf初學者需要明白的入門準備

機器學習入門筆記:
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/0_Prerequisite/ml_introduction.ipynb
MNIST 數據集入門筆記
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/0_Prerequisite/mnist_dataset_intro.ipynb

2:tf初學者需要了解的入門基礎

Hello World
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/1_Introduction/helloworld.ipynb
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/1_Introduction/helloworld.py

基本操作
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/1_Introduction/basic_operations.ipynb
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/1_Introduction/basic_operations.py

3:tf初學者需要掌握的基本模型

最近鄰:
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/2_BasicModels/nearest_neighbor.ipynb
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/2_BasicModels/nearest_neighbor.py

線性回歸:
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/2_BasicModels/linear_regression.ipynb
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/2_BasicModels/linear_regression.py

Logistic 回歸:
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/2_BasicModels/logistic_regression.ipynb
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/2_BasicModels/logistic_regression.py

4:tf初學者需要嘗試的神經網絡

多層感知器:
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/3_NeuralNetworks/multilayer_perceptron.ipynb
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/3_NeuralNetworks/multilayer_perceptron.py

卷積神經網絡:
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/3_NeuralNetworks/convolutional_network.ipynb
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/3_NeuralNetworks/convolutional_network.py

循環(huán)神經網絡(LSTM):
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/3_NeuralNetworks/recurrent_network.ipynb
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/3_NeuralNetworks/recurrent_network.py

雙向循環(huán)神經網絡(LSTM):
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/3_NeuralNetworks/bidirectional_rnn.ipynb
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/3_NeuralNetworks/bidirectional_rnn.py

動態(tài)循環(huán)神經網絡(LSTM)
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/3_NeuralNetworks/dynamic_rnn.py

自編碼器
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/3_NeuralNetworks/autoencoder.ipynb
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/3_NeuralNetworks/autoencoder.py

5:tf初學者需要精通的實用技術

保存和恢復模型
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/4_Utils/save_restore_model.ipynb
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/4_Utils/save_restore_model.py

圖和損失可視化
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/4_Utils/tensorboard_basic.ipynb
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/4_Utils/tensorboard_basic.py

Tensorboard——高級可視化
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/4_Utils/tensorboard_advanced.py

5:tf初學者需要的懂得的多GPU基本操作

多 GPU 上的基本操作
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/5_MultiGPU/multigpu_basics.ipynb
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/5_MultiGPU/multigpu_basics.py

6:案例需要的數據集

有一些案例需要 MNIST 數據集進行訓練和測試脾猛。運行這些案例時撕彤,該數據集會被自動下載下來(使用 input_data.py)。
MNIST數據集筆記:https://github.com/aymericdamien/TensorFlow-Examples/blob/master/notebooks/0_Prerequisite/mnist_dataset_intro.ipynb
官方網站:http://yann.lecun.com/exdb/mnist/

第二步:為TF新手準備的各個類型的案例猛拴、模型和數據集

初步了解:TFLearn TensorFlow
接下來的示例來自TFLearn羹铅,這是一個為 TensorFlow 提供了簡化的接口的庫。里面有很多示例和預構建的運算和層愉昆。
使用教程:TFLearn 快速入門职员。通過一個具體的機器學習任務學習 TFLearn 基礎。開發(fā)和訓練一個深度神經網絡分類器跛溉。
TFLearn地址:https://github.com/tflearn/tflearn
示例:https://github.com/tflearn/tflearn/tree/master/examples
預構建的運算和層:http://tflearn.org/doc_index/#api
筆記:https://github.com/tflearn/tflearn/blob/master/tutorials/intro/quickstart.md

基礎模型以及數據集

線性回歸廉邑,使用 TFLearn 實現線性回歸
https://github.com/tflearn/tflearn/blob/master/examples/basics/linear_regression.py
邏輯運算符。使用 TFLearn 實現邏輯運算符
https://github.com/tflearn/tflearn/blob/master/examples/basics/logical.py
權重保持倒谷。保存和還原一個模型
https://github.com/tflearn/tflearn/blob/master/examples/basics/weights_persistence.py
微調蛛蒙。在一個新任務上微調一個預訓練的模型
https://github.com/tflearn/tflearn/blob/master/examples/basics/finetuning.py
使用 HDF5。使用 HDF5 處理大型數據集
https://github.com/tflearn/tflearn/blob/master/examples/basics/use_hdf5.py
使用 DASK渤愁。使用 DASK 處理大型數據集
https://github.com/tflearn/tflearn/blob/master/examples/basics/use_dask.py

計算機視覺模型及數據集

多層感知器牵祟。一種用于 MNIST 分類任務的多層感知實現
https://github.com/tflearn/tflearn/blob/master/examples/images/dnn.py
卷積網絡(MNIST)。用于分類 MNIST 數據集的一種卷積神經網絡實現
https://github.com/tflearn/tflearn/blob/master/examples/images/convnet_mnist.py
卷積網絡(CIFAR-10)抖格。用于分類 CIFAR-10 數據集的一種卷積神經網絡實現
https://github.com/tflearn/tflearn/blob/master/examples/images/convnet_cifar10.py
網絡中的網絡诺苹。用于分類 CIFAR-10 數據集的 Network in Network 實現
https://github.com/tflearn/tflearn/blob/master/examples/images/network_in_network.py
Alexnet。將 Alexnet 應用于 Oxford Flowers 17 分類任務
https://github.com/tflearn/tflearn/blob/master/examples/images/alexnet.py
VGGNet雹拄。將 VGGNet 應用于 Oxford Flowers 17 分類任務
https://github.com/tflearn/tflearn/blob/master/examples/images/vgg_network.py
VGGNet Finetuning (Fast Training)收奔。使用一個預訓練的 VGG 網絡并將其約束到你自己的數據上,以便實現快速訓練
https://github.com/tflearn/tflearn/blob/master/examples/images/vgg_network_finetuning.py
RNN Pixels滓玖。使用 RNN(在像素的序列上)分類圖像
https://github.com/tflearn/tflearn/blob/master/examples/images/rnn_pixels.py
Highway Network坪哄。用于分類 MNIST 數據集的 Highway Network 實現
https://github.com/tflearn/tflearn/blob/master/examples/images/highway_dnn.py
Highway Convolutional Network。用于分類 MNIST 數據集的 Highway Convolutional Network 實現
https://github.com/tflearn/tflearn/blob/master/examples/images/convnet_highway_mnist.py
Residual Network (MNIST) 势篡。應用于 MNIST 分類任務的一種瓶頸殘差網絡(bottleneck residual network)
https://github.com/tflearn/tflearn/blob/master/examples/images/residual_network_mnist.py
Residual Network (CIFAR-10)翩肌。應用于 CIFAR-10 分類任務的一種殘差網絡
https://github.com/tflearn/tflearn/blob/master/examples/images/residual_network_cifar10.py
Google Inception(v3)。應用于 Oxford Flowers 17 分類任務的谷歌 Inception v3 網絡
https://github.com/tflearn/tflearn/blob/master/examples/images/googlenet.py
自編碼器禁悠。用于 MNIST 手寫數字的自編碼器
https://github.com/tflearn/tflearn/blob/master/examples/images/autoencoder.py

自然語言處理模型及數據集

循環(huán)神經網絡(LSTM)念祭,應用 LSTM 到 IMDB 情感數據集分類任
https://github.com/tflearn/tflearn/blob/master/examples/nlp/lstm.py
雙向 RNN(LSTM),將一個雙向 LSTM 應用到 IMDB 情感數據集分類任務:
https://github.com/tflearn/tflearn/blob/master/examples/nlp/bidirectional_lstm.py
動態(tài) RNN(LSTM)碍侦,利用動態(tài) LSTM 從 IMDB 數據集分類可變長度文本:
https://github.com/tflearn/tflearn/blob/master/examples/nlp/dynamic_lstm.py
城市名稱生成粱坤,使用 LSTM 網絡生成新的美國城市名:
https://github.com/tflearn/tflearn/blob/master/examples/nlp/lstm_generator_cityname.py
莎士比亞手稿生成隶糕,使用 LSTM 網絡生成新的莎士比亞手稿:
https://github.com/tflearn/tflearn/blob/master/examples/nlp/lstm_generator_shakespeare.py
Seq2seq,seq2seq 循環(huán)網絡的教學示例:
https://github.com/tflearn/tflearn/blob/master/examples/nlp/seq2seq_example.py
CNN Seq站玄,應用一個 1-D 卷積網絡從 IMDB 情感數據集中分類詞序列
https://github.com/tflearn/tflearn/blob/master/examples/nlp/cnn_sentence_classification.py

強化學習案例

Atari Pacman 1-step Q-Learning若厚,使用 1-step Q-learning 教一臺機器玩 Atari 游戲:
https://github.com/tflearn/tflearn/blob/master/examples/reinforcement_learning/atari_1step_qlearning.py

第三步:為TF新手準備的其他方面內容

Recommender-Wide&Deep Network,推薦系統中 wide & deep 網絡的教學示例:
https://github.com/tflearn/tflearn/blob/master/examples/others/recommender_wide_and_deep.py
Spiral Classification Problem蜒什,對斯坦福 CS231n spiral 分類難題的 TFLearn 實現:
https://github.com/tflearn/tflearn/blob/master/examples/notebooks/spiral.ipynb
層测秸,與 TensorFlow 一起使用 TFLearn 層:
https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow/layers.py
訓練器,使用 TFLearn 訓練器類訓練任何 TensorFlow 圖:
https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow/layers.py
Bulit-in Ops灾常,連同 TensorFlow 使用 TFLearn built-in 操作:
https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow/builtin_ops.py
Summaries霎冯,連同 TensorFlow 使用 TFLearn summarizers:
https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow/summaries.py
Variables,連同 TensorFlow 使用 TFLearn Variables:
https://github.com/tflearn/tflearn/blob/master/examples/extending_tensorflow/variables.py

?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末钞瀑,一起剝皮案震驚了整個濱河市沈撞,隨后出現的幾起案子,更是在濱河造成了極大的恐慌雕什,老刑警劉巖缠俺,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現場離奇詭異贷岸,居然都是意外死亡壹士,警方通過查閱死者的電腦和手機,發(fā)現死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進店門偿警,熙熙樓的掌柜王于貴愁眉苦臉地迎上來躏救,“玉大人,你說我怎么就攤上這事螟蒸『惺梗” “怎么了?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵七嫌,是天一觀的道長少办。 經常有香客問我,道長诵原,這世上最難降的妖魔是什么英妓? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮皮假,結果婚禮上鞋拟,老公的妹妹穿的比我還像新娘。我一直安慰自己惹资,他們只是感情好,可當我...
    茶點故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布航闺。 她就那樣靜靜地躺著褪测,像睡著了一般猴誊。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上侮措,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天懈叹,我揣著相機與錄音,去河邊找鬼分扎。 笑死澄成,一個胖子當著我的面吹牛,可吹牛的內容都是我干的畏吓。 我是一名探鬼主播墨状,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼菲饼!你這毒婦竟也來了肾砂?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤宏悦,失蹤者是張志新(化名)和其女友劉穎镐确,沒想到半個月后,有當地人在樹林里發(fā)現了一具尸體饼煞,經...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡源葫,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現自己被綠了砖瞧。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片臼氨。...
    茶點故事閱讀 38,137評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖芭届,靈堂內的尸體忽然破棺而出储矩,到底是詐尸還是另有隱情,我是刑警寧澤褂乍,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布持隧,位于F島的核電站,受9級特大地震影響逃片,放射性物質發(fā)生泄漏屡拨。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一褥实、第九天 我趴在偏房一處隱蔽的房頂上張望呀狼。 院中可真熱鬧,春花似錦损离、人聲如沸哥艇。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽貌踏。三九已至十饥,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間祖乳,已是汗流浹背逗堵。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留眷昆,地道東北人蜒秤。 一個月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像亚斋,于是被迫代替她去往敵國和親作媚。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,901評論 2 345

推薦閱讀更多精彩內容