Following is listed different categories which covers 80% of machine learning problems:
Simply speaking, if the answer to problems consists of discrete values such as some of the following, the problem can be termed as classification problems. These are called as “Logistic Regression” problems.
Mathematically speaking, if “h(x)” is a hypothetical function, the value of h(x) would fall within 0 and 1. h(x) could be read as estimated probability that output is 0 or 1 on input x. In order to predict whether the output is either 1 (yes or positive class) or 0 (no or negative class), we may compare the value of h(x) with 0.5. It the value is greater than 0.5, we may predict the output as 1 (yes) or otherwise 0 (no). Well, if you are aware of naive Bayes, you may be smiling by now. This is because the above definition of h(x) could be written as probability that y=0 or 1 is true given x has occurred. Following are some of the examples:
Following are some of the algorithms which could be used to solve classification problems:
Clustering problems are about grouping similar things together. Take a look at some of the following example:
Regression problems are more related with predicting numbers based on input data sets. Mathematically, following is the formulae to solve regression problems:
# Linear regression; h(x) is hypothesis function, m is parameter, x is feature (or variable) and c is constant.
h(x) = mx + c
# Multiple regression; m1, m2, m3, .... mn are parameters and x1, x2, x3...xn are features
h(x) = c + m1.x1 + m2.x2 + m3.x3 + ... + mn.xn
Following are some of the examples:
In this blog, you would get to know the essential mathematical topics you need to…
This blog represents a list of questions you can ask when thinking like a product…
AI agents are autonomous systems combining three core components: a reasoning engine (powered by LLM),…
Artificial Intelligence (AI) has evolved significantly, from its early days of symbolic reasoning to the…
Last updated: 25th Jan, 2025 Have you ever wondered how to seamlessly integrate the vast…
Hey there! As I venture into building agentic MEAN apps with LangChain.js, I wanted to…