错误的原因是写了无参构造函数但是没有实现 id:8 A. 月份查询(指针数组) 题目描述 已知每个月份的英文单词如下,要求创建一个指针数组,数组中的每个指针指向一个月份的英文字符串,要求根据输入的月份数字输出相应的英文单词 1月 January 2月 February 3月 March 4月 April 5月 May 6月 June 7月 July 8月 Aguest 9月 Septembe
视频地址:https://www.coursera.org/learn/ai-for-everyone/lecture/5TPFo/machine-learning 英文字幕: The rise of AI has been largely driven by one tool in AI called machine learning. In this video, you'll learn
视频地址:https://www.coursera.org/learn/ai-for-everyone/lecture/SRwLN/week-1-introduction 英文字幕: Welcome to AI for everyone. AI is changing the way we work and live and this nontechnical course will teac
这仅是本人在cousera上学习机器学习的笔记,不能保证其正确性,谨慎参考 1、梯度下降函数,一直重复下面公式直到收敛(repeat until convergence),此时即可收敛得到局部最小值(converge to local minimum),该梯度下降法对多参数也可用(例如θ0,θ1,θ2,θ3,θ4,θ5……θn),注意该过程对每一次的j迭代是需要同步更新参数的(At each i
这仅是本人在cousera上学习机器学习的笔记,不能保证其正确性,谨慎参考 1、算法模型,hypothesis(假设),h表示x到y的映射函数: 2、单值线性回归举例分析 3、J为平方误差代价函数(squared error function),为什么除以2*m问不是除以m,视频中说除以2是为求最小值。 4、代价函数(cost function)说明: “The mean i
First Missing Positive LeetCode上的41题:https://leetcode-cn.com/problems/first-missing-positive/description/ First Missing Positive 题目题解代码 题目 Given an unsorted integer array, find the small