Dive into the realms of Artificial Intelligence and Machine Learning as we unravel the limitless possibilities and innovations that shape tomorrow's world
Here are some insightful blog posts about Artificial Intelligence and Machine Learning.We cover the 101s, practical applications and the new advancements that have come up
#ML Snippets
A "Wading Depth" into Unsupervised Learning techniques - Clustering
Dec 20, 2023
Now that we've covered #supervisedlearning, it's time to move forward to #unsupervisedlearning. We'll be starting off with a basic 101 about clustering, followed by the other methods in our upcoming posts. Clustering is a type of unsupervised learning method in machine learning that involves grouping similar data points together based on their features or characteristics. The goal of clustering is to identify patterns or structures within the data that are not immediately apparent. It is usually used to draw references from datasets consisting of input data without labeled responses. ...Read More
#ML Snippets
A "Wading Depth" into Supervised Learning - Regression
Dec 13, 2023
Aight everybody, let's get straight into it. If you looked into our last post on Classification, you'll know that this post is about "Regression" in Machine Learning. However, if you're new here, howdy and welcome to our page. You can check out our last post here:
https://lnkd.in/gucz4wACNow onto Regression:
Regression in machine learning is a statistical method used to model the relationship between a dependent (target) and independent (predictor) variables.It is a supervised learning technique which helps in finding the correlation between variables and enables us to predict the continuous output variable based on one or more predictor variables. It is mainly used for prediction, forecasting, time series modeling, and determining the causal-effect relationship between continuous variables . ...Read More
#ML Snippets
A "Wading Depth" into Supervised Learning - Classification
Dec 06, 2023
After quite the break with the festivites (phew!), we're here to give some more insights into Supervised Learning, mainly Classification and Regression.
Regression will be covered in our next post so stay tuned for that. Until then, let's start some learning with Classification. Oh and in case if you're new here or would like a referesher on what we're talking about, check out our previous post on Supervised learning - https://lnkd.in/gEZxyvqA
In supervised machine learning, algorithms can be broadly classified into regression and classification algorithms. Regression algorithms predict the output for continuous values, while classification algorithms predict categorical values. ...Read More
#ML Snippets
A 101 on Unsupervised Learning
Nov 27, 2023
We're back with the 101 that you've been patiently waiting for - Unsupervised Learning. If you haven't checked our previous post on Supervised learning, you can catch up over here - https://lnkd.in/gEZxyvqA
Unsupervised learning is a type of machine learning where models learn patterns exclusively from unlabeled data. Unlike supervised learning, where models are trained using labeled data, unsupervised learning models find hidden patterns and insights from the given data without any supervision.
Here's a few pointers about unsupervised learning that simplifies our 101 for this post:- ...Read More
#ML Snippets
A 101 on Supervised Learning
Nov 15, 2023
Generally, we classify machine learning into three branches(well majorly two, but the third is still something that requires quite the work). These three branches are:
- Supervised Learning - Unsupervised Learning - Reinforcement Learning
In today’s post, we’ll be covering a basic 101 on Supervised Learning for all the ML newbies out there:
Supervised learning is a paradigm in machine learning where input objects and a desired output value, (a human-labeled supervisory signal) are used to train a model. The training data is processed and it builds a function that maps new data on expected output values, as the data is labeled.
In supervised learning, models are trained using labeled datasets – meaning that each segment of the data is labeled through and through and the model wouldn’t have a hard time comprehending this as all it would require is a bit of pre-processing or what we like to call “tweaking to make it prettier for the model.” To understand this better, we've added a visual below. ...Read More