摘要: 算法描述 Ridge regression uses the same simple linear regression model but adds an additional penalty on the \(L2\)-norm of the coefficients to the loss f 阅读全文
posted @ 2024-09-14 17:08 WrRan 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 算法描述 A weighted linear least-squares regression model. Notes In weighted linear least-squares regression, a real-valued target vector, \(\mathbf{y}\), 阅读全文
posted @ 2024-09-14 16:39 WrRan 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 题目链接 135. 分发糖果 思路 动态规划 题解链接 动态规划,计算最长递减序列 关键点 识别出:发放的糖果的数量实质上需要找到“最长递增子串”的长度 时间复杂度 \(O(n)\) 空间复杂度 \(O(n)\) 代码实现: class Solution: def candy(self, ratin 阅读全文
posted @ 2024-09-14 00:03 WrRan 阅读(3) 评论(0) 推荐(0) 编辑