摘要: Python使用Eigen加速代码运行 阅读全文
posted @ 2020-12-05 21:31 好问雷 阅读(1132) 评论(0) 推荐(1) 编辑
摘要: As mentioned in conda-forge/r-base-feedstock#163 (comment), I successfully installed sctransform in Mac silicon M1 Max by first run export PKG_CPPFLAG 阅读全文
posted @ 2024-02-24 20:53 好问雷 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 第一步:安装cudatoolkit 使用nvidia-smi确定适合自己显卡驱动的版本 使用conda search cudatoolkit获取可用版本 执行 conda install -c anaconda cudatoolkit=X.X.X 在~/.bashrc文件中添加 export LD_ 阅读全文
posted @ 2023-10-22 15:43 好问雷 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 问题描述: WARNING - No GPU/TPU found, falling back to CPU. (Set TF_CPP_MIN_LOG_LEVEL=0 and rerun for more info.) 解决方案: 测试如下代码,如果为True 则执行第二步。 import torch 阅读全文
posted @ 2023-10-03 17:35 好问雷 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 解决办法,寻找conda其它环境中ld的位置,然后通过ln命令链接上就行。例如我的路径为~/miniconda3/x86_64-conda_cos7-linux-gnu/bin/ld,执行如下命令就能解决 ln -sf ~/miniconda3/x86_64-conda_cos7-linux-gnu 阅读全文
posted @ 2023-09-14 09:18 好问雷 阅读(79) 评论(0) 推荐(0) 编辑
摘要: Sometimes it is useful to route traffic through a different machine for testing or development. At work, we have a VPN to a remote facility that we ha 阅读全文
posted @ 2022-10-22 22:12 好问雷 阅读(22) 评论(0) 推荐(0) 编辑
摘要: git clone https://ghproxy.com/https://github.com/Jittor/JNeRF 阅读全文
posted @ 2022-10-12 10:56 好问雷 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 错误描述 ImportError: /home/username/miniconda3/envs/jittor/bin/../lib/libstdc++.so.6: version `GLIBCXX_3.4.30' not found (required by /home/username/.cac 阅读全文
posted @ 2022-10-12 09:57 好问雷 阅读(849) 评论(0) 推荐(0) 编辑
摘要: 旋转矩形 double angle = -45; cv::Point2d rot_center(w,h); cv::RotatedRect rRect = cv::RotatedRect(rot_center, cv::Size(w,h), angle); cv::Point2f vertices[ 阅读全文
posted @ 2022-09-21 20:40 好问雷 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 四种Normalization方式介绍 下图是四种Normalization方式的一个汇总(我个人感觉这个图看起来方便一些). 图中每一个正方体块表示一个数据(比如说这里一个正方体就是一个图像) 每一个正方体中的C, H, W分别表示channel(通道个数), height(图像的高), weig 阅读全文
posted @ 2021-11-24 21:33 好问雷 阅读(600) 评论(0) 推荐(0) 编辑
摘要: ENV["LD_LIBRARY_PATH"] = "/usr/lib:/usr/lib64" 阅读全文
posted @ 2021-11-10 13:14 好问雷 阅读(55) 评论(0) 推荐(0) 编辑