subject

Thus, we can think of our data as 1000 observations of a 10000 variables (one variable per pixel). Run the followingcode to get a matrix of face observations. face_mat <-sapply(1:1000,function(i)as. numeric(faces_array[, , i]))%>%tWhen we want to visualization an image, we need to take the 10000 dimensional vector and reconstruct it as a matrix. The codeplot_facetakes a single 10000 dimensional vector (e. g. a column offace_mat), converts it back to amatrix, and plots the resulting image. You can test this functionality by printing a random face from the dataset:plot_face(face_mat[sample(1 000, 1), ]).plot_face <-function(image_vector) {plot(as. cimg(t(matrix(image_vector, ncol=100))),axes=FALSE, asp=1)}a) Find the "average" face in this dataset by averaging all of the columns inface_mat. Plot the average face bycallingplot_faceon the average. b) Run PCA onface_matsettingcenter=TRUEandscal e=FALSE. In class we mentioned that in general it is bestifscale=TRUEbecause it puts all variables on the same scale and we don’t have to worry about the units of thevariables (remember, the scale of the variables affects our results). In general, this is good practice, especiallywhen the predictor variables are of mixed types. Here, each variable represents a single pixel intensity (in black& white) and so all variables already have the same units and same scale (minimum of 0 and maximum of 255).In this case, settingscale=FALSEactually gives better results. Plot the PVE and cumulative PVE from thePCA. How many PCs do you need to explain at least 50% of the total variation in the face images?c) Plot the first 16 principle component directions as faces using theplot_facefunction (these are the columnsof therotationmatrix).Early researchers termed these "eigenfaces" since they are eigenvectors of thematrix of faces. The code below will adjust the margins of you plot and specifies a layout for the 16 images. par(mfrow=c(4,4))specifies a grid of 4 x 4 images. Each time you callplot_faceit will plot the next face inone of the new grid cells. All you need to do is callplot_face16 times (please use aforloop). Note that theseimages describe "directions" of maximum variability in the face images. You should interpret light and darkregions in the eigenfaces as regions of highcontrast, e. g. your interpretation should not change if you invertedblack and white in the images. par(mar=c(1,1,1,1))par(mfrow=c(4,4) )d) In this part, we will examine faces that have the highest and lowest values for specific PCs. Plot the faceswith the 5 largest values on PC1 and the 5 smallest values for PC1. Based on the example faces, and the firsteigenface from the previous part and the 10 example images, what aspect of variability in the face images is captured by the first component?

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 06:00
The width of a piece of rectangular land is 5m shorter rhan 1/3 of its length .find the width of the land if the length is 60m,150m.
Answers: 1
question
Computers and Technology, 23.06.2019 14:30
Select the correct answer. sean is a computer programmer. he has programmed an application for toddlers that plays nursery rhymes. however, a logic error has occurred in the program. which problem is a likely consequence of the error? a. the program crashes every time the user wants to play the nursery rhymes. b. the program crosses its buffer boundaries and overwrites an adjacent program. c. the program plays a different nursery rhyme than the one the user intended to play. d. the program shows different structures in its programming language code. e. the program introduces new viruses every time the user plays a nursery rhyme.
Answers: 1
question
Computers and Technology, 24.06.2019 23:00
Why is it preferable to code web pages in html format? a. to create more lines code b. to apply general formatting rules c. to display properly as search results in all browsers d. to add meaning to the document
Answers: 1
question
Computers and Technology, 25.06.2019 04:10
This might be a bit off-topic, but i'm having trouble with a certain arg made by game theory. if there are any theorists out there that wanna , it would be appreciated!
Answers: 2
You know the right answer?
Thus, we can think of our data as 1000 observations of a 10000 variables (one variable per pixel). R...
Questions
question
Mathematics, 19.09.2021 05:50
Questions on the website: 13722360