摘要: Weight&Biases教程 https://blog.csdn.net/wxc971231/article/details/128941933 阅读全文
posted @ 2024-03-04 12:13 juneyiiii 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/Oooops_/article/details/134811558?spm=1001.2014.3001.5501 阅读全文
posted @ 2024-01-13 21:19 juneyiiii 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 破案了,如果是通过ssh在服务器上使用mujoco,通常情况下是没法simulate的,也不能render! 所以服务器没有图形界面就真的很糟心 其余报错原因: 安装Mujoco、mujoco-py、multiagent-compete踩坑记录 阅读全文
posted @ 2024-01-10 19:18 juneyiiii 阅读(67) 评论(0) 推荐(0) 编辑
摘要: Colab可直接从github打开Jupyter notebooks,只需将“http:// github.com/”替换为“https://colab.research.google.com/github/”,就会直接加载到Colab中。 阅读全文
posted @ 2024-01-08 16:02 juneyiiii 阅读(42) 评论(0) 推荐(1) 编辑
摘要: 连接了服务器之后,如果能看到鼠标但屏幕黑屏的情况下,可以采用这种方法: 1、 ctrl+art+delete可以打开本地的任务管理器 2、 在 进程 中,找到 Windows进程, 找到 Windows资源管理器(我这里不是explore.exe)右键结束任务 3、 任务管理器左上角点击文件,运行新 阅读全文
posted @ 2023-12-20 21:43 juneyiiii 阅读(101) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/626793890 阅读全文
posted @ 2023-10-11 22:16 juneyiiii 阅读(31) 评论(0) 推荐(0) 编辑
摘要: __divmod__(self, other):定义当被 divmod() 调用时的行为,返回的值是一个元组:(a//b,a%b) 如: >>>divmod(7, 2) (3, 1) __mod__(self, other):定义取模算法的行为:% 如: >>>7% 2 1 __floordiv__ 阅读全文
posted @ 2023-08-10 19:57 juneyiiii 阅读(36) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/lovetaozibaby/article/details/108345888?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522169165597816800182760227%2522%25 阅读全文
posted @ 2023-08-10 17:15 juneyiiii 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://arxiv.org/abs/2307.09668 摘要:语言模型和视觉语言模型最近在理解人类意图、推理、场景理解和类似计划的文本行为等方面展示出了前所未有的能力。在这项工作中,我们研究了如何在强化学习(RL)代理中嵌入和利用这些能力。我们设计了一个使用语言作为核心推理工具的 阅读全文
posted @ 2023-07-24 16:47 juneyiiii 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 相对元组内的值进行修改,报错:‘tuple' object does not support item assignment. 搜了之后才发现:元组可读不可写,list可读可写。 详细参照: https://blog.csdn.net/qq_41368074/article/details/1057 阅读全文
posted @ 2023-04-24 20:21 juneyiiii 阅读(216) 评论(0) 推荐(0) 编辑