We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
兜哥,你好 我在学习过程中发现的书中的一些问题,如果我的勘误不对的话,还请兜哥原谅
P12 图2-1 主流基于Python的机器学习库 横纵坐标单词拼写错误 分别为Commits、Contributors P14 >>>a = array([1, 2, 3]) 应为 a = np.array([1, 2, 3]) P15 >>>c.shape(2,3,2,3) 应为 c.reshape(2,3,2,3) P37 应修改为 TensorFlow中有类似实现:
from sklearn.feature_extraction.text import CountVectorizer from tensorflow.contrib import learn MAX_DOCUMENT_LENGTH=100
The text was updated successfully, but these errors were encountered:
No branches or pull requests
兜哥,你好
我在学习过程中发现的书中的一些问题,如果我的勘误不对的话,还请兜哥原谅
P12 图2-1 主流基于Python的机器学习库 横纵坐标单词拼写错误 分别为Commits、Contributors
P14 >>>a = array([1, 2, 3]) 应为 a = np.array([1, 2, 3])
P15 >>>c.shape(2,3,2,3) 应为 c.reshape(2,3,2,3)
P37 应修改为
TensorFlow中有类似实现:
The text was updated successfully, but these errors were encountered: