Skip to content

Commit 52e29f2

Browse files
committed
Merge branch 'master' of github.com:mljar/mljar-supervised
2 parents fb72a6b + c19f854 commit 52e29f2

File tree

6 files changed

+288
-78
lines changed

6 files changed

+288
-78
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
Watch full AutoML training in Python under 2 minutes. The training is done in [MLJAR Studio](https://mljar.com).
4242

43-
[![AutoML demo](https://img.youtube.com/vi/bqaScD31Pf8/0.jpg)](https://www.youtube.com/watch?v=bqaScD31Pf8)
43+
[![](https://github.com/mljar/studio/blob/main/media/mljar-studio-automl-get-started.jpg?raw=true)](https://youtu.be/t_opxR5dbPU)
4444

4545
## Table of Contents
4646

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="mljar-supervised",
13-
version="1.1.15",
13+
version="1.1.17",
1414
description="Automated Machine Learning for Humans",
1515
long_description=long_description,
1616
long_description_content_type="text/markdown",

supervised/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "1.1.15"
1+
__version__ = "1.1.17"
22

33
from supervised.automl import AutoML

supervised/automl.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -436,6 +436,13 @@ def fit(
436436
raise e
437437
finally:
438438
matplotlib.use(original_backend)
439+
try:
440+
if 'inline' in original_backend:
441+
import matplotlib_inline
442+
matplotlib_inline.backend_inline._enable_matplotlib_integration()
443+
except:
444+
pass
445+
439446

440447
def predict(self, X: Union[List, numpy.ndarray, pandas.DataFrame]) -> numpy.ndarray:
441448
"""

0 commit comments

Comments
 (0)