You are on page 1of 2

Assignment 7

Run these codes and tell me what do you learn from these algorithm?
Explain main ideas and how to use it? Note: I will have reused these algorithms in Final Exam

1. https://scikit-learn.org/stable/auto_examples/applications/plot_digits_denoising.html#sphx-glr-
auto-examples-applications-plot-digits-denoising-py
we use the example of the object for detecting and recognise it to sharpen the image untill it’s
relatively look the same to the example
2. https://scikit-learn.org/stable/auto_examples/applications/
plot_outlier_detection_wine.html#sphx-glr-auto-examples-applications-plot-outlier-detection-
wine-py

3. https://scikit-learn.org/stable/auto_examples/applications/
plot_tomography_l1_reconstruction.html#sphx-glr-auto-examples-applications-plot-
tomography-l1-reconstruction-py

This project will reconstruct the image base on linear regression even the intentional added
noises

4. https://scikit-learn.org/stable/auto_examples/applications/plot_face_recognition.html#sphx-
glr-auto-examples-applications-plot-face-recognition-py
Give the code images of the person we want to classify and it will compare the data we gave it
with the live data that we submit. It will compare the live data with all data which we gave in
before and return the result with the smallest differences after the comparision.
5. https://scikit-learn.org/stable/auto_examples/feature_selection/plot_rfe_digits.html#sphx-glr-
auto-examples-feature-selection-plot-rfe-digits-py
6. https://scikit-learn.org/stable/auto_examples/ensemble/plot_adaboost_regression.html#sphx-
glr-auto-examples-ensemble-plot-adaboost-regression-py
A decision tree is boosted using the AdaBoost.R2 algorithm on a 1D sinusoidal dataset with a
small amount of Gaussian noise. 299 boosts (300 decision trees) is compared with a single
decision tree regressor. As the number of boosts is increased the regressor can fit more detail.
7. https://scikit-learn.org/stable/auto_examples/decomposition/plot_image_denoising.html#sphx-
glr-auto-examples-decomposition-plot-image-denoising-py
An example comparing the effect of reconstructing noisy fragments of a raccoon face image
using firstly online Dictionary Learning and various transform methods.
8. https://scikit-learn.org/stable/auto_examples/covariance/
plot_mahalanobis_distances.html#sphx-glr-auto-examples-covariance-plot-mahalanobis-
distances-py
This example shows covariance estimation with Mahalanobis distances on Gaussian distributed
data.
9. https://scikit-learn.org/stable/auto_examples/cluster/
plot_agglomerative_clustering.html#sphx-glr-auto-examples-cluster-plot-agglomerative-
clustering-py
This example shows the effect of imposing a connectivity graph to capture local structure in the
data. The graph is simply the graph of 20 nearest neighbors.
10. https://scikit-learn.org/stable/auto_examples/cluster/plot_affinity_propagation.html#sphx-glr-
auto-examples-cluster-plot-affinity-propagation-py

You might also like