Skip to content
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

cant navigate links if two reports open in notebook #771

Closed
pplonski opened this issue Sep 2, 2024 · 2 comments
Closed

cant navigate links if two reports open in notebook #771

pplonski opened this issue Sep 2, 2024 · 2 comments
Labels
bug Something isn't working

Comments

@pplonski
Copy link
Contributor

pplonski commented Sep 2, 2024

I cant open model docs from leaderboard when to AutoML reports are open in the notebook.

@pplonski pplonski added the bug Something isn't working label Sep 2, 2024
@pplonski
Copy link
Contributor Author

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()

@pplonski
Copy link
Contributor Author

@Marchlak could you please take a look?

Marchlak added a commit to Marchlak/mljar-supervised that referenced this issue Sep 30, 2024
pplonski added a commit that referenced this issue Sep 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant