We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I cant open model docs from leaderboard when to AutoML reports are open in the notebook.
The text was updated successfully, but these errors were encountered:
import numpy as np import pandas as pd from sklearn.datasets import fetch_california_housing from sklearn.model_selection import train_test_split from sklearn.metrics import mean_squared_error from supervised.automl import AutoML # mljar-supervised # Load the data housing = fetch_california_housing() X_train, X_test, y_train, y_test = train_test_split( pd.DataFrame(housing.data, columns=housing.feature_names), housing.target, test_size=0.25, random_state=123, ) # train models with AutoML automl = AutoML(mode="Explain") automl.fit(X_train, y_train) automl.report() automl2 = AutoML(mode="Explain") automl2.fit(X_train, y_train) automl2.report()
Sorry, something went wrong.
@Marchlak could you please take a look?
add ids to div fix (mljar#771)
bc05f45
Merge pull request #781 from Marchlak/master
b3ee890
Add ids to div. fix (#771)
No branches or pull requests
I cant open model docs from leaderboard when to AutoML reports are open in the notebook.
The text was updated successfully, but these errors were encountered: