Dilum Aluthge
Dilum Aluthge
Would it be possible to detect uses of non-public names? E.g. `using Foo: bar` where `Foo.bar` is not public. ## Example If I have: ```julia module MyPackage export f public...
Fixes #93 Fixes #117 Related to #52 Please note that this PR makes multiple breaking changes.
That way we can do hyperparameter optimization with MLJ.
`predict_particles` throws a `MethodError` when I try to use it in the multinomial logistic regression example. The error is: `ERROR: MethodError: no method matching &(::Particles{Bool,1000}, ::Particles{Bool,1000})` Full output: ```julia julia>...
We currently have an example of a loss function for regression models. Specifically, we implement the root mean squared error. However, we don't currently have an example of a loss...
In #91, I added an incorrect implementation of `MMI.predict` for classifiers. This allowed me to finish the pipeline, do cross validation, add additional tests, etc. But we should fix the...
Currently, we only have a single predictor type: ```julia struct SossMLJPredictor{M}
Whenever the Soss or SossMLJ model types show up in stack traces, it is quite verbose, and makes the stack trace hard to read. Here's an example. Look e.g. at...
I think that Bayesian neural networks would be a natural successor to our tutorials on Bayesian GLMs. As far as the neural network library to use, I think [Flux](https://github.com/FluxML/Flux.jl) makes...