人工智能 [9]
PyTorch GPU版本(PyTorch-CUDA)安装
〇、PyCharm和Anaconda安装 PyCharm下载地址 Anacondax下载地址 略略略(一直下一步即可)
机器学习实战之Iris(鸢尾花)数据集
一、Iris数据集介绍 A small classic dataset from Fisher, 1936. One of the earliest datasets used for evaluation of classification methodologies. [更多数据集信息] [文章
支持向量机(SVM)
一、支持向量机(SVM,Support Vector Machines) Support Vector Machines (SVMs) are a type of supervised learning algorithm that can be used for classification or
决策树(Decision Tree)
A decision tree is a non-parametric supervised learning algorithm, which is utilized for both classification and regression tasks. It has a hierarchic
监督学习与回归模型
一、 监督学习与无监督学习 1、 监督学习(Supervised Learning) 监督学习是指通过让机器学习大量带有标签的样本数据,训练出一个模型,并使该模型可以根据输入得到相应输出的过程。通过已有的一部分输入数据与输出数据之间的对应关系,生成一个函数,将输入映射到合适的输出,例如分类。 回归(
Linux下使用Docker部署Jupyter Notebook
一、Docker安装 安装 进入Install Docker Engine,然后选择对应的平台根据官网教程走即可
Matplotlib基础教程
一、Matplotlib简介 Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python. Matplotlib makes easy th
NumPy和Pandas基础教程
一、NumPy 1、NumPy简介 NumPy is the fundamental package for scientific computing in Python. It is a Python library that provides a multidimensional array o
Python基础教程
一、Python编程基础 1、Python基础语法 Python标识符 Python标识符是变量、函数、类、模块或者其他Python对象的名称,有效的标识符应符合以下规则: 以字母A到Z、a到z或者下划线(_)开头 零个或多个字母、下划线和数字(0到9) 标识符中不能能包含@、$、%之类的字符 Py