Ian Ozsvald
Ian Ozsvald
No, whichever PyData you're referring to :-) Video link?
Nudge...I'm genuinely curious. I started to use `shelve` for a side project and was surprised to see it make 3 files (which is a bit annoying when backing stuff up...
Fair points. I'm not sure `shelve` really has a place any more (I'm experimenting with it but...can't really see the point). `dataset` can sit on `sqlite3` but generally I agree...
shelve writes a `.bak` `.dir` `.dat`, I don't know what they do (`.bak` `.dir` are hundreds of bytes)
Or maybe the easy first step is to pass an argument to `PermutationImportance` to set this flag `True` or `False`?
I'll note that with a fresh install of a conda environment, I still get the above issue and using the work-around I posted, it works ok. These are my versions...
Ooops, fixed, cheers :-) /cc @springcoil
ps-git suggests pulling his meta.yaml when this is all calm and then updating the build notes for point at their feedstock
_ha_ I never thought to try `del trie[u'key']`. I live and learn! Perhaps you could add a note about deletion to the README? It might save someone else from the...
I benchmarked DAWG and Marisa-trie last week, datrie is superior for read performance (it is 2-3\* faster than both DAWG and Marisa-trie) - I'm doing a prefix search. With a...