20 lines
503 B
Python
20 lines
503 B
Python
from .ipythonwidget import MetricVisualizer # noqa
|
|
from .metrics_plotter import MetricsPlotter # noqa
|
|
from .callbacks import XGBPlottingCallback, lgbm_plotting_callback # noqa
|
|
|
|
|
|
def _jupyter_labextension_paths():
|
|
return [{
|
|
'src': 'labextension',
|
|
'dest': 'catboost-widget',
|
|
}]
|
|
|
|
|
|
def _jupyter_nbextension_paths():
|
|
return [{
|
|
'section': 'notebook',
|
|
'src': 'nbextension',
|
|
'dest': 'catboost-widget',
|
|
'require': 'catboost-widget/extension'
|
|
}]
|