Specifying just a model file name, e.g., Learner.save(foo.model) should just assume that we want to save foo.model in the current directory. However, it's expecting an explicit directory so we instead need to do Learner.save('./foo.model') which is silly.