Python reminder
Python 基礎筆記:變數宣告、字串 Escape 字元、Raw string,以及 %-formatting 與 str.format() 兩種輸出方式的比較與使用場景。
Python 基礎筆記:變數宣告、字串 Escape 字元、Raw string,以及 %-formatting 與 str.format() 兩種輸出方式的比較與使用場景。
TensorFlow 使用 GPU 加速運算:用 tf.device() 指定 CPU/GPU 設備,搭配 log_device_placement 和 allow_soft_placement 設定確保運算順利分配。
TensorFlow 練習:用神經網路擬合二維四次多項式 Polynomial Regression,介紹 tf.placeholder、tf.Variable、square error loss 和梯度下降優化器的基礎用法。