随笔分类 - 人工智能
摘要:5.1 只编译一个包 colcon build --packages-select YOUR_PKG_NAME 5.2 不编译测试单元 colcon build --packages-select YOUR_PKG_NAME --cmake-args -DBUILD_TESTING=0 5.3 运行
阅读全文
摘要:非常详细的sklearn介绍 https://blog.csdn.net/algorithmPro/article/details/103045824 机器学习算法那些事 2019-11-12 08:30:00 0 引言 Sklearn (全称 Scikit-Learn) 是基于 Python 语言
阅读全文
摘要:梯度下降法的原理与实现 本文链接:http://blog.csdn.net/dpengwang/article/details/86028041 概念介绍 梯度下降法目的是为了“下降”,下降的方法是按照“梯度”。比如你在一座山上,当前你只能迈出一步,如何走才能使你的高度下降的最多呢,根据梯度的理论,
阅读全文
摘要:MSE(均方误差)、RMSE (均方根误差)、MAE (平均绝对误差) 1、MSE(均方误差)(Mean Square Error) MSE是真实值与预测值的差值的平方然后求和平均。 范围[0,+∞),当预测值与真实值完全相同时为0,误差越大,该值越大。 import numpy as np fro
阅读全文
摘要:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow
阅读全文
摘要:添加国内源: conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free conda config --add channels https://mirrors.tuna.tsinghua.e
阅读全文