That's a warning rather than an error - so if everything else seems to be working, there's no need to change anything.
The warning is kind of misleading, too. `Phraser` is an alternative that must be built from an initial `Phrases` instance, in a time-consuming step. It then works a little faster but uses much less memory – but that Phraser is stuck with the min_count/threshold parameters in effect when it was constructed. In contrast, if you retain the larger/slower `Phrases`, you can still tinker with those parameters. So `Phraser` is not really a drop-in 'faster implementation' everyone would want to consider. You'd need to review the doc-comments & code to evaluate if it's helpful for your needs.
- Gordon