书栈网 · BookStack 本次搜索耗时 0.017 秒,为您找到 1323 个相关结果.
  • 逻辑回归

    Deeplearning Algorithms tutorial 逻辑回归 逻辑回归算法 正则化 类别不均衡问题 示例代码 minst回归示例 sklearn示例 Deeplearning Algorithms tutorial 谷歌的人工智能位于全球前列,在图像识别、语音识别、无人驾驶等技术上都已经落地。而百度实质意义上扛起了国内的人...
  • 10、如何联系我们

    10、如何联系我们 请向出版商发表有关本书的评论和问题: O’Reilly Media, Inc. 1005 Gravenstein Highway North Sebastopol, CA 95472 800-998-9938 (在美国或者加拿大) 707-829-0515 (国际或地区) 707-829-0104 (传真) 我们有一个这...
  • 2.2. Feature highlights

    Features Features One of the fastest WebAssembly VMs on the market (based on LLVM AOT ) WasmEdge feature extensions Network sockets (Rust and JavaScript SDKs) Async pollin...
  • 总结

    总结 总结 本节介绍了如何从零开始部署TFLite到Android应用中,包括: 如何将训练好的MNIST SavedModel模型,转换为Float模型和 Quantized模型 如何使用 visualize.py 和解读其结果信息 如何将转换后的模型部署到Android应用中 笔者刚开始写这部分内容的时候还是TF1.0,在最近...
  • Experiment with the Pipelines Samples

    Experiment with the Pipelines Samples Compiling the samples on the command line Before you start Choose and compile a pipeline Deploy the pipeline Building a pipeline in a Jupy...
  • Reference Overview

    Reference Overview TFJob PyTorchJob MPIJob Notebook Katib Reference Overview Reference documentation for Kubeflow APIs and services. TFJob TFJob is a Kubernetes custom ...
  • 早期停止

    早期停止 为避免过度拟合训练集,一个很好的解决方案就是尽早停止训练(在第 4 章中介绍):只要在训练集的性能开始下降时中断训练。 与 TensorFlow 实现方法之一是评估其对设置定期(例如,每 50 步)验证模型,并保存一个“winner”的快照,如果它优于以前“winner”的快照。 计算自上次“winner”快照保存以来的步数,并在达到某个限制...
  • Experiment with the Pipelines Samples

    Experiment with the Pipelines Samples Compiling the samples on the command line Before you start Choose and compile a pipeline Deploy the pipeline Building a pipeline in a Jupy...
  • 递归神经网络

    递归神经网络 介绍 语言模型 教程文件 下载及准备数据 模型 LSTM 截断反向传播 输入 损失函数 多个 LSTM 层堆叠 编译并运行代码 除此之外? 递归神经网络 介绍 可以在 this great article 查看循环神经网络(RNN)以及 LSTM 的介绍。 语言模型 此教程将展示如何...
  • RMSProp

    RMSProp 尽管 AdaGrad 的速度变慢了一点,并且从未收敛到全局最优,但是 RMSProp 算法通过仅累积最近迭代(而不是从训练开始以来的所有梯度)的梯度来修正这个问题。 它通过在第一步中使用指数衰减来实现(见公式 11-7)。 他的衰变率β 通常设定为 0.9。 是的,它又是一个新的超参数,但是这个默认值通常运行良好,所以你可能根本不需...