摘要:
Let's say we have enum defined as such: export enum WeekDayEnum { sunday = 0, monday, tuseday, wednesday, thursday, friday, saturday, } export type Da 阅读全文
摘要:
Traversing items of custom data structures, like trees or linked lists, require knowledge of how that data structure is built. That can lead to proble 阅读全文
摘要:
This learning curve shows high error on the test sets but comparatively low error on training set, so the algorithm is suffering from high variance. T 阅读全文
摘要:
Recoil offers several hooks to use for consuming state in React, and this lesson looks at how to choose which hook to use, and what happens when you d 阅读全文
摘要:
Training an algorithm on a very few number of data points (such as 1, 2 or 3) will easily have 0 errors because we can always find a quadratic curve t 阅读全文
摘要:
In this section we examine the relationship between the degree of the polynomial d and the underfitting or overfitting of our hypothesis. We need to d 阅读全文
摘要:
Just because a learning algorithm fits a training set well, that does not mean it is a good hypothesis. It could over fit and as a result your predict 阅读全文