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 building a dictionary, we need to build Trie index.
Probably, we shouldn't move away from darts-clone-compatible structure, but there can be variations on the construction. It would be interesting to explore whether it is possible to make prefetch-compatible trie that could load the trie entries in L1 cache for the next symbol speculatively, even with not 100% accuracy (e.g. getting hits for high-frequency entries).
When building a dictionary, we need to build Trie index.
Probably, we shouldn't move away from darts-clone-compatible structure, but there can be variations on the construction. It would be interesting to explore whether it is possible to make prefetch-compatible trie that could load the trie entries in L1 cache for the next symbol speculatively, even with not 100% accuracy (e.g. getting hits for high-frequency entries).
Rust Implementations to Note: https://github.com/takuyaa/yada (it seems to follow darts-clone internal structure with original darts construction procedure)
The text was updated successfully, but these errors were encountered: