public void setUp() throws Exception {
super.setUp();
algorithm = new CBayesAlgorithm();
BayesParameters bayesParams = new BayesParameters();
bayesParams.setGramSize(1);
store = new InMemoryBayesDatastore(bayesParams);
// String[] labels = new String[]{"a", "b", "c", "d", "e"};
// long[] labelCounts = new long[]{6, 20, 60, 100, 200};
// String[] features = new String[]{"aa", "bb", "cc", "dd", "ee"};
store.setSigmaJSigmaK(500.0);