
笔记专栏
工作中一些经验以及代码的积累
libo-coder
DeepLearning / Computer Vision / OCR
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
『pytorch』pytorch 代码积累
目录编写预测类持续更新 …编写预测类以下代码用于加载一个预先训练好的模型,进行模型预测,大都可以使用,不排除特定情况!from ceevee.base import AbstractPredictorclass MySuperPredictor(AbstractPredictor): def __init__(self, weights_path: str, ): super().__init__() self.model = self._load_model原创 2021-08-27 00:11:40 · 239 阅读 · 1 评论 -
『笔记专栏』Linux_learning
1. 防火墙关闭防火墙sudo ufw distable终端开启服务,在 web 中无法访问systemctl status firewalldsystemctl stop firewalld2. root 权限获取sudo su -3. linux 连接服务器sudo apt-get updatesudo apt-get upgradesudo apt-get install openssh-serversudo ps -e | grep ssh (有sshd就说明已经开原创 2020-12-09 18:02:07 · 170 阅读 · 0 评论 -
『笔记专栏』异常处理
export OMP_NUM_THREADS=10export MKL_NUM_THREADS=10export OPENBLAS_NUM_THREADS=10原创 2020-07-27 17:51:58 · 283 阅读 · 0 评论 -
『笔记专栏』RGB颜色库
RGB颜色库原创 2020-01-09 11:08:52 · 5889 阅读 · 0 评论 -
『笔记专栏』设置神经网络 cpu 多核运算
设置神经网络 cpu 多核运算1. export OMP_NUM_THREADS=102. export MKL_NUM_THREADS=103. export OPENBLAS_NUM_THREADS=10原创 2020-12-08 09:23:44 · 980 阅读 · 0 评论