一.基礎知識
mnist資料集:
1.由googl和紐約大學克朗研究所共同建立的手寫數字的資料庫。
2.共有70000張訓練影象(60000訓練影象+10000測試影象)
3.所有影象均是0-9的手寫數字。
flask框架:
1.是乙個輕量級的web應用框架
2.使用python語言進行編寫
訓練mnist資料集:
訓練步驟:
2.編寫訓練程式
3.訓練模型
4.驗證訓練的模型
使用flask呼叫模型:
呼叫步驟:
1.使用訓練好的模型
2.定義引數
3.通過端進行傳參
4.進行資料驗證並返回
整合步驟:
訓練並生成模型-》暴露介面-》前端呼叫-》驗證並返回結果
二.
Tensorflow學習筆記No 3
tf.data是tensorflow2.0中加入的資料載入模組,是乙個非常便捷的處理資料的模組。這裡簡單介紹一些tf.data的使用方法。1.載入tensorflow中自帶的mnist資料 並對資料進行一些簡單的處理 1 train image,train label test image,test...
tensorflow學習筆記
tensorflow安裝可以直接通過命令列或者原始碼安裝,在此介紹tensorflow8命令列安裝如下 安裝tensorflow sudo pip install upgrade 另外,解除安裝tensorflow命令為 sudo pip uninstall tensorflow tensorflo...
Tensorflow學習筆記
1.如何在虛擬機器中安裝tensor flow 1 首先安裝pip pip install 2 pip install 2.學習tensorflow需要學習 python and linux 3.使用 tensorflow,你必須明白 tensorflow 1 使用圖 graph 來表示計算任務.2...