conf.set("cnaivebayes.labelDocumentCounts", labelDocumentCountString);
log.info(params.print());
if (params.get("dataSource").equals("hbase")) {
HBaseConfiguration hc = new HBaseConfiguration(new Configuration());
HTableDescriptor ht = new HTableDescriptor(output);
HColumnDescriptor hcd = new HColumnDescriptor(BayesConstants.HBASE_COLUMN_FAMILY + ':');
hcd.setBloomfilter(true);
hcd.setInMemory(true);
hcd.setMaxVersions(1);
hcd.setBlockCacheEnabled(true);
ht.addFamily(hcd);
log.info("Connecting to hbase...");
HBaseAdmin hba = new HBaseAdmin(hc);
log.info("Creating Table {}", output);