logo
  • 教程列表
  • SO官方文檔
  • TensorFlow 中使用 Python 的簡單線性迴歸結構
    • 簡單的迴歸函式程式碼結構
    • 主要例行
    • 規範化例程
    • 讀取資料例程
  1. StackOverflow 文件
  2. tensorflow 教程
  3. TensorFlow 中使用 Python 的簡單線性迴歸結構
  4. 讀取資料例程

讀取資料例程

Created: November-22, 2018

def read_data():
    global m, n

    m = 50
    n = 1

    train_X = np.array(

陣列的內部資料

    ).astype('float32')

    train_Y = np.array(

陣列的內部資料

    ).astype('float32')

    return train_X, train_Y
  • 規範化例程

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 關於本站
  • 免責聲明