Download Introduction to Machine Learning and more Exams Nursing in PDF only on Docsity! Introduction to Machine Learning What are examples of Machine Learning? - ANS>Facebook photos, tagging, recommendations, marking junk emails as spam, etc. Machine learning is conducted through learning the algorithms. What is machine learning based off of? - ANS>Machine learning is based off of AI (Artificial Intelligence). It is grown off the field of AI. People cannot always write scripts and code for the machine to learn. What's a way for machines to process properly? - ANS>The only way to fix and find scripts/code/dataset is to let the machine learn on this own. What is database mining? - ANS>Large datasets from growth of automation and web. For example: web click data, medical records, biology, engineering Supervised Learning - ANS>In this learning, we're already given a data set and already know what the correct output should look like. Having the idea that there is a relationship between the input and the output. What's an example of supervised learning? - ANS>Predicting price on house. Predicting the price of the house based on the square footage. What method can be used to predict the pricing on houses on a dataset? - ANS>Dataset prediction can be decided through a straight line of data or quadratic line through more data. How would you explain supervised learning? - ANS>Supervised learning is when you give the algorithm the right dataset. where the right answers were given. Every example determines the right price. Producing more of these right answers. These are predicted from actual right answers and right data. What's another example of a classification problem? - ANS>Given a patient with a tumor, we have to predict whether the tumor is malignant or benign. Supervised learning problem You're running a company, and you want to develop learning algorithms to address each of two problems. Problem 1: You have a large inventory of identical items. You want to predict how many of these items will sell over the next 3 months. Problem 2: You'd like software to examine individual customer accounts, and for each account decide if it has been hacked/compromised. Should you treat these as classification or as regression problems? - Treat both as classification problems. - Treat problem 1 as a classification problem, problem 2 as a - regression problem. - Treat problem 1 as a regression problem, problem 2 as a classification problem. - Treat both as regression problems. - ANS>Treat problem 1 as a regression problem, problem 2 as a classification problem. (Correct ) What is Arthur Samuel's definition of machine learning? (1959) - ANS>Machine learning is the field of study that gives computers the ability to learn without being explicitly programmed. What is Tom Mitchell's definition of machine learning? (1998) - ANS>Well-posed learning problem: A computer program is said to learn from experience E with respect to some task T and some performance measure P, if its performance on T, as measured by P, improves with experience E. "A computer program is said to learn from experience E with respect to some task T and some performance measure P, if its performance on T, as measured by P, improves with experience E." Suppose your email program watches which emails you do or do not mark as spam, and based on that learns how to better filter spam. What is the task T in this setting? Classifying emails as spam or not spam. Watching you label emails as spam or not spam. The number (or fraction) of emails correctly classified as spam/not spam. None of the above—this is not a machine learning problem. - ANS>Classifying emails as spam or not spam is task T. Rationale: Watching you label emails as spam or not spam is task E. The number (or fraction) of emails correctly classified as spam/not spam is task P. What is Unsupervised Learning? - ANS>Unsupervised learning allows us to approach problems with little or no idea what our results should look like. We can derive this structure by clustering the data based on relationships among the variables in the data. What feedback can we get from unsupervised learning? - ANS>With unsupervised learning there is no feedback based on the prediction results. There is no real data we can predict on.