书栈网 · BookStack 本次搜索耗时 0.031 秒,为您找到 1338 个相关结果.
  • 保存和恢复模型

    保存和恢复模型 一旦你训练了你的模型,你应该把它的参数保存到磁盘,所以你可以随时随地回到它,在另一个程序中使用它,与其他模型比较,等等。 此外,您可能希望在训练期间定期保存检查点,以便如果您的计算机在训练过程中崩溃,您可以从上次检查点继续进行,而不是从头开始。 TensorFlow 可以轻松保存和恢复模型。 只需在构造阶段结束(创建所有变量节点之后)创...
  • Support

    Support Levels of support Support from the Kubeflow community Support from providers in the Kubeflow ecosystem Support from a cloud or platform provider Other places to ask que...
  • 3.2.1. Getting started

    Quick start with JavaScript on WasmEdge Make it faster Quick start with JavaScript on WasmEdge First, let’s build a WebAssembly-based JavaScript interpreter program for WasmEd...
  • Notebooks

    1346 2019-07-22 《MLeap Document》
    Demo Notebooks AirBnb Price Prediction Lending Club Loan Approval MNIST Digits Recognition Demo Notebooks We have put together a number of notebooks to demonstrate MLeap usa...
  • Model (functional API)

    Model class API Methods compile fit evaluate predict train_on_batch test_on_batch predict_on_batch fit_generator evaluate_generator predict_generator get_layer Mode...
  • 5-2 feature_column

    5-2 feature_column 1. Introduction about how to use feature column 2. Demonstration of feature column 5-2 feature_column Feature column is usually applied in the feature engi...
  • External Plugins

    External Plugins Hop Plugins Actions Transforms Mark Hall Transforms AtolCD External Plugins Hop Plugins The Hop plugins repository contains a collection of plugins that...
  • External Plugins

    External Plugins Hop Plugins Actions Transforms Mark Hall Transforms AtolCD External Plugins Hop Plugins The Hop plugins repository contains a collection of plugins that...
  • 3-1,低阶API示范

    3-1,低阶API示范 一,线性回归模型 二,DNN二分类模型 3-1,低阶API示范 下面的范例使用TensorFlow的低阶API实现线性回归模型和DNN二分类模型。 低阶API主要包括张量操作,计算图和自动微分。 import tensorflow as tf #打印时间分割线 @tf . function def...
  • 自动超参数调优

    1074 2018-07-28 《小米云深度学习》
    使用超参数自动调优 简介 代码规范 使用示例 参数介绍 使用超参数自动调优 简介 超参数自动调优是Xiaomi Cloud-ML的功能,可以一次定义多组超参数组合,提交后并行进行训练,并返回效果最优的超参数组合。 代码规范 用户可自定义“效果最优”的指标,需要在TensorFlow模型代码中把指标写到 training/hptuni...