durlav kalita

Hi, I am Durlav. Developer and chess enthusiast.

Home Blog Projects About View on GitHub
    11 July 2021

    Slopes and sigmoids

    by durlavk

    Starting to learn ml💻.

    I have started learning ml once again. I studied about the scikit learn library a few years back but now I wish to learn about tensorflow and pytorch in depth. So, naturally I started by watching some videos about basics of ml and nn to get myself upto speed.

    One of the basic example of nn is the linear regression model. So what is linear regression? In simple terms it helps in creating relation between variables. Consider a straight line equation y or f(x) = ax + b. Here a is the slope or gradient of the line(vertical change/horizontal change) and b is the intercept on y axis. So, given the value of x, f(x) or y can be found. If we have a dataset of how y changes on different values of x them we can plot it in a graph and creating a line through the points in the graph we can estimate what will be f(x) for certain x and that’s ml😄. But it is not very simple there are some things to consider.

    I have just started learning ml so take what I wrote with a grain of salt as always.

    tags: ml - nn - python