前提・実現したいこと
Python3.5.4とtensorflow0.12.1、janome0.3.10で以下のリンク
https://oimeg.blogspot.jp/2016/11/tensorflow_80.html
https://oimeg.blogspot.com/2016/11/tensorflow_15.html
のような学習をしようと実行しました。ぱっと見成功したように見えるのですが
①『WARNING:tensorflow:From C:\Users\○○\Documents\seq2seq_model.py:186 in init.: all_variables (from tensorflow.python.ops.variables) is deprecated and will be removed after 2017-03-02.』と表示されており、これが大丈夫なものなのかわかりません。
②また、少しだけ学習さてた後、『python chatbot.py --decode』で対話を実行したのですが、以下のエラーが発生しWARNINGも1つ増えました。
初心者であまりさわってこなかったため、解決方がわかりません。
特定の期間内にこの学習を実行したく、かなり切羽詰まっているため、どうかお願い致します。
①発生している問題
C:\Users\○○\Documents>Python chatbot.py Preparing LINE talk data in line_talk_data Creating 3 layers of 256 units. WARNING:tensorflow:From C:\Users\○○\Documents\seq2seq_model.py:186 in __init__.: all_variables (from tensorflow.python.ops.variables) is deprecated and will be removed after 2017-03-02. Instructions for updating: Use `tf.global_variables_initializer` instead. Reading development and training data (limit: 0). global step 100 learning rate 0.5000 step-time 0.20 perplexity 76.31 eval: empty bucket 0 eval: bucket 1 perplexity 251.35 eval: empty bucket 2 eval: empty bucket 3 global step 200 learning rate 0.5000 step-time 0.23 perplexity 5.95 eval: empty bucket 0 eval: bucket 1 perplexity 155.36 eval: empty bucket 2 eval: empty bucket 3
②エラーメッセージ
C:\Users\○○\Documents>python chatbot.py --decode WARNING:tensorflow:From C:\Users\○○\Documents\seq2seq_model.py:186 in __init__.: all_variables (from tensorflow.python.ops.variables) is deprecated and will be removed after 2017-03-02. Instructions for updating: Please use tf.global_variables instead. Created model with fresh parameters. WARNING:tensorflow:From chatbot.py:147 in create_model.: initialize_all_variables (from tensorflow.python.ops.variables) is deprecated and will be removed after 2017-03-02. Instructions for updating: Use `tf.global_variables_initializer` instead. > 晴れ Traceback (most recent call last): File "chatbot.py", line 312, in <module> tf.app.run() File "C:\Users\○○\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\python\platform\app.py", line 43, in run sys.exit(main(sys.argv[:1] + flags_passthrough)) File "chatbot.py", line 307, in main decode() File "chatbot.py", line 246, in decode tokens = t.tokenize(sentence.decode('utf-8')) AttributeError: 'str' object has no attribute 'decode'
使用するソースコード
参照
https://oimeg.blogspot.com/2016/11/tensorflow_37.html
https://github.com/tensorflow/tensorflow/blob/0.12.1/tensorflow/models/rnn/translate/seq2seq_model.py
補足情報(FW/ツールのバージョンなど)
言語:Python3.5.4
その他のツール:
h5py (2.9.0)
janome (0.3.10)
numpy (1.14.0)
pip (9.0.1)
protobuf (3.14.0)
setuptools (28.8.0)
six (1.15.0)
tensorflow (0.12.1)
wheel (0.36.2)
回答1件
あなたの回答
tips
プレビュー