JourneyToCoding

Code for Fun

Hyperparameters are parameters of neural networks other than w and b, including learning rate, depth of layer, size of each layer and so on. Compared to model parameters w and b, hyperparameters are determined entirely by ourselves. Tuning a model is to find better hyperparameters.

Read more »

Dive into deep learning (D2L) is a online deep learning course by Mu Li. In this course, Mu Li teaches the basic concept of DL and usage of pytorch. This post includes the environment configuration in windows, introduction of this course and some basic concept about matrix derivative.

Read more »

Reinforcement learning is an area of machine learning concerned with how intelligent agents ought to take actions in an environment in order to maximize cumulative reward. This post includes the course notes of reinforcement learning course by Andrew Ng.

Read more »

A recommender system is a subclass of information filtering system that provides suggestions for items that are most pertinent to a particular user. This post includes the course notes of recommender system course by Andrew Ng.

Read more »

Unsupervised learning is a type of algorithm that learns patterns or data groupings from unlabeled data without the need for human intervention. This post includes the course notes of unsupervised learning course by Andrew Ng.

Read more »

Decision trees are decision support hierarchical model that use tree model to make judgment or decision. Decision trees are commonly used in decision analysis, but are also a popular tool in machine learning.

Read more »
0%