wandb: Tracking run with wandb version 0.15.5 wandb: W&B syncing is set to `offline` in this directory. wandb: Run `wandb online` or set WANDB_MODE=online to enable cloud syncing. /home/zhangmengjie/anaconda3/envs/torch1/lib/python3.7/site-packages/gym/envs/registration.py:556: UserWarning: [33mWARN: The environment Ant-v2 is out of date. You should consider upgrading to version `v4`.[0m f"The environment {id} is out of date. You should consider " Error compiling Cython file: ------------------------------------------------------------ ... See c_warning_callback, which is the C wrapper to the user defined function ''' global py_warning_callback global mju_user_warning py_warning_callback = warn mju_user_warning = c_warning_callback ^ ------------------------------------------------------------ /home/zhangmengjie/anaconda3/envs/torch1/lib/python3.7/site-packages/mujoco_py/cymj.pyx:92:23: Cannot assign type 'void (const char *) except * nogil' to 'void (*)(const char *) noexcept nogil' Error compiling Cython file: ------------------------------------------------------------ ... See c_warning_callback, which is the C wrapper to the user defined function ''' global py_error_callback global mju_user_error py_error_callback = err_callback mju_user_error = c_error_callback ^ ------------------------------------------------------------ /home/zhangmengjie/anaconda3/envs/torch1/lib/python3.7/site-packages/mujoco_py/cymj.pyx:127:21: Cannot assign type 'void (const char *) except * nogil' to 'void (*)(const char *) noexcept nogil' Compiling /home/zhangmengjie/anaconda3/envs/torch1/lib/python3.7/site-packages/mujoco_py/cymj.pyx because it changed. [1/1] Cythonizing /home/zhangmengjie/anaconda3/envs/torch1/lib/python3.7/site-packages/mujoco_py/cymj.pyx wandb: Waiting for W&B process to finish... (failed 1). wandb: You can sync this run to the cloud by running: wandb: wandb sync /home/zhangmengjie/PID/Python/ERL-Re2-main/wandb/offline-run-20230721_165346-awq1hazo wandb: Find logs at: ./wandb/offline-run-20230721_165346-awq1hazo/logs
时间: 2023-08-15 17:09:44 浏览: 1497
Kalman-Filter-Object-Tracking-master.zip_lungsk5w_matlab_trackin
根据错误信息,您在使用Wandb库时,将同步模式设置为了`offline`,因此无法进行云端同步。要解决这个问题,您可以执行以下操作之一:
1. 在命令行中运行 `wandb online` 命令,将同步模式切换为在线模式。
2. 在代码中添加以下代码行,将同步模式切换为在线模式:
```python
import wandb
wandb.init(mode='online')
```
这两种方法都将启用云端同步,使您能够将运行结果上传到Wandb云端。
另外,关于您提到的Mujoco编译错误,请确保您已经正确安装了Mujoco和相应的依赖项,并且已经按照官方文档提供的步骤进行配置。如果问题仍然存在,请参考相关文档或联系Mujoco的支持团队以获取进一步的帮助。
最后,您还收到了关于环境`Ant-v2`版本过时的警告。如果可能的话,建议将环境升级到`v4`版本以解决此警告。
希望这些信息能对您有所帮助!如果您还有其他问题,请随时提问。
阅读全文