
TensorFlow2.1
文章平均质量分 89
Archer阿茶
为理解人生和命运而不断学习
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
容易混淆的卷积网络使用的备忘笔记【觉得重要的就记】
1、关于卷积网络的降维,挺多视频教程讲的不明不白,实战也是把一些隐藏点忽略带过,找到吴恩达老师的视频教程一看,很多细节的点都有详细提到,建议大家学完一门课程可以回看吴恩达老师的深度学习课程。在一个[nxn]7x7的图像数据,使用[fxf]3x3的filter或者kernel来扫描图像,假设conv2d的padding为p, 卷积步长stride s为2,那么其转换后的换算为[(n+2p-f)/...原创 2020-03-14 17:36:42 · 363 阅读 · 0 评论 -
TensorFlow 2.2.0-rc发布
官方链接:https://github.com/tensorflow/tensorflow/releasesMajor Features and Improvementstensorflow-2.2主要更新内容,如下:Replaced the scalar type for string tensors fromstd::stringtotensorflow::tstringw...翻译 2020-03-14 01:13:00 · 1246 阅读 · 0 评论 -
诡异错误笔记TypeError: An op outside of the function building code is being passed a "Graph" tensor.
再进行RNN循环神经网络学习过程中发现一个奇怪的bug,错误日志如下: File "C:\Users\Jame_Peng\AppData\Local\Programs\Python\Python37\lib\site-packages\tensorflow_core\python\eager\execute.py", line 61, in quick_execute num_out...原创 2020-03-04 21:36:23 · 8327 阅读 · 8 评论 -
【20200302】Tensorflow 2.1:关于tf.keras保存和载入模型的笔记
Loading Keras modelsKeras models are trackable, so they can be saved to SavedModel. The object returned by tf.saved_model.load is not a Keras object (i.e. doesn't have .fit, .predict, etc. methods). A few attributes and functions are still available: .va原创 2020-03-02 17:46:23 · 1037 阅读 · 0 评论