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, 24.06.2019 05:00
Who is most likely be your target audience if you create a slide presentation that had yellow background and purple text
Answers: 2
question
Computers and Technology, 25.06.2019 02:00
Software and services are used to conceive, plan, and execute projects in any field. these tools are excellent methods of increasing the probability of successful projects. open source linux project management mind-mapping
Answers: 2
question
Computers and Technology, 25.06.2019 05:10
Create a console project in c#. 1. create an interface "imyinterface.cs" - add a method "string imessage()" 2. create a class named "c1.cs" - add 4 private data members, create property for each data member double loanamnout=0.0; double years=0.0; double interests=0.0; double interestrate=0.0; 3. - add a constructor with parameters to assign values to loanamnout, years, interestrate with values that user entered. 4. - add one method “payinterests()” to return the interests interests = loanamnout * interestrate * years 5. - inheritate "imyinterface", implement the method " imessage()", return string "be ready! ” 6. in program.cs, have users to enter loanamnout, years, interestrate. - call method payinterests() to display total interests. - call imessage() to display "be ready! ”
Answers: 3
question
Computers and Technology, 25.06.2019 19:20
Processor speed is a measurement of what?
Answers: 1
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, 30.11.2021 23:50
question
Mathematics, 30.11.2021 23:50
Questions on the website: 13722367