Dr. Dror

Foo is not just a "Bar"

ML Articles


  • Fri 17 June 2022
  • ML

Getting to know MLEM

This post is based on the README here where newer versions might be available. MLEM promises that you: Use the same human-readable format for any ML framework This is a bold promise and in this repo I will explore it a little (and maybe some other features as well). Note …

  • Thu 22 June 2017
  • ML

Some learnings from implementing a transformer

I had to (or at least I thought I had to) implement a transformer to be used in a sklearn.pipeline.Pipeline. In a nutshell, I implemented badly the transform method. The original version can be found in this gist. In the following version I fixed it. Furthermore, I left …