-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MLJ Interface is not working anymore #70
Comments
going to check, thanks to report.... |
Hello, I can't reproduce... this script, where I used your code, works as expected...
Be sure you have the latest versions of both MLJ and BetaML (respectively v0.20.2 and v0.11.3) |
Hello, do you still have the issue after updating to latest versions? |
I found this issue because I was having a similar problem. Attempting to load the # This Works
model = (MLJ.@load RandomForestClassifier pkg = "BetaML")()
# Also Works
model = BetaML.Bmlj.RandomForestClassifier()
# Doesn't Work
model = BetaML.RandomForestClassifier() Moreover, the links to the MLJ models appear to be broken in the README. I'm assuming this is a recent change? It would be nice to be able to access the |
Hi,
Thanks for the report on the links and let me know if I can close this issue... |
..closing... feel free to reopen if needed... |
The code
modelType = @load RandomForestClassifier pkg = "BetaML" verbosity=1
mod = modelType(
n_trees = 2,
max_depth = 10
)
is not working in the latest version of BetaML.
The text was updated successfully, but these errors were encountered: