Chris Alexander
Chris Alexander
Would it make sense to create a new model type for this? It's like a supervised transformer.
So would my transformer that relies on a target subtype `Unsupervised`? I have tried that with overriding the definition of `fit_data_scitype` (as above), but I'm not sure what type to...
I was able to partially get this working with the following patches (after I declared my own abstract type that my transformers subtype): ```julia abstract type TargetTransformer
Thanks for the feedback! I can definitely put together a PR for this - I have some local code I've been working on so I can incorporate your feedback and...
I've been looking at this over the last couple of days based on the feedback here: https://github.com/JuliaAI/MLJBase.jl/pull/705 Would it work if we removed all the various `check_*` methods and simply...
I tried using this C++ compiler as well, but ran into the same error (I updated the make file to use that compiler specifically): ``` $ g++-5.2.0 --version g++-5.2.0 (GCC)...
OK, I renamed that to Cabcd (I can share the changes to bootstrap.cpp if you need to see them), but now I am getting some issues in the Make file:...
OK, I've made some progress after telling the Make file exactly where the proper DLL was. I also had to change some things in the bootstrap.cpp file to export a...
More progress, but using one of the examples in the readme, it ends up complaining about the function __cxxjl_personality_v0 missing (even though I see it in boot.h). Any ideas? ```...
There appear to be some major issues when trying to deal with shared libraries in Windows. Firstly, using the example in the readme, I ran into the same LLVM ERROR...