加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CheckEnv.py 480 Bytes
一键复制 编辑 原始数据 按行查看 历史
= 提交于 2024-03-30 10:10 . 初版
from IPython import display
import mmcv
from mmcv.ops import get_compiling_cuda_version, get_compiler_version
print('输出当前环境中的部分重要参数:')
print('MMCV版本:', mmcv.__version__)
# cd /kaggle/working/mmdetection
import mmdet
print('mmdetection版本:', mmdet.__version__)
# cd /kaggle/working/mmpose
import mmpose
print('mmpose版本:', mmpose.__version__)
print('CUDA版本:', get_compiling_cuda_version())
print('编译器版本:', get_compiler_version())
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化