书栈网 · BookStack 本次搜索耗时 0.026 秒,为您找到 1336 个相关结果.
  • Design Doc: Distributed Embedding Layer

    Design Doc: Distributed Embedding Layer Motivation Distributed Storage Read, Init, and Update Related Work Embedding Layers in TensorFlow tf.keras.layers.Embedding and tf.nn.e...
  • Blog Posts

    Blog Posts The Kubeflow blog Using Kubeflow to train and serve a PyTorch model in Google Cloud Platform Getting started with Kubeflow Pipelines How to create and deploy a Kubefl...
  • SageMaker

    SageMaker SageMaker SageMaker LocalStack Pro provides a local version of the SageMaker API, which allows running jobs to create machine learning models (e.g., using TensorFlow)...
  • 4-4,AutoGraph的机制原理

    4-4,AutoGraph的机制原理 一,Autograph的机制原理 二,重新理解Autograph的编码规范 4-4,AutoGraph的机制原理 有三种计算图的构建方式:静态计算图,动态计算图,以及Autograph。 TensorFlow 2.0主要使用的是动态计算图和Autograph。 动态计算图易于调试,编码效率较高,但执行效率...
  • 读取数据

    数据读取 目录 数据读取 供给数据 从文件读取数据 文件名, 乱序(shuffling), 和最大训练迭代数(epoch limits) 文件格式 CSV 文件 固定长度的记录 标准TensorFlow格式 预处理 批处理 创建线程并使用QueueRunner 对象来预取 疑问: 这是怎么回事? 疑问: 在达到最大训练迭代数的时候如何清...
  • 创造第一个图谱,然后运行它

    创造第一个图谱,然后运行它 import tensorflow as tf x = tf . Variable ( 3 , name = "x" ) y = tf . Variable ( 4 , name = "y" ) f = x * x * y + y + 2 这就是它的一切! 最...
  • 使用Golang客户端

    1277 2018-07-28 《小米云深度学习》
    使用Golang客户端 简介 准备编译环境 完整例子 实现原理 使用Golang客户端 简介 Golang客户端要访问TensorFlow serving服务,需要实现gRPC客户端。 准备编译环境 go get - u github . com / golang / protobuf /{ proto , protoc - ...
  • 模型转换

    模型转换 模型转换 转换工具有两种:命令行工具和Python API TF2.0对模型转换工具发生了非常大的变化,推荐大家使用Python API进行转换,命令行工具只提供了基本的转化功能。转换后的原模型为 FlatBuffers 格式。 FlatBuffers 原来主要应用于游戏场景,是谷歌为了高性能场景创建的序列化库,相比Protocol ...
  • Troubleshooting

    Troubleshooting TensorFlow and AVX AVX2 Minikube RBAC clusters Problems spawning Jupyter pods Pods stuck in Pending state OpenShift 403 API rate limit exceeded error Tr...
  • 2-1 Data Structure of Tensor

    2-1 Data Structure 1. Constant Tensor 2. Variable Tensor 2-1 Data Structure Program = Data Structure + Algorithm TensorFlow Program = Data Structure of Tensor + Algorithm in...