首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏人工智能头条

    技术 | 机器学习中Python库的3个简单实践——你的图片将由你来创造

    verbose=True) plot_heterogeneity(heterogeneity, k) GitHub 地址:https://github.com/TheAlgorithms 03 mlens 访问链接: http://ml-ensemble.com/ GitHub 地址: https://github.com/flennerhag/mlens ▌通过PyPI安装 ML-Ensemble 可在 可以这样安装: pip install mlens 一个简单的示例(iris obligated示例): import numpy as np from pandas import DataFrame ) data = load_iris() idx = np.random.permutation(150) X = data.data[idx] y = data.target[idx] from mlens.ensemble

    84840发布于 2018-07-23
  • 来自专栏机器之心

    每个Kaggle冠军的获胜法门:揭秘Python中的模型集成

    # You need ML-Ensemble for this figure: you can install it with: pip install mlens from mlens.visualization from mlens.ensemble import SuperLearner # Instantiate the ensemble with 10 folds sl = SuperLearner(

    3.4K100发布于 2018-05-10
领券