学习mooc人工智能实践:tensorflow笔记的笔记

基于tensorflow搭建NN的路径:用张量表示数据,用计算图搭建神经网络,用会话执行计算图,优化线上权重(参数),得到模型。

用ubuntu中anaconda装tensorflow
用source activate tf **环境
退出环境 source deactivate tf

张量(tensor)

tensorflow框架

数据类型:

tf.float32 , tf.int32
tensorflow框架在python3中print后面加括号

计算图(Graph)

搭建神经网络的计算过程,只搭建,不运算

相关文章:

  • 2021-05-04
  • 2021-12-29
  • 2022-12-23
  • 2021-04-18
  • 2021-10-22
  • 2021-12-30
  • 2021-12-25
猜你喜欢
  • 2021-11-24
  • 2021-08-22
  • 2021-04-20
  • 2021-05-19
  • 2021-04-11
  • 2021-06-20
  • 2021-03-31
相关资源
相似解决方案