Anthony Blaom, PhD

Results 815 comments of Anthony Blaom, PhD

I guess you mean adding docs for subtyping `Static` (which supersedes this `StaticTransformer`). There is some documentation, buried under "Composing Models" section of manual (search for `Averager` but agree this...

Basically written, no? https://github.com/alan-turing-institute/MLJ.jl/issues/307#issuecomment-594897959 Maybe change the function used example to simplify / improve readability? Maybe drop use of DataFrames to make more generic?

There is now an entry in the user manual that also could be used. https://alan-turing-institute.github.io/MLJ.jl/dev/transformers/#Static-transformers-1

It is not *an* attempt ?

These tutorials are primarily intended to help data scientists new to Julia familiarise themselves with various software interfaces. It is not an attempt to teach fundamental data science principles or...

Thanks for offer of help! Yes, I mean this one. But I'll let @tlienart handle assignment. As there is already a Literate-compatible script there (the .jl file) there's not much...

If you find one at [OpenML](https://www.openml.org), you can load it directly from MLJ using `OpenML.load`.

- Your problem: LinearRegressor() expects a table but it is getting a matrix here. So you need to insert an `MLJTable`. - Another problem: You can't apply the inverse_transform directly...

Or you could have used `predict_mean` but then you couldn't use the arrow syntax, I guess.