Okon Samuel

Results 64 comments of Okon Samuel

> Let me know what you think of it, At some point i thought about this. Yeah this also works but has the limitation that both `SubModel1` and `SubModel2` has...

@Leonardbcm Let me clarify some things. @ablaom patch actually fixes a bug which you didn't notice. Let me explain. If you have a composite model ```julia @mlj_model mutable struct Composite1

@vollmersj Whats the status??

@ablaom can i close this??

Adding a new line after each ProgressMeter printing solves this issue but would lead to other issues ```julia using ProgressMeter p = Progress(10) for i in 1:10 sleep(2*rand()) next!(p);print("\n");#@warn "yes"...

I've hit this issue on my Windows 10 PC when trying to download the imagenette2-160 dataset or any other fast.ai dataset. ```julia julia> load(datarecipes()["imagenette2-160"]) ERROR: IOError: rm("C:\\Users\\OKON SAMUEL\\.julia\\datadeps\\fastai-imagenette2-160"): resource busy...

I'm currently using the following code below on my window PC and it all works. ```julia function DataDeps.DataDep(d::FastAIDataset) return DataDep( "fastai-$(d.datadepname)", """ "$(d.name)" from the fastai dataset repository (https://course.fast.ai/datasets) $(d.description)...

Thanks @stevengj Sorry for my choice of words. I should have said errored tests. https://travis-ci.com/github/alan-turing-institute/MLJModels.jl/jobs/339809727#L470. This is as a result of using `PYTHON=conda` as default python distribution on MacOS(This doesn't...

Although adding the following code to my tests prevents those errors am still puzzled why it doesn't error in Linux builds. ``` Conda.add("nomkl") Conda.add("scikit-learn") Conda.rm("mkl") ```