You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to use Trie with larger alphabet I start to experience different memory related issue. Details differ from Python version to Python version, and environment, but in general following:
import datrie
xs = [chr(i) for i in range(500)]
datrie.Trie(xs[:250]) # Works fine
datrie.Trie(xs[250:]) # Works fine
datrie.Trie(xs) # Fails miserably
When I try to use
Trie
with largeralphabet
I start to experience different memory related issue. Details differ from Python version to Python version, and environment, but in general following:fails when executed as script with:
In IPython I got:
or
and some other, less common failures.
This specific outcomes tested with
Is this something expected?
The text was updated successfully, but these errors were encountered: