Skip to content

Commit

Permalink
Cleanup packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
arnocandel committed Jan 9, 2014
1 parent 596fb9f commit 221bfee
Showing 1 changed file with 18 additions and 11 deletions.
29 changes: 18 additions & 11 deletions h2o-samples/src/main/java/samples/NeuralNetMnist.java
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
package samples;

import hex.*;
import hex.Layer;
import hex.Layer.VecSoftmax;
import hex.Layer.VecsInput;
import hex.NeuralNet;
import hex.NeuralNet.Errors;
import hex.Trainer;
import hex.rng.MersenneTwisterRNG;

import java.io.*;
import java.util.*;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.zip.GZIPInputStream;

import water.UKV;

import water.Job;
import water.TestUtil;
import water.fvec.*;
import water.util.Utils;
import water.UKV;
import water.api.FrameSplit;
import water.fvec.AppendableVec;
import water.fvec.Frame;
import water.fvec.NewChunk;
import water.fvec.Vec;
import water.util.Utils;

import java.io.DataInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.util.Timer;
import java.util.TimerTask;
import java.util.UUID;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.zip.GZIPInputStream;

/**
* Runs a neural network on the MNIST dataset.
Expand Down

0 comments on commit 221bfee

Please sign in to comment.