estimator_html_repr#

sklearn.utils.estimator_html_repr(estimator)#

构建一个估计器的HTML表示。

更多信息请参阅 用户指南

Parameters:
estimator估计器对象

要可视化的估计器。

Returns:
html: str

估计器的HTML表示。

Examples

>>> from sklearn.utils._estimator_html_repr import estimator_html_repr
>>> from sklearn.linear_model import LogisticRegression
>>> estimator_html_repr(LogisticRegression())
'<style>...</div>'