note: if you'll load data,the data shape should be similar with saved data's shape. -- 中式英语,天下无敌 import tensorflow as tf import numpy as np # save variable data W = tf.Variable([[2, 3], [3, 4]], dtype=tf.float32) b = tf.Variable([[3, 4]], dtype=tf…
这段时间用pandas做数据分析, import pandas.io.data as web 然后得到下面的错误提示 "The pandas.io.data module is moved to a separate package " ImportError: The pandas.io.data module is moved to a separate package (pandas-datareader). After installing the pandas-datarea…