



Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
MACHINE LEARNING TEST 2025....
Typology: Exams
1 / 6
This page cannot be seen from the preview
Don't miss anything!




Artificial intelligence - ANSWER AI is typically defined as the ability of a machine to perform cognitive functions we associate with human minds, such as perceiving, reasoning, learning, and problem-solving. Machine learning - ANSWER Machine- learning algorithms detect patterns and learn how to make predictions and recommendations by processing data and experiences, rather than by receiving explicit programming instruction. The algorithms also adapt in response to new data and experiences to improve efficacy over time. Supervised learning - ANSWER An algorithm uses training data and feedback from humans to learn the relationship of given inputs to a given output (eg, how the inputs "time of year" and "interest rates" predict housing prices) Unsupervised learning - ANSWER An algorithm explores input data without being given an explicit output variable (eg, explores customer demographic data to identify patterns) Reinforcement learning - ANSWER An algorithm learns to perform a task simply by trying to maximize rewards it receives for its actions (eg, maximizes points it receives for increasing returns of an investment portfolio) Linear regression (Supervised) - ANSWER Highly interpretable, standard method for model- ing the past relationship between independent input variables and dependent output variables (which can have an infinite number of values) to help predict future values of the output variables Logistic regression (Supervised) - ANSWER Extension of linear regression that's used for classifation tasks, meaning the output variable is binary (eg, only black or white) rather than continuous (eg, an infinite list of potential colors) Linear/quadratic discriminant analysis (Supervised) - ANSWER Upgrades a logistic regression to deal with nonlinear problems—those in which changes to
the value of input variables do not result in proportional changes to the output variables. Decision tree (Supervised) - ANSWER Highly interpretable classification or regression model that splits data-feature values into branches at decision nodes (eg, if a feature is a color, each possible color becomes a new branch) until a final decision output is made Naive Bayes (Supervised) - ANSWER Classification technique that applies Bayes theorem, which allows the probability of an event to be calculated based on knowledge of factors that might affect that event (eg, if an email contains the word "money," then the probability of it being spam is high) Bayes theorem (Supervised) - ANSWER Allows the probability of an event to be calculated based on knowledge of factors that might affect that event Support vector machine (Supervised) - ANSWER A technique that's typically used for classification but can be transformed to perform regression. It draws an optimal division between classes (as wide as possible). It also can be quickly generalized to solve nonlinear problems Random forest (Supervised) - ANSWER Classification or regression model that improves the accuracy of a simple decision tree by generating multiple decision trees and taking a majority vote of them to predict the output, which is a continuous variable (eg, age) for a regression problem and a discrete variable (eg, either black, white, or red) for classification AdaBoost (Supervised) - ANSWER Classification or regression technique that uses a multitude of models to come up with a decision but weighs them based on their accuracy in predicting the outcome Gradient-boosting trees (Supervised) - ANSWER Classification or regression technique that generates decision trees sequentially, where each tree focuses on correcting the errors coming from the previous tree model. The final output is a combination of the results from all trees Simple neural network (Supervised) - ANSWER Model in which artificial neurons (software- based calculators) make up three layers (an input layer, a
AdaBoost (Business Case) - ANSWER Detect fraudulent activity in credit- card transactions. Achieves lower accuracy than deep learning Simple, low-cost way to classify images (eg, recognize land usage from satellite images for climate-change models). Achieves lower accuracy than deep learning Gradient-boosting trees (Business Case) - ANSWER Forecast product demand and inventory levels Predict the price of cars based on their characteristics (eg, age and mileage) Simple neural network (Business Case) - ANSWER Predict the probability that a patient joins a healthcare program Predict whether registered users will be willing or not to pay a particular price for a product K-means clustering (Unsupervised) - ANSWER Puts data into a number of groups (k) that each contain data with similar characteristics (as determined by the model, not in advance by humans) Gaussian mixture model (Unsupervised) - ANSWER A generalization of k- means clustering that provides more flexibility in the size and shape of groups (clusters) Hierarchical clustering (Unsupervised) - ANSWER Splits or aggregates clusters along a hierarchical tree to form a classification system Recommender system (Unsupervised) - ANSWER Often uses cluster behavior prediction to identify the important data necessary for making a recommendation K-means clustering (Business Case) - ANSWER Segment customers into groups by distinct charateristics (eg, age group)— for instance, to better assign marketing campaigns or prevent churn
Gaussian mixture model (Business Case) - ANSWER Segment customers to better assign marketing campaigns using less-distinct customer characteristics (eg, product preferences) Segment employees based on likelihood of attrition Hierarchical clustering (Business Case) - ANSWER Cluster loyalty-card customers into progressively more micro-segmented groups Inform product usage/development by grouping customers mentioning keywords in social-media data Recommender system (Business Case) - ANSWER Recommend what movies consumers should view based on preferences of other customers with similar attributes Recommend news articles a reader might want to read based on the article she or he is reading Reinforcement Learning (Business Cases) - ANSWER Optimize the trading strategy for an options-trading portfolio Balance the load of electricity grids in varying demand cycles Stock and pick inventory using robots Optimize the driving behavior of self-driving cars Optimize pricing in real time for an online auction of a product with limited supply Deep Learning - ANSWER A type of machine learning with interconnected layers of neurons which can ingest vast amounts of input data and process them through multiple layers that learn increasingly complex features of the data at each layer. The network can then make a determination about the data, learn if its determination is correct, and use what it has learned to make determinations about new data.