书栈网 · BookStack 本次搜索耗时 0.031 秒,为您找到 814 个相关结果.
  • Loss

    475 2021-03-31 《The fastai book》
    Loss Loss We’ve already seen how to define “negative log likelihood”: In [ ]: def nll ( input , target ): return - input [ range ( target . shape [ 0 ]), target ]. mea...
  • Community

    Community Community discussions Community meetings Kubeflow community call Forums and mailing groups Who should consider contributing to Kubeflow? Community About the Kube...
  • Loss Functions

    Loss Functions class BaseLoss [source] class CrossEntropyLossFlat [source] class FocalLossFlat [source] class BCEWithLogitsLossFlat [source] BCELossFlat [source] ...
  • CAM and Hooks

    482 2021-03-31 《The fastai book》
    CAM and Hooks CAM and Hooks The class activation map (CAM) was introduced by Bolei Zhou et al. in “Learning Deep Features for Discriminative Localization” . It uses the output ...
  • Ensembling

    574 2021-03-31 《The fastai book》
    Ensembling Boosting Combining Embeddings with Other Methods Ensembling Think back to the original reasoning behind why random forests work so well: each tree has errors, but ...
  • 介绍

    2384 2019-07-26 《VisualDL 使用文档》
    介绍 我为什么要用 VisualDL? 可视化 易集成 易使用 功能全 完全开放 介绍 VisualDL是一个面向深度学习任务设计的可视化工具,包含了scalar、参数分布、模型结构、图像可视化等功能,项目正处于高速迭代中,新的组件会不断加入。 目前大多数DNN平台均使用Python作为配置语言,VisualDL原生支持python...
  • torch.utils.data

    torch.utils.data 数据集类型 版图式数据集 可迭代式的数据集 数据加载顺序和采样器 加载批处理和非批处理数据 自动批处理(默认) 禁用自动批处理 Working with collate_fn Single- and Multi-process Data Loading 单进程数据加载(默认) Multi-process ...
  • OneFlow 概念清单

    OneFlow 概念清单 算法开发 1. Placeholder 2. Tensor 和 Blob 3. Job Function(作业函数) 4. Layer 和 Operator(op) Layer Op 5. Consistent/Mirrored View 框架开发 1. Boxing 2. SBP Split Broadcast...
  • OneFlow 概念清单

    OneFlow 概念清单 算法开发 1. Placeholder 2. Tensor 和 Blob 3. Job Function(作业函数) 4. Layer 和 Operator(op) Layer Op 5. Consistent/Mirrored View 框架开发 1. Boxing 2. SBP Split Broadcast...
  • 可选:数据并行处理

    可选: 数据并行处理 导入和参数 虚拟数据集 简单模型 创建一个模型和数据并行 运行模型 结果 2个GPU 3个GPU 8个GPU 总结 可选: 数据并行处理 作者 : Sung Kim Jenny Kang 译者: bat67 校对者: FontTian 片刻 在这个教程里,我们将学习如何使用数据并行(...