RNN:執行paddlepaddle語言學習例子訓練報錯彙總
阿新 • • 發佈:2018-12-12
1. Non-ASCII character ‘\xb6’
報錯截圖
解決辦法
在py檔案第一行增加:#-*- coding: UTF-8 -*-
2. unexpected indent
報錯截圖
解決辦法
python依靠indent來縮排。要麼全部用空格縮排,要麼全部tab鍵。
用有些編輯器可以顯示tab和空格的。
另外,最好不要放到帶中文的目錄下,防止出問題。
3. global name ‘rnn_reader’ is not defined
報錯截圖
解決辦法
4. ‘module’ object is not callable
報錯截圖
解決辦法
文中rnn_reader前新增reader.變更為reader.rnn_reader
5Aborted at 1543222085 (unix time) try “date -d @1543222085” if you are using GNU date ***
報錯截圖
解決辦法
電腦不支援avx指令集
6. No module named ‘paddle.v2’
問題
解決
將import paddle.v2 as paddle改為import paddle.fluid as fluid