• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

sklearn例程:简化打印模型时的输出

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本示例说明了print_changed_only全局参数的用法。

将print_changed_only设置为True将更改估计器的表示,从而仅显示已设置为非默认值的参数。

这可以用来输出(打印)更紧凑的模型表示形式,方便检查模型参数的设置情况。

代码实现[Python]


# -*- coding: utf-8 -*- 
print(__doc__)

from sklearn.linear_model import LogisticRegression
from sklearn import set_config


lr = LogisticRegression(penalty='l1')
print('Default representation:')
print(lr)
# LogisticRegression(C=1.0, class_weight=None, dual=False, fit_intercept=True,
#                    intercept_scaling=1, l1_ratio=None, max_iter=100,
#                    multi_class='warn', n_jobs=None, penalty='l1',
#                    random_state=None, solver='warn', tol=0.0001, verbose=0,
#                    warm_start=False)

set_config(print_changed_only=True)
print('\nWith changed_only option:')
print(lr)
# LogisticRegression(penalty='l1')

运行程序

运行时间大约:0分0.003秒。
运行输出的文本内容如下:

Default representation:
LogisticRegression(C=1.0, class_weight=None, dual=False, fit_intercept=True,
                   intercept_scaling=1, l1_ratio=None, max_iter=100,
                   multi_class='warn', n_jobs=None, penalty='l1',
                   random_state=None, solver='warn', tol=0.0001, verbose=0,
                   warm_start=False)

With changed_only option:
LogisticRegression(penalty='l1')

源码下载

  • Python版源码文件: plot_changed_only_pprint_parameter.py
  • Jupyter Notebook版源码文件: plot_changed_only_pprint_parameter.ipynb

参考资料

  • Compact estimator representations

鲜花

握手

雷人

路过

鸡蛋
专题导读
上一篇:
Python安全FTP模块[sftp]发布时间:2022-05-14
下一篇:
sklearn例程:保序回归发布时间:2022-05-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap