internal static ArrayList run(string fname) { modshogun.init_shogun_with_defaults(); StringFileCharFeatures f = new StringFileCharFeatures(fname, RAWBYTE); //f.save_compressed("foo_uncompressed.str", UNCOMPRESSED, 1); StringCharFeatures f2 = new StringCharFeatures(RAWBYTE); f2.load_compressed("foo_uncompressed.str", true); //f.save_compressed("foo_lzo.str", LZO, 9); f2 = new StringCharFeatures(RAWBYTE); f2.load_compressed("foo_lzo.str", true); //f.save_compressed("foo_gzip.str", GZIP, 9); f2 = new StringCharFeatures(RAWBYTE); f2.load_compressed("foo_gzip.str", true); //f.save_compressed("foo_bzip2.str", BZIP2, 9); f2 = new StringCharFeatures(RAWBYTE); f2.load_compressed("foo_bzip2.str", true); //f.save_compressed("foo_lzma.str", LZMA, 9); f2 = new StringCharFeatures(RAWBYTE); f2.load_compressed("foo_lzma.str", true); f2 = new StringCharFeatures(RAWBYTE); f2.load_compressed("foo_lzo.str", false); //f2.add_preprocessor(new DecompressCharString(LZO)); f2.apply_preprocessor(); f2 = new StringCharFeatures(RAWBYTE); f2.load_compressed("foo_lzo.str", false); //f2.add_preprocessor(new DecompressCharString(LZO)); f2.enable_on_the_fly_preprocessing(); ArrayList result = new ArrayList(); modshogun.exit_shogun(); return result; }