上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 在经过一系列的操作装好mujoco之后,需要配好环境变量才能最终成功的运行!经过一段时间的折腾,博主总结一下三处在Linux中需要配置环境的地方: 1、.bashrc文件 博主习惯使用gedit ~/.bashrc命令打开.bashrc文件(比较方便编辑)。 在.bashrc文件中添加环境变量:ex 阅读全文
posted @ 2023-03-24 20:55 juneyiiii 阅读(476) 评论(0) 推荐(0)
摘要: 1、首先检查当前环境的cpu,gpu设备信息 from tensorflow.python.client import device_lib as _device_lib local_device_protos = _device_lib.list_local_devices() devices = 阅读全文
posted @ 2023-03-23 22:19 juneyiiii 阅读(581) 评论(0) 推荐(0)
摘要: graph-level random seed 依靠随机种子的操作实际上来自两个种子:图级(graph-level)和操作级(operation-level)种子。 这设置了图层面的种子。它与操作级种子的相互作用如下 阅读全文
posted @ 2023-03-21 14:23 juneyiiii 阅读(61) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/a6822342/article/details/80533135 阅读全文
posted @ 2023-03-21 09:27 juneyiiii 阅读(161) 评论(0) 推荐(0)
摘要: 使用MPI进行编程时,往往可以写一个代码文件,交给多个不同的进程并行,使用Get_rank()函数为进程编号。有的时候我们还希望用某个特定的进程来执行一些操作,比如我们希望使用编号为0的进程,来把所有的进程的数据再进行一些处理,那么0号进程就需要指导一共有多少个进程,这时就需要用到Get_size( 阅读全文
posted @ 2023-03-17 10:50 juneyiiii 阅读(253) 评论(0) 推荐(0)
摘要: https://www.zhihu.com/question/289171977 阅读全文
posted @ 2023-03-17 10:36 juneyiiii 阅读(8) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/yanwenliqjl/p/8857620.html https://www.cnblogs.com/dukuan/p/9811057.html 阅读全文
posted @ 2023-03-16 20:23 juneyiiii 阅读(23) 评论(0) 推荐(0)
摘要: https://www.zhihu.com/question/20962240 https://zhuanlan.zhihu.com/p/62262733 阅读全文
posted @ 2023-03-16 17:31 juneyiiii 阅读(43) 评论(0) 推荐(0)
摘要: import tensorflow as tf import numpy as np #creat data x_data = np.random.rand(100).astype(np.float32) y_data = x_data*0.1+0.3 """create tensorflow st 阅读全文
posted @ 2023-03-13 10:05 juneyiiii 阅读(25) 评论(0) 推荐(0)
摘要: MLP (Multilayer Perceptron) 多层感知器 使用全连接层(fully connected layer) 只接受向量(vector)作为输入 CNN (Convolutional Neural Network) 卷积神经网络 局部连接层(locally connected la 阅读全文
posted @ 2023-03-09 15:28 juneyiiii 阅读(524) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 9 下一页