Skip to content

Commit

Permalink
Added MNIST module and dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Mekhedkin-Meskhi committed Nov 15, 2017
1 parent 773738c commit a50eb3b
Show file tree
Hide file tree
Showing 5 changed files with 84,168 additions and 4 deletions.
10 changes: 6 additions & 4 deletions complexity.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import modules.complexity_estimator as ce
import modules.util as u
from modules import mnist
from modules.oracle import Oracle
from nd_boundary_plot.plots import nd_boundary_plot

Expand Down Expand Up @@ -119,10 +120,11 @@ def main():

# experiments.append('moons')
# datasets.append((u.hastie(1000), u.hastie(1000)))
datasets.append((make_gaussian_quantiles(n_samples=500, n_features=10, n_classes=3),
make_gaussian_quantiles(n_samples=500, n_features=10, n_classes=3)))
experiments.append('gauus')

# datasets.append((make_gaussian_quantiles(n_samples=500, n_features=10, n_classes=3),
# make_gaussian_quantiles(n_samples=500, n_features=10, n_classes=3)))
# experiments.append('gauus')
datasets.append((mnist.load_mnist(), mnist.load_mnist_rotated()))
experiments.append('MNIST_vs_MNIST_Rotated')
active(classifiers=clfs, datasets=datasets, experiments=experiments)

if __name__ == "__main__":
Expand Down
Loading

0 comments on commit a50eb3b

Please sign in to comment.