Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 1.66 KB

File metadata and controls

20 lines (15 loc) · 1.66 KB

Machine Learning Experiments

A Python3 repo where multiple, independent, Machine Learning programs are shared.

Each folder (with the exception of the "common" folder) has a self-contained Machine Learning program that can be independently executed.

Here is a list of what each of them do:

  1. noisy
  • Goal: Train a model to clean-up noised images
  • Category: Multioutput-Multiclass classification (a.k.a simply "Multioutput classification")
  • Summary: This trains a model using pairs of noised and clean MNIST images.
  • Prediction examples:
Inputs Outputs
Noisy image 1 Clean image 1
Noisy image 2 Clean image 2
Noisy image 3 Clean image 3
Noisy image 4 Clean image 4