上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页
摘要: 1、TSNE的基本概念 t-SNE(t-distributed stochastic neighbor embedding)是用于降维的一种机器学习算法,是由 Laurens van der Maaten 等在08年提出来。此外,t-SNE 是一种非线性降维算法,非常适用于高维数据降维到2维或者3维 阅读全文
posted @ 2022-02-15 10:41 呦呦南山 阅读(2476) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/golden1314521/article/details/44700551 https://github.com/matplotlib/cheatsheets 阅读全文
posted @ 2022-02-15 10:14 呦呦南山 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 1.touch hello.sh 2.vim hello.sh use "i" to write into the file write: #!/bin/sh echo hello world; 3.use"esc"、 "wq" to save the file 4.chmod 700 hello. 阅读全文
posted @ 2022-02-10 22:44 呦呦南山 阅读(747) 评论(0) 推荐(0) 编辑
摘要: 注意:dm_control在安装时,需要首先安装mujoco,但在安装了mujoco后,需要在 .mujoco文件中把 mujoco200 复制为 mujoco200_linux,否则dm_control无法识别mujoco的安装路径。 阅读全文
posted @ 2022-01-18 13:15 呦呦南山 阅读(200) 评论(0) 推荐(0) 编辑
摘要: atari中的 AtariPreprocessing 类中,是通过self.env.ale.getScreenGrayscale来传入当前屏幕的灰度图。 阅读全文
posted @ 2022-01-10 14:38 呦呦南山 阅读(57) 评论(0) 推荐(0) 编辑
摘要: from pathlib import Path 获取当前的绝对路径 : Path.cwd() 阅读全文
posted @ 2022-01-06 20:45 呦呦南山 阅读(49) 评论(0) 推荐(0) 编辑
摘要: class ExtendedTimeStep(NamedTuple): # step_type: Any # reward: Any # discount: Any # observation: Any # action: Any def __init__(self, step_type, rewa 阅读全文
posted @ 2022-01-06 20:32 呦呦南山 阅读(528) 评论(0) 推荐(0) 编辑
摘要: 根据PPO中的算法,经过测试,发现 obs_batch = self.obs[:-1].view(-1, *self.obs.size()[2:])[indices]其中, self.obs.size()[2:].shape = (4,84,84)self.obs[:-1].shape = (128 阅读全文
posted @ 2022-01-06 16:21 呦呦南山 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 安装requirements: absl-py==0.15.0argcomplete==1.12.3astunparse==1.6.3atari-py==0.2.5boto==2.49.0cached-property==1.5.2cachetools==4.2.4certifi==2021.10. 阅读全文
posted @ 2022-01-02 00:07 呦呦南山 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 为避免每次启动时都要手动更改环境,可在vim ~/.zshrc中的最后添加: source ~/ai3/bin/activate 阅读全文
posted @ 2022-01-01 12:14 呦呦南山 阅读(30) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页