good tricks
steph_curry
这个作者很懒,什么都没留下…
展开
-
coding小技巧记录
# 创建空间正方体,返回坐标 coords = np.mgrid[:resX, :resY, :resZ] # 快速对3D点云进行旋转平移操作 pts = torch.baddbmm(trans, rot, points) # [B, 3, N]原创 2020-01-28 00:05:58 · 232 阅读 · 0 评论 -
pip 使用镜像下载第三方包
pip 使用镜像下载第三方包 pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple 包名 例如: pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas 转自:https://www.cnblogs.com/cxhzy/p/...转载 2019-07-29 15:52:47 · 206 阅读 · 0 评论