上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 32 下一页
摘要: python3 创建虚拟环境 python3 -m venv cjl source cjl/bin/activate source cjl/bin/deactivate 阅读全文
posted @ 2021-11-10 10:16 michaelchengjl 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 机器学习中的评价指标--02 回归算法的评价指标就是SSE、MSE,RMSE,MAE、R-Squared。下面一一介绍: SSE(和方差) 该统计参数计算的是拟合数据和原始数据对应点的误差的平方和,计算公式如下 SSE越接近于0,说明模型选择和拟合更好,数据预测也越成功。接下来的MSE和RMSE因为 阅读全文
posted @ 2021-11-09 17:58 michaelchengjl 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 机器学习中的评价指标--01 在机器学习中,性能指标(Metrics)是衡量一个模型好坏的关键,通过衡量模型输出y_predict 和 y_true之间的某种"距离"得出的。 性能指标往往是我们做模型时的最终目标,如准确率,召回率,敏感度等等,但是性能指标常常因为不可微分,无法作为优化的loss函数 阅读全文
posted @ 2021-11-09 16:30 michaelchengjl 阅读(681) 评论(0) 推荐(0) 编辑
摘要: pytest 测试框架 安装pytest以及常用插件 pip3 install pytest pytest-repeat pytest-timeout pytest # pytest 测试suit pytest-repeat # 测试次数插件 pytest-timeout # 测试超时插件 运行测试 阅读全文
posted @ 2021-11-02 14:55 michaelchengjl 阅读(51) 评论(0) 推荐(0) 编辑
摘要: Ubuntu 添加删除用户 为了能够创建和删除用户,您需要以root身份或具有sudo权限的用户身份登录。 可以通过两种方式在Ubuntu中创建新的用户帐户: 从命令行 通过GUI 从命令行添加新用户 useradd是一个用于添加用户的最普遍命令(所有发行版都支持),而adduser 是userad 阅读全文
posted @ 2021-10-25 21:06 michaelchengjl 阅读(1295) 评论(0) 推荐(0) 编辑
摘要: VSCODE 设置护眼颜色 下载主题 打开VS code选择’文件’‘→’首选项’→’颜色主题’:在弹出来的输入框输入Atom One Light Theme,后下载并安装该主题,安装后重启vscode。 注意:这一步是已经在扩展中安装过这个Atom One Light Theme主题,如果发现还未 阅读全文
posted @ 2021-10-20 19:14 michaelchengjl 阅读(1827) 评论(0) 推荐(1) 编辑
摘要: Python3报错:ModuleNotFoundError: No module named '_bz2' 系统信息 系统:Ubuntu1804 LTS python版本:python3.7 报错信息 from _bz2 import BZ2Compressor, BZ2Decompressor M 阅读全文
posted @ 2021-10-20 17:27 michaelchengjl 阅读(4432) 评论(0) 推荐(0) 编辑
摘要: 机器学习博客网站 https://datawhalechina.github.io/leeml-notes/#/chapter18/chapter18 https://www.cnblogs.com/pinard/p/10750718.html https://blog.csdn.net/livan 阅读全文
posted @ 2021-10-19 17:31 michaelchengjl 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 《Linux内核设计与实现》 读书笔记(4)--进程的调度 ###主要内容: 什么是调度 调度实现原理 Linux上调度实现的方法 调度相关的系统调用 1. 什么是调度 现在的操作系统都是多任务的,为了能让更多的任务能同时在系统上更好的运行,需要一个管理程序来管理计算机上同时运行的各个任务(也就是进 阅读全文
posted @ 2021-10-17 21:13 michaelchengjl 阅读(102) 评论(0) 推荐(0) 编辑
摘要: k8s 简单入门 https://kuboard.cn/learning/ https://www.jianshu.com/p/8d60ce1587e1 https://www.jianshu.com/p/116ce601a60f https://www.kubernetes.org.cn/cour 阅读全文
posted @ 2021-10-17 16:54 michaelchengjl 阅读(57) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 32 下一页