100% de satisfacción garantizada Inmediatamente disponible después del pago Tanto en línea como en PDF No estas atado a nada 4,6 TrustPilot
logo-home
Examen

MATH 425 exam 2 all answers correct

Puntuación
-
Vendido
-
Páginas
10
Grado
A+
Subido en
16-10-2024
Escrito en
2024/2025

MATH 425 exam 2 all answers correct Unsupervised learning methods are needed when... data only contains features and no label What are some of the possible goals within unsupervised learning framework? One possible goal within the unsupervised learning framework is to discover interesting things about the data that you are working with. This includes questions such as "Are there any subgroups among the observations or variables that we can discover?", and "Do you notice any hidden patterns or structures within the data?". To achieve these goals, we can use methods such as Clustering, and PCA. Which of the following is not an unsupervised learning approach? K-NN What is the main challenge in unsupervised learning compared to supervised learning? Due to the fact that unsupervised learning is much more subjective than supervised learning, there is no clear and simple goal for the analysis. Instead we are able to go on a case by case basis depending on the data. Clustering seek a partition of the data into distinct groups so that theobservations within each group are quite similar to each other. True Describe two distinct examples of clustering at play in our daily life. In one of my classes, my professor made us do a partner project. He basically split us into 2 groups, the upper half of the class, and the lower half (upper being stronger student, lower being weaker students). He then partnered us up by picking one strong student with one weaker student. The 2 groups he split the class into would be an example of putting us into subgroups.Another example is that I work for the Professional Edge center on campus. One of the biggest things we keep track of is the number of appointments that are made throughout the entire center. We then are able to create subgroups from all the student data. This usually includes things such as which coach they had a meeting with, what their major is, what year they are, etc. K-Means clustering involves specifying the number of clusters Centroid refers to a point which is the average of all the points in the cluster Describe the K-Means algorithm. The 1st step in the K-Means algorithm is to randomly assign number from 1-K to each observation. You can also select K distinct points, that are as far from each other as possible, and label them as the centroid of one cluster. The 2nd step is to iterate until the cluster assignments quit changing. This can happen in 2 ways. the 1st one being for each of the k clusters, compute the clusters centroid. The 2nd one is to assign each observation to the cluster whose centroid is closest. The main idea behind K-Means is to have a small within-cluster variation Hierarchical Clustering has the following major advantage over K-Means the number of clusters is not specified at the start Why do we need to scale features in certain cases? Scaling features can be a very useful tool in certain cases. If you look at the "Importance of Feature Scales" in the lecture slides, you can physically see how much of a difference scaling can make. Like in the example shown with the computers and socks, there may be more socks being sold at the store, but the store is making a lot less on all the socks sold, compared to just 1 computer being sold. Looking at the very last graph in the slides, you can see that just selling a few computers creates a much larger profit than the socks. This can help the company realize where they should focus on making their sales. The other 2 graphs are very misleading, and if a company did not scale, they make not be focused on the right areas. Describe the Principal Component Analysis (PCA)? Principal Component Analysis, also known as PCA, is a very popular approach for producing a low-dimensional representation of the dataset. This can help when we are given a larger data set of correlated features. PCA can allow us to summarize the set with a much smaller number of representative features that can explain the majority of the variability in the original set. PCA can also serve as a tool for data visualization PCA transforms the original data (X1, X2, ..., Xp) into new features that are uncorrelated. True Explain the process of choosing the number of principal components for further analysis. We look at the variance being explained by each component to decide how many to choose. Explain how PCA provides us with a low dimensional representation of the data. choosing a few loading vector components corresponds to a low dimensional repr

Mostrar más Leer menos
Institución
MATH 425 Exm 2
Grado
MATH 425 exm 2

Vista previa del contenido

MATH 425 exam 2 all answers correct

Unsupervised learning methods are needed when... ✅data only contains features and no label



What are some of the possible goals within unsupervised learning framework? ✅One possible goal
within the unsupervised learning framework is to discover interesting things about the data that you are
working with. This includes questions such as "Are there any subgroups among the observations or
variables that we can discover?", and "Do you notice any hidden patterns or structures within the
data?". To achieve these goals, we can use methods such as Clustering, and PCA.



Which of the following is not an unsupervised learning approach? ✅K-NN



What is the main challenge in unsupervised learning compared to supervised learning? ✅Due to the fact
that unsupervised learning is much more subjective than supervised learning, there is no clear and
simple goal for the analysis. Instead we are able to go on a case by case basis depending on the data.



Clustering seek a partition of the data into distinct groups so that theobservations within each group are
quite similar to each other. ✅True



Describe two distinct examples of clustering at play in our daily life. ✅In one of my classes, my professor
made us do a partner project. He basically split us into 2 groups, the upper half of the class, and the
lower half (upper being stronger student, lower being weaker students). He then partnered us up by
picking one strong student with one weaker student. The 2 groups he split the class into would be an
example of putting us into subgroups.Another example is that I work for the Professional Edge center on
campus. One of the biggest things we keep track of is the number of appointments that are made
throughout the entire center. We then are able to create subgroups from all the student data. This
usually includes things such as which coach they had a meeting with, what their major is, what year they
are, etc.



K-Means clustering involves ✅specifying the number of clusters



Centroid refers to ✅a point which is the average of all the points in the cluster

, Describe the K-Means algorithm. ✅The 1st step in the K-Means algorithm is to randomly assign number
from 1-K to each observation. You can also select K distinct points, that are as far from each other as
possible, and label them as the centroid of one cluster. The 2nd step is to iterate until the cluster
assignments quit changing. This can happen in 2 ways. the 1st one being for each of the k clusters,
compute the clusters centroid. The 2nd one is to assign each observation to the cluster whose centroid
is closest.



The main idea behind K-Means ✅is to have a small within-cluster variation



Hierarchical Clustering has the following major advantage over K-Means ✅the number of clusters is not
specified at the start



Why do we need to scale features in certain cases? ✅Scaling features can be a very useful tool in certain
cases. If you look at the "Importance of Feature Scales" in the lecture slides, you can physically see how
much of a difference scaling can make. Like in the example shown with the computers and socks, there
may be more socks being sold at the store, but the store is making a lot less on all the socks sold,
compared to just 1 computer being sold. Looking at the very last graph in the slides, you can see that
just selling a few computers creates a much larger profit than the socks. This can help the company
realize where they should focus on making their sales. The other 2 graphs are very misleading, and if a
company did not scale, they make not be focused on the right areas.



Describe the Principal Component Analysis (PCA)? ✅Principal Component Analysis, also known as PCA,
is a very popular approach for producing a low-dimensional representation of the dataset. This can help
when we are given a larger data set of correlated features. PCA can allow us to summarize the set with a
much smaller number of representative features that can explain the majority of the variability in the
original set. PCA can also serve as a tool for data visualization



PCA transforms the original data (X1, X2, ..., Xp) into new features that are uncorrelated. ✅True



Explain the process of choosing the number of principal components for further analysis. ✅We look at
the variance being explained by each component to decide how many to choose.



Explain how PCA provides us with a low dimensional representation of the data. ✅choosing a few
loading vector components corresponds to a low dimensional representation.

Escuela, estudio y materia

Institución
MATH 425 exm 2
Grado
MATH 425 exm 2

Información del documento

Subido en
16 de octubre de 2024
Número de páginas
10
Escrito en
2024/2025
Tipo
Examen
Contiene
Preguntas y respuestas

Temas

Conoce al vendedor

Seller avatar
Los indicadores de reputación están sujetos a la cantidad de artículos vendidos por una tarifa y las reseñas que ha recibido por esos documentos. Hay tres niveles: Bronce, Plata y Oro. Cuanto mayor reputación, más podrás confiar en la calidad del trabajo del vendedor.
CertifiedGrades Chamberlain College Of Nursing
Ver perfil
Seguir Necesitas iniciar sesión para seguir a otros usuarios o asignaturas
Vendido
144
Miembro desde
3 año
Número de seguidores
61
Documentos
8740
Última venta
2 semanas hace
High Scores

Hi there! Welcome to my online tutoring store, your ultimate destination for A+ rated educational resources! My meticulously curated collection of documents is designed to support your learning journey. Each resource has been carefully revised and verified to ensure top-notch quality, empowering you to excel academically. Feel free to reach out to consult with me on any subject matter—I'm here to help you thrive!

3.9

38 reseñas

5
21
4
6
3
2
2
3
1
6

Documentos populares

Recientemente visto por ti

Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes