Currently map is used for storing topic model. Look up performance of map is O(log(n)) average. The unordered_map has O(1). Seeing our situation (we have no memory reallocations) unordered_map can be safely used instead of map. Maybe, it will increase BigARTM's performance.
Currently map is used for storing topic model. Look up performance of map is O(log(n)) average. The unordered_map has O(1). Seeing our situation (we have no memory reallocations) unordered_map can be safely used instead of map. Maybe, it will increase BigARTM's performance.