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
Actual ngram features depend on field entry pointers, so we can't change them. We can completely rebuild trie index and dictionary entry table.
Logic should be:
Do the step 1 of dictionary import (compute unique column values with frequencies)
Read the present string storages and remove already stored values from the step 1 results.
Append new values to each string storage
Rebuild entry table.
Rebuild index.
Probably, we should implement the initial import as append to an initially empty dictionary to have only one implementation of csv dictionary import logic.
The open question is what should we do with full duplicates.
Should the import logic perform the full deduplication of the dictionary entries in addition to the current logic?
The text was updated successfully, but these errors were encountered:
Actual ngram features depend on field entry pointers, so we can't change them. We can completely rebuild trie index and dictionary entry table.
Logic should be:
Probably, we should implement the initial import as append to an initially empty dictionary to have only one implementation of csv dictionary import logic.
The open question is what should we do with full duplicates.
Should the import logic perform the full deduplication of the dictionary entries in addition to the current logic?
The text was updated successfully, but these errors were encountered: