codecamp

TensorFlow将raw格式转换为张量

tf.decode_raw

decode_raw ( 
    bytes , 
    out_type , 
    little_endian = None , 
    name = None
 )

参见指南:输入和读取器>数据格式转换,数据导入>从文件导入

将字符串的字节重新解释为数字的向量.

ARGS:

  • bytes:字符串类型的张量.所有元素的长度必须相同.
  • out_type:一个选自:tf.half,tf.float32,tf.float64,tf.int32,tf.uint8,tf.int16,tf.int8 以及 tf.int64 的 tf.DType .
  • little_endian:可选的 bool 值,默认为 True.输入字节是否为小字节顺序.忽略存储在单个字节 (如 uint8) 中的 out_type 值.
  • name:操作的名称(可选).

返回:

out_type 类型的张量.一个比输入字节多一个维度的张量.添加的维度的大小将等于字节的元素的长度除以要表示 out_type 的字节数.

JSON编码的示例记录转换
TensorFlow数据从深度排列为空间数据块
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

TensorFlow 函数介绍

TensorFlow 函数模块:tf

TensorFlow的image模块

TensorFlow使用之tf.io

TensorFlow使用之tf.keras

TensorFlow函数教程:tf.keras.applications

TensorFlow函数教程:tf.keras.backend

TensorFlow使用之tf.metrics

TensorFlow使用之tf.nn

TensorFlow使用之tf.python_io

TensorFlow 功能函数

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }