最新 最热

Git clone 超级慢

原命令:git clone -b r1.13.0 https://github.com/tensorflow/models.git现在替换为:git clone -b r1.13.0 https://github.com.cnpmjs.org/tensorflow/models.git也就是把原 URL 中的 gi...

2022-09-16
0

module ‘tensorflow’ has no attribute ‘placeholder’

原文地址:https://stackoverflow.com/questions/37383812/tensorflow-module-object-has-no-attribute-placeholder

2022-09-14
0

pytorch实现L2和L1正则化regularization的方法

torch.optim集成了很多优化器,如SGD,Adadelta,Adam,Adagrad,RMSprop等,这些优化器自带的一个参数weight_decay,用于指定权值衰减率,相当于L2正则化中的λ参数,注意torch.optim集成的优化器只有L2正则化方法,你可以查看注释,参数w...

2022-09-14
0

Anaconda环境下Tensorflow的安装与卸载

在Anaconda官网或者在清华 Anaconda 镜像下载。根据自己电脑配置选择32位还是64位,下在最新版本。 我安装的链接:https://pan.baidu.com/s/1P9gTwLRDp9f770rK_D1clQ 提取码:1xqf...

2022-09-14
0

Tensorflow基础篇_1

import tensorflow as tf a = tf.constant(5.0) b = tf.constant(6.0) sum = tf.add(a, b) with tf.Session as sess: sess.run(sum)

2022-09-13
0

Deep Reinforcement learning – 2. 基于tensorflow的DDPG实现

基于我上一篇博客的算法介绍, 使用tensorflow的代码实现,仿真环境使用gym torcs 为了快速训练出结果,我没有使用driver view图像作为输入,而是使用low dimension传感器数据作为输入, 总共29个数据,包括: – 赛车速度: spe...

2022-09-13
1

【tensorflow】浅谈什么是张量tensor

高清思维导图已同步Git:https://github.com/SoWhat1412/xmindfile

2022-09-12
0

查看tensorflow版本信息

3.输入import tensorflow as tf 和 tf.__version__

2022-09-12
0

tensorflow指定版本的安装及升级到最新版「建议收藏」

安装anaconda,然后用python的pip可以安装特定版本的tensorflow,如:

2022-09-12
0

MAC如何查看Tensorflow版本号[通俗易懂]

#首先打开MAC终端(terminal) 1、激活tensorflow; 2、然后进入python(根据版本不同输入自带版本号) 3、输入python语句执行查询

2022-09-12
0