PyCaret入门

安装

!pip install pycaret

查看版本

from pycaret.utils import version
version()

在这里插入图片描述

参考文档

  • GitHub
  • 官网
  • 用户教程
  • 预处理
  • 函数
  • 模型
  • Notebook教程

函数 Functions

  • 初始化 Initialize
  • 模型训练 Model Training
  • 模型集成 Model Ensembing
  • 模型分析 Model Analysis
  • 模型部署 Model Deployment

预处理 Preprocessing Steps

  • 样本和拆分数据 Sample and SplitData
  • 准备缩放和转换 PreparationScale and Transform
  • 特征工程 FeatureEngineering
  • 特征选择 FeatureSelection
  • 无监督 Unsupervised

模块 Modules

  • 监督学习 Supervised
    • 分类 Classification
    • 回归 Regression
  • 无监督学习 Unsupervised
    • 聚类 Clustering
    • 异常检测 Anomaly Detection
    • 自然语言处理 Natural Language Processing
    • 关联规则挖掘 Association Rule Mining

你可能感兴趣的:(PyCaret)