书栈网 · BookStack 本次搜索耗时 0.028 秒,为您找到 4876 个相关结果.
  • 03.12 矩阵

    矩阵 矩阵 使用 mat 方法将 2 维数组转化为矩阵: In [1]: import numpy as np a = np . array ([[ 1 , 2 , 4 ], [ 2 , 5 , 3 ], [...
  • Guide to the Sequential model

    Getting started with the Keras Sequential model Specifying the input shape Compilation Training Examples Multilayer Perceptron (MLP) for multi-class softmax classification: MLP...
  • Windows下从源码编译

    Windows下从源码编译 环境准备 选择CPU/GPU 安装步骤 本机编译 验证安装 如何卸载 Windows下从源码编译 环境准备 64位操作系统 Windows 10 家庭版/专业版/企业版 Python(64 bit) 2.7/3.5.1+/3.6/3.7 pip或pip3(64 bit) >= 9.0.1 Visual S...
  • Windows下从源码编译

    Windows下从源码编译 环境准备 选择CPU/GPU 安装步骤 本机编译 验证安装 如何卸载 Windows下从源码编译 环境准备 64位操作系统 Windows 10 家庭版/专业版/企业版 Python 2.7/3.5/3.6/3.7 pip或pip3 >= 9.0.1 Visual Studio 2015 Update3 ...
  • ParallelExecutor

    ParallelExecutor ParallelExecutor 注意:该API仅支持【静态图】模式 class paddle.fluid. ParallelExecutor (use_cuda, loss_name=None, main_program=None, share_vars_from=None, exec_strategy=No...
  • 数据预处理工具

    数据预处理工具 Data Reader 接口 Batch Reader 接口 使用 Data Reader装饰器 预取回数据(缓存数据) 组成多个Data Reader 随机排序 Q & A 为什么一个reader只返回单项而不是mini batch? 为什么需要一个batch reader,在训练过程中给出reader和batch_size...
  • 数据预处理工具

    数据预处理工具 Data Reader 接口 Batch Reader 接口 使用 Data Reader装饰器 预取回数据(缓存数据) 组成多个Data Reader 随机排序 Q & A 为什么一个reader只返回单项而不是mini batch? 为什么需要一个batch reader,在训练过程中给出reader和batch_size...
  • 模型评估

    模型评估 常用指标 自定义指标 模型评估 模型评估是指用评价函数(metrics)来评估模型的好坏,可作为在训练中调整超参数、评估模型效果的重要依据。不同类型的模型任务会选取不同评价函数,常见的如回归类任务会用均方差(MSE),二分类任务会用AUC (Area Under Curve)值等。 评价函数和loss函数非常相似,但不参与模型的训练优...
  • 图像处理

    图像处理 Python 图形库 安装 例子 开源计算机视觉(OpenCv) 安装 例子 图像处理 多数图像处理与操作技术可以被两个库有效完成,它们是Python Imaging Library (PIL)与OpenSource Computer Vision (OpenCV)。 下面是这两个库的简略介绍。 Python 图形库 P...
  • InputSpec

    InputSpec 使用本API的教程文档 InputSpec class paddle.static. InputSpec ( shape=None, dtype=’float32’, name=None ) [源代码] 用于描述模型输入的签名信息,包括shape、dtype和name。 此接口常用于指定高层API中模型的输入张量信息,或动...