=========================
* **SimilarityEncoder**: Accelerate ``SimilarityEncoder.transform``, by:
- computing the vocabulary count vectors in ``fit`` instead of ``transform``
- computing the similarities in parallel using ``joblib``. This option can be
turned on/off via the ``n_jobs`` attribute of the :class:`SimilarityEncoder`.
* **SimilarityEncoder**: Fix a bug that was preventing a :class:`SimilarityEncoder`
to be created when ``categories`` was a list.
* **SimilarityEncoder**: Set the dtype passed to the ngram similarity
to float32, which reduces memory consumption during encoding.