Which module is used for Random Forest in scikit-learn?
Anonymous Quiz
24%
A) sklearn.linear_model
16%
B) sklearn.cluster
57%
C) sklearn.ensemble
4%
D) sklearn.numpy
β€2
What is a major advantage of Random Forest over Decision Trees?
Anonymous Quiz
12%
A) Faster training
74%
B) Reduces overfitting
9%
C) Uses less memory
6%
D) Easier to interpret
β€6
Random Forest can be used for:
Anonymous Quiz
10%
A) Only classification
7%
B) Only regression
81%
C) Both classification and regression
2%
D) Database management
β€2
AI Fundamentals You Should Know: π€π
1. Artificial Intelligence (AI)
β Technology that allows machines to mimic human intelligence like learning, reasoning, problem-solving, and decision-making. AI powers tools like Chat, recommendation systems, voice assistants, and self-driving technologies.
2. Machine Learning (ML)
β A subset of AI where systems learn patterns from data instead of being manually programmed. The more quality data ML models receive, the better they become at predictions and analysis.
3. Deep Learning
β An advanced form of machine learning that uses neural networks with multiple layers to process complex tasks like image recognition, speech understanding, and generative AI.
4. AI Agent
β An autonomous AI system capable of performing tasks, making decisions, interacting with tools, and completing workflows with minimal human input. AI agents are becoming the foundation of next-generation automation.
5. AI Model
β A trained computational system that processes inputs and generates outputs such as predictions, text, images, or recommendations based on learned patterns.
6. Training
β The process where AI models learn from massive datasets by identifying patterns, adjusting internal parameters, and improving accuracy over time.
7. Inference
β The operational stage where a trained AI model generates responses, predictions, or decisions for real-world use. Every Chat response is an example of inference.
8. Prompt
β Instructions, commands, or questions provided to an AI system. The clarity and detail of prompts directly impact the quality of AI outputs.
9. Prompt Engineering
β The skill of designing structured and optimized prompts to guide AI systems toward more accurate, useful, and context-aware responses.
10. Generative AI
β AI systems capable of creating original content such as text, images, music, videos, designs, and code instead of only analyzing existing information.
11. Token
β Small units of text processed by AI models. Tokens may represent words, parts of words, or symbols that help AI understand and generate language.
12. Hallucination
β A phenomenon where AI generates false, misleading, or fabricated information confidently due to prediction errors or lack of verified context.
13. Fine-Tuning
β The process of customizing a pre-trained AI model using specialized datasets so it performs better on specific tasks or industries.
14. Multimodal AI
β AI systems capable of processing and understanding multiple data formats together, including text, images, audio, and video.
15. LLM (Large Language Model)
β Massive AI models trained on huge text datasets to understand language, answer questions, summarize information, and generate human-like responses.
16. Neural Network
β A computational architecture inspired by the human brain, consisting of interconnected nodes that help AI recognize patterns and make decisions.
17. RAG (Retrieval-Augmented Generation)
β A technique where AI retrieves external or updated information before generating responses, improving factual accuracy and context relevance.
18. Embeddings
β Mathematical vector representations of text, images, or data that allow AI systems to understand meaning, similarity, and relationships between information.
19. Vector Database
β Specialized databases designed to store and search embeddings efficiently, enabling semantic search and advanced AI retrieval systems.
20. Agentic AI
β Advanced AI systems capable of reasoning, planning, memory handling, decision-making, and autonomously completing complex multi-step tasks.
21. Open Source AI
β AI models and frameworks publicly available for developers and researchers to access, modify, improve, and build upon collaboratively.
π AI Resources: https://whatsapp.com/channel/0029Va4QUHa6rsQjhITHK82y
Double Tap β€οΈ For More
1. Artificial Intelligence (AI)
β Technology that allows machines to mimic human intelligence like learning, reasoning, problem-solving, and decision-making. AI powers tools like Chat, recommendation systems, voice assistants, and self-driving technologies.
2. Machine Learning (ML)
β A subset of AI where systems learn patterns from data instead of being manually programmed. The more quality data ML models receive, the better they become at predictions and analysis.
3. Deep Learning
β An advanced form of machine learning that uses neural networks with multiple layers to process complex tasks like image recognition, speech understanding, and generative AI.
4. AI Agent
β An autonomous AI system capable of performing tasks, making decisions, interacting with tools, and completing workflows with minimal human input. AI agents are becoming the foundation of next-generation automation.
5. AI Model
β A trained computational system that processes inputs and generates outputs such as predictions, text, images, or recommendations based on learned patterns.
6. Training
β The process where AI models learn from massive datasets by identifying patterns, adjusting internal parameters, and improving accuracy over time.
7. Inference
β The operational stage where a trained AI model generates responses, predictions, or decisions for real-world use. Every Chat response is an example of inference.
8. Prompt
β Instructions, commands, or questions provided to an AI system. The clarity and detail of prompts directly impact the quality of AI outputs.
9. Prompt Engineering
β The skill of designing structured and optimized prompts to guide AI systems toward more accurate, useful, and context-aware responses.
10. Generative AI
β AI systems capable of creating original content such as text, images, music, videos, designs, and code instead of only analyzing existing information.
11. Token
β Small units of text processed by AI models. Tokens may represent words, parts of words, or symbols that help AI understand and generate language.
12. Hallucination
β A phenomenon where AI generates false, misleading, or fabricated information confidently due to prediction errors or lack of verified context.
13. Fine-Tuning
β The process of customizing a pre-trained AI model using specialized datasets so it performs better on specific tasks or industries.
14. Multimodal AI
β AI systems capable of processing and understanding multiple data formats together, including text, images, audio, and video.
15. LLM (Large Language Model)
β Massive AI models trained on huge text datasets to understand language, answer questions, summarize information, and generate human-like responses.
16. Neural Network
β A computational architecture inspired by the human brain, consisting of interconnected nodes that help AI recognize patterns and make decisions.
17. RAG (Retrieval-Augmented Generation)
β A technique where AI retrieves external or updated information before generating responses, improving factual accuracy and context relevance.
18. Embeddings
β Mathematical vector representations of text, images, or data that allow AI systems to understand meaning, similarity, and relationships between information.
19. Vector Database
β Specialized databases designed to store and search embeddings efficiently, enabling semantic search and advanced AI retrieval systems.
20. Agentic AI
β Advanced AI systems capable of reasoning, planning, memory handling, decision-making, and autonomously completing complex multi-step tasks.
21. Open Source AI
β AI models and frameworks publicly available for developers and researchers to access, modify, improve, and build upon collaboratively.
π AI Resources: https://whatsapp.com/channel/0029Va4QUHa6rsQjhITHK82y
Double Tap β€οΈ For More
β€13
β
K-Nearest Neighbors (KNN) Basicsππ€
KNN is a simple and powerful algorithm that makes predictions based on similar nearby data points.
πΉ 1. What is KNN?
KNN = K-Nearest Neighbors
β’ It classifies a new data point based on the nearest neighbors around it.
π₯ 2. How KNN Works
Step-by-step:
1. Choose value of K
2. Find nearest data points
3. Count categories of neighbors
4. Majority category becomes prediction
πΉ 3. Example
Predict if a fruit is Apple or Orange ππ
β’ If most nearby fruits are Apples β Prediction = Apple.
πΉ 4. What is K?
K = Number of nearest neighbors.
Example:
β’ K = 3 β Check nearest 3 neighbors
β’ K = 5 β Check nearest 5 neighbors
πΉ 5. Distance Measurement β
KNN uses distance to find nearest points.
Most common: Euclidean Distance
d = sqrt((x2 - x1)Β² + (y2 - y1)Β²)
Where:
β’ d = distance between two points
β’ x1, y1 = coordinates of first point
β’ x2, y2 = coordinates of second point
Example:
Point A = (1, 2) and Point B = (4, 6)
d = sqrt((4 - 1)Β² + (6 - 2)Β²) = sqrt(3Β² + 4Β²) = sqrt(9 + 16) = sqrt(25) = 5
πΉ 6. Implementation (Python)
πΉ 7. Advantages β
β’ Easy to understand
β’ No training phase
β’ Works well for small datasets
πΉ 8. Disadvantages
β’ Slow for large datasets
β’ Sensitive to irrelevant features
β’ Needs feature scaling
πΉ 9. Why KNN is Important?
β’ Beginner-friendly ML algorithm
β’ Used in recommendation systems
β’ Important interview topic
π― Todayβs Goal
β’ Understand nearest neighbors
β’ Learn value of K
β’ Understand distance concept
KNN = Prediction based on similarity ππ₯
π¬ Tap β€οΈ for more!
KNN is a simple and powerful algorithm that makes predictions based on similar nearby data points.
πΉ 1. What is KNN?
KNN = K-Nearest Neighbors
β’ It classifies a new data point based on the nearest neighbors around it.
π₯ 2. How KNN Works
Step-by-step:
1. Choose value of K
2. Find nearest data points
3. Count categories of neighbors
4. Majority category becomes prediction
πΉ 3. Example
Predict if a fruit is Apple or Orange ππ
β’ If most nearby fruits are Apples β Prediction = Apple.
πΉ 4. What is K?
K = Number of nearest neighbors.
Example:
β’ K = 3 β Check nearest 3 neighbors
β’ K = 5 β Check nearest 5 neighbors
πΉ 5. Distance Measurement β
KNN uses distance to find nearest points.
Most common: Euclidean Distance
d = sqrt((x2 - x1)Β² + (y2 - y1)Β²)
Where:
β’ d = distance between two points
β’ x1, y1 = coordinates of first point
β’ x2, y2 = coordinates of second point
Example:
Point A = (1, 2) and Point B = (4, 6)
d = sqrt((4 - 1)Β² + (6 - 2)Β²) = sqrt(3Β² + 4Β²) = sqrt(9 + 16) = sqrt(25) = 5
πΉ 6. Implementation (Python)
from sklearn.neighbors import KNeighborsClassifier
# Sample data
X = [[1], [2], [3], [4]]
y = [0, 0, 1, 1]
model = KNeighborsClassifier(n_neighbors=3)
model.fit(X, y)
print(model.predict([[2.5]]))
πΉ 7. Advantages β
β’ Easy to understand
β’ No training phase
β’ Works well for small datasets
πΉ 8. Disadvantages
β’ Slow for large datasets
β’ Sensitive to irrelevant features
β’ Needs feature scaling
πΉ 9. Why KNN is Important?
β’ Beginner-friendly ML algorithm
β’ Used in recommendation systems
β’ Important interview topic
π― Todayβs Goal
β’ Understand nearest neighbors
β’ Learn value of K
β’ Understand distance concept
KNN = Prediction based on similarity ππ₯
π¬ Tap β€οΈ for more!
β€10π₯°1
Some useful PYTHON libraries for data science
NumPy stands for Numerical Python. The most powerful feature of NumPy is n-dimensional array. This library also contains basic linear algebra functions, Fourier transforms, advanced random number capabilities and tools for integration with other low level languages like Fortran, C and C++
SciPy stands for Scientific Python. SciPy is built on NumPy. It is one of the most useful library for variety of high level science and engineering modules like discrete Fourier transform, Linear Algebra, Optimization and Sparse matrices.
Matplotlib for plotting vast variety of graphs, starting from histograms to line plots to heat plots.. You can use Pylab feature in ipython notebook (ipython notebook βpylab = inline) to use these plotting features inline. If you ignore the inline option, then pylab converts ipython environment to an environment, very similar to Matlab. You can also use Latex commands to add math to your plot.
Pandas for structured data operations and manipulations. It is extensively used for data munging and preparation. Pandas were added relatively recently to Python and have been instrumental in boosting Pythonβs usage in data scientist community.
Scikit Learn for machine learning. Built on NumPy, SciPy and matplotlib, this library contains a lot of efficient tools for machine learning and statistical modeling including classification, regression, clustering and dimensionality reduction.
Statsmodels for statistical modeling. Statsmodels is a Python module that allows users to explore data, estimate statistical models, and perform statistical tests. An extensive list of descriptive statistics, statistical tests, plotting functions, and result statistics are available for different types of data and each estimator.
Seaborn for statistical data visualization. Seaborn is a library for making attractive and informative statistical graphics in Python. It is based on matplotlib. Seaborn aims to make visualization a central part of exploring and understanding data.
Bokeh for creating interactive plots, dashboards and data applications on modern web-browsers. It empowers the user to generate elegant and concise graphics in the style of D3.js. Moreover, it has the capability of high-performance interactivity over very large or streaming datasets.
Blaze for extending the capability of Numpy and Pandas to distributed and streaming datasets. It can be used to access data from a multitude of sources including Bcolz, MongoDB, SQLAlchemy, Apache Spark, PyTables, etc. Together with Bokeh, Blaze can act as a very powerful tool for creating effective visualizations and dashboards on huge chunks of data.
Scrapy for web crawling. It is a very useful framework for getting specific patterns of data. It has the capability to start at a website home url and then dig through web-pages within the website to gather information.
SymPy for symbolic computation. It has wide-ranging capabilities from basic symbolic arithmetic to calculus, algebra, discrete mathematics and quantum physics. Another useful feature is the capability of formatting the result of the computations as LaTeX code.
Requests for accessing the web. It works similar to the the standard python library urllib2 but is much easier to code. You will find subtle differences with urllib2 but for beginners, Requests might be more convenient.
Additional libraries, you might need:
os for Operating system and file operations
networkx and igraph for graph based data manipulations
regular expressions for finding patterns in text data
BeautifulSoup for scrapping web. It is inferior to Scrapy as it will extract information from just a single webpage in a run.
NumPy stands for Numerical Python. The most powerful feature of NumPy is n-dimensional array. This library also contains basic linear algebra functions, Fourier transforms, advanced random number capabilities and tools for integration with other low level languages like Fortran, C and C++
SciPy stands for Scientific Python. SciPy is built on NumPy. It is one of the most useful library for variety of high level science and engineering modules like discrete Fourier transform, Linear Algebra, Optimization and Sparse matrices.
Matplotlib for plotting vast variety of graphs, starting from histograms to line plots to heat plots.. You can use Pylab feature in ipython notebook (ipython notebook βpylab = inline) to use these plotting features inline. If you ignore the inline option, then pylab converts ipython environment to an environment, very similar to Matlab. You can also use Latex commands to add math to your plot.
Pandas for structured data operations and manipulations. It is extensively used for data munging and preparation. Pandas were added relatively recently to Python and have been instrumental in boosting Pythonβs usage in data scientist community.
Scikit Learn for machine learning. Built on NumPy, SciPy and matplotlib, this library contains a lot of efficient tools for machine learning and statistical modeling including classification, regression, clustering and dimensionality reduction.
Statsmodels for statistical modeling. Statsmodels is a Python module that allows users to explore data, estimate statistical models, and perform statistical tests. An extensive list of descriptive statistics, statistical tests, plotting functions, and result statistics are available for different types of data and each estimator.
Seaborn for statistical data visualization. Seaborn is a library for making attractive and informative statistical graphics in Python. It is based on matplotlib. Seaborn aims to make visualization a central part of exploring and understanding data.
Bokeh for creating interactive plots, dashboards and data applications on modern web-browsers. It empowers the user to generate elegant and concise graphics in the style of D3.js. Moreover, it has the capability of high-performance interactivity over very large or streaming datasets.
Blaze for extending the capability of Numpy and Pandas to distributed and streaming datasets. It can be used to access data from a multitude of sources including Bcolz, MongoDB, SQLAlchemy, Apache Spark, PyTables, etc. Together with Bokeh, Blaze can act as a very powerful tool for creating effective visualizations and dashboards on huge chunks of data.
Scrapy for web crawling. It is a very useful framework for getting specific patterns of data. It has the capability to start at a website home url and then dig through web-pages within the website to gather information.
SymPy for symbolic computation. It has wide-ranging capabilities from basic symbolic arithmetic to calculus, algebra, discrete mathematics and quantum physics. Another useful feature is the capability of formatting the result of the computations as LaTeX code.
Requests for accessing the web. It works similar to the the standard python library urllib2 but is much easier to code. You will find subtle differences with urllib2 but for beginners, Requests might be more convenient.
Additional libraries, you might need:
os for Operating system and file operations
networkx and igraph for graph based data manipulations
regular expressions for finding patterns in text data
BeautifulSoup for scrapping web. It is inferior to Scrapy as it will extract information from just a single webpage in a run.
β€5
What does KNN stand for?
Anonymous Quiz
6%
A) Known Nearest Network
87%
B) K-Nearest Neighbors
6%
C) Kernel Neighbor Node
1%
D) Key Number Network
β€1
What does the value of K represent in KNN?
Anonymous Quiz
5%
A) Number of features
30%
B) Number of clusters
63%
C) Number of nearest neighbors
3%
D) Number of datasets
β€2
How does KNN make predictions?
Anonymous Quiz
3%
A) Using equations
92%
B) Using nearest data points
4%
C) Random prediction
2%
D) Using trees only
β€3
Which distance method is commonly used in KNN?
Anonymous Quiz
13%
A) Manhattan Distance
70%
B) Euclidean Distance
11%
C) Hamming Distance
7%
D) Cosine Similarity
β€2
What is a disadvantage of KNN?
Anonymous Quiz
9%
A) Easy to understand
16%
B) No training phase
70%
C) Slow for large datasets
5%
D) Simple implementation
β€2π1
β
Support Vector Machine (SVM) Basics π€π
π SVM is a powerful Machine Learning algorithm mainly used for classification problems.
It tries to find the best boundary (hyperplane) that separates different classes.
πΉ 1. What is SVM?
SVM = Support Vector Machine
π It separates data into categories by creating a decision boundary.
Example:
β Spam vs Not Spam
β Cat vs Dog
β Fraud vs Normal Transaction
π₯ 2. How SVM Works
π SVM finds the optimal hyperplane that maximizes the margin between classes.
Important Terms β
β Hyperplane β Decision boundary
β Margin β Distance between boundary and nearest points
β Support Vectors β Closest data points to boundary
πΉ 3. Example
Imagine two groups of points:
π΅ Blue points
π΄ Red points
SVM draws the best line separating them.
πΉ 4. Types of SVM
β Linear SVM
π Used when data is linearly separable.
β Non-Linear SVM
π Uses Kernel Trick for complex data.
Popular kernels:
β Linear
β Polynomial
β RBF (Radial Basis Function)
πΉ 5. Implementation (Python)
πΉ 6. Advantages β
β Works well with high-dimensional data
β Effective for classification
β Powerful for complex datasets
πΉ 7. Disadvantages
β Slow for very large datasets
β Harder to interpret
β Sensitive to parameter tuning
πΉ 8. Why SVM is Important?
β Popular interview topic
β Used in image classification & NLP
β Powerful classification algorithm
π― Todayβs Goal
β Understand hyperplane & margin
β Learn support vectors
β Understand kernels
π SVM = Smart boundary-based classification π₯
π¬ Tap β€οΈ for more!
π SVM is a powerful Machine Learning algorithm mainly used for classification problems.
It tries to find the best boundary (hyperplane) that separates different classes.
πΉ 1. What is SVM?
SVM = Support Vector Machine
π It separates data into categories by creating a decision boundary.
Example:
β Spam vs Not Spam
β Cat vs Dog
β Fraud vs Normal Transaction
π₯ 2. How SVM Works
π SVM finds the optimal hyperplane that maximizes the margin between classes.
Important Terms β
β Hyperplane β Decision boundary
β Margin β Distance between boundary and nearest points
β Support Vectors β Closest data points to boundary
πΉ 3. Example
Imagine two groups of points:
π΅ Blue points
π΄ Red points
SVM draws the best line separating them.
πΉ 4. Types of SVM
β Linear SVM
π Used when data is linearly separable.
β Non-Linear SVM
π Uses Kernel Trick for complex data.
Popular kernels:
β Linear
β Polynomial
β RBF (Radial Basis Function)
πΉ 5. Implementation (Python)
from sklearn.svm import SVC
# Sample data
X = [[1], [2], [3], [4]]
y = [0, 0, 1, 1]
model = SVC()
model.fit(X, y)
print(model.predict([[3]]))
πΉ 6. Advantages β
β Works well with high-dimensional data
β Effective for classification
β Powerful for complex datasets
πΉ 7. Disadvantages
β Slow for very large datasets
β Harder to interpret
β Sensitive to parameter tuning
πΉ 8. Why SVM is Important?
β Popular interview topic
β Used in image classification & NLP
β Powerful classification algorithm
π― Todayβs Goal
β Understand hyperplane & margin
β Learn support vectors
β Understand kernels
π SVM = Smart boundary-based classification π₯
π¬ Tap β€οΈ for more!
β€20π2
What does SVM stand for?
Anonymous Quiz
10%
A) Statistical Vector Model
76%
B) Support Vector Machine
12%
C) Supervised Vector Method
2%
D) Support Variable Machine
What is the main purpose of SVM?
Anonymous Quiz
8%
A) Data cleaning
26%
B) Clustering
59%
C) Classification
6%
D) Visualization
π₯°1
Which kernel is commonly used in non-linear SVM?
Anonymous Quiz
23%
A) Binary kernel
29%
B) Matrix kernel
45%
C) RBF kernel
2%
D) Table kernel
β€1π1
What are Support Vectors?
Anonymous Quiz
8%
A) Random points
24%
B) Farthest points from boundary
57%
C) Closest points to boundary
10%
D) Cluster centers
β€1
What is the decision boundary in SVM called?
Anonymous Quiz
15%
A) Margin
61%
B) Hyperplane
20%
C) Kernel
4%
D) Cluster
π2π’1
β
Clustering with K-Means Algorithm ππ€
π K-Means is one of the most popular unsupervised learning algorithms. It groups similar data points into clusters.
πΉ 1. What is Clustering?
Clustering = Grouping similar data together
π No labels are provided. The algorithm finds hidden patterns automatically.
Examples:
β Customer segmentation
β Grouping similar products
β Image compression
π₯ 2. What is K-Means?
K-Means divides data into K clusters.
π Each cluster has a center called Centroid.
πΉ 3. How K-Means Works
Step-by-step:
1οΈβ£ Choose number of clusters (K)
2οΈβ£ Select random centroids
3οΈβ£ Assign points to nearest centroid
4οΈβ£ Update centroid positions
5οΈβ£ Repeat until stable
πΉ 4. Example
π Customer Segmentation
Customers are grouped based on:
β Age
β Income
β Spending habits
πΉ 5. Implementation (Python)
πΉ 6. Important Terms β
β Cluster β Group of similar points
β Centroid β Center of cluster
β K β Number of clusters
πΉ 7. Choosing Best K (Elbow Method) β
π Elbow Method helps find optimal K.
The graph looks like an elbow π»
πΉ 8. Advantages
β Simple and fast
β Works well for grouped data
β Easy to implement
πΉ 9. Disadvantages
β Need to choose K manually
β Sensitive to outliers
β Not good for irregular shapes
πΉ 10. Why K-Means is Important?
β Used in recommendation systems
β Customer segmentation
β Market analysis
π― Todayβs Goal
β Understand clustering
β Learn centroids & clusters
β Implement K-Means
π K-Means = Finding hidden groups in data π₯
π¬ Tap β€οΈ for more!
π K-Means is one of the most popular unsupervised learning algorithms. It groups similar data points into clusters.
πΉ 1. What is Clustering?
Clustering = Grouping similar data together
π No labels are provided. The algorithm finds hidden patterns automatically.
Examples:
β Customer segmentation
β Grouping similar products
β Image compression
π₯ 2. What is K-Means?
K-Means divides data into K clusters.
π Each cluster has a center called Centroid.
πΉ 3. How K-Means Works
Step-by-step:
1οΈβ£ Choose number of clusters (K)
2οΈβ£ Select random centroids
3οΈβ£ Assign points to nearest centroid
4οΈβ£ Update centroid positions
5οΈβ£ Repeat until stable
πΉ 4. Example
π Customer Segmentation
Customers are grouped based on:
β Age
β Income
β Spending habits
πΉ 5. Implementation (Python)
from sklearn.cluster import KMeans
# Sample data
X = [[1], [2], [10], [11]]
model = KMeans(n_clusters=2)
model.fit(X)
print(model.labels_)
πΉ 6. Important Terms β
β Cluster β Group of similar points
β Centroid β Center of cluster
β K β Number of clusters
πΉ 7. Choosing Best K (Elbow Method) β
π Elbow Method helps find optimal K.
The graph looks like an elbow π»
πΉ 8. Advantages
β Simple and fast
β Works well for grouped data
β Easy to implement
πΉ 9. Disadvantages
β Need to choose K manually
β Sensitive to outliers
β Not good for irregular shapes
πΉ 10. Why K-Means is Important?
β Used in recommendation systems
β Customer segmentation
β Market analysis
π― Todayβs Goal
β Understand clustering
β Learn centroids & clusters
β Implement K-Means
π K-Means = Finding hidden groups in data π₯
π¬ Tap β€οΈ for more!
β€14π2π₯1
K-Means belongs to which type of Machine Learning?
Anonymous Quiz
28%
A) Supervised Learning
11%
B) Reinforcement Learning
57%
C) Unsupervised Learning
4%
D) Deep Learning
β€3
What does the βKβ in K-Means represent?
Anonymous Quiz
9%
A) Number of features
81%
B) Number of clusters
4%
C) Number of rows
5%
D) Number of algorithms
β€4π1