随笔分类 -  人工智能

摘要:摘要 本文将详细介绍 Playwright MCP 的使用方法、常见问题及解决方案,特别针对中国开发者,尤其是 AI 应用开发者。文章通过实践案例、代码示例、架构图、流程图等多种形式,帮助读者快速掌握 Playwright MCP 的核心功能,并提供调试技巧和最佳实践建议。 正文 1. Playwr 阅读全文
posted @ 2025-10-01 12:10 xiondun 阅读(2033) 评论(1) 推荐(0)
摘要: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 运行 阅读全文
posted @ 2022-06-08 09:52 xiondun 阅读(334) 评论(0) 推荐(0)
摘要:非常详细的sklearn介绍 https://blog.csdn.net/algorithmPro/article/details/103045824 机器学习算法那些事 2019-11-12 08:30:00 0 引言 Sklearn (全称 Scikit-Learn) 是基于 Python 语言 阅读全文
posted @ 2020-09-27 09:18 xiondun 阅读(2680) 评论(0) 推荐(1)
摘要:梯度下降法的原理与实现 本文链接:http://blog.csdn.net/dpengwang/article/details/86028041 概念介绍 梯度下降法目的是为了“下降”,下降的方法是按照“梯度”。比如你在一座山上,当前你只能迈出一步,如何走才能使你的高度下降的最多呢,根据梯度的理论, 阅读全文
posted @ 2020-09-24 17:31 xiondun 阅读(938) 评论(0) 推荐(0)
摘要:MSE(均方误差)、RMSE (均方根误差)、MAE (平均绝对误差) 1、MSE(均方误差)(Mean Square Error) MSE是真实值与预测值的差值的平方然后求和平均。 范围[0,+∞),当预测值与真实值完全相同时为0,误差越大,该值越大。 import numpy as np fro 阅读全文
posted @ 2020-09-22 10:48 xiondun 阅读(2784) 评论(0) 推荐(0)
摘要:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow 阅读全文
posted @ 2020-09-21 12:08 xiondun 阅读(76) 评论(0) 推荐(0)
摘要:添加国内源: conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free conda config --add channels https://mirrors.tuna.tsinghua.e 阅读全文
posted @ 2020-09-21 09:36 xiondun 阅读(235) 评论(0) 推荐(0)