Instead of using the very slow python .gz implementation try
def load_pickle(path):
#i = gzip.open(path, 'rb')
i = os.popen("zcat " + path)
data = cPickle.load(i)
i.close()
return data
Thanks for coding this though, the results are way better than previously
existing system. I'm using Splitta to code a couple of projects aimed at
writers and the accuracy has made a lot features things feasible.
Original issue reported on code.google.com by mkbun...@gmail.com on 26 Feb 2010 at 6:46
Original issue reported on code.google.com by
mkbun...@gmail.com
on 26 Feb 2010 at 6:46