DEV Community

Ankita Sahoo
Ankita Sahoo

Posted on

 

Day-3 of Machine Learning

Day-3 of Machine Learning:

  • Compute cost function j(w, b) for linear regression with one variable. Also plotted different cost varies with respect to both w and b in 3D or using a contour plot.

Also

  • Did some multiple recursion call problems (for example: Fibonacci terms)

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.