阅读(3083)
赞(10)
TensorFlow compat模块
2017-09-06 11:24:45 更新
TensorFlow Python / tf.compat
- 模块:tf.compat
- tf.compat.as_bytes
- tf.compat.as_str_any
- tf.compat.as_text
tf.compat
定义在:tensorflow/python/util/compat.py
与 Python 2 和 3 具有兼容性的函数.
转换例程
除了以下功能之外,as_str 将对象转换为 str.
类型
兼容性模块还提供以下类型:
- bytes_or_text_types
- complex_types
- integral_types
- real_types
功能
as_bytes(...):将字节或 unicode 转换为 bytes,使用 UTF-8 编码进行文本处理.
as_str(...):将字节或 unicode 转换为 bytes,使用 UTF-8 编码进行文本处理.
as_str_any(...):转换 str 为 str(value),但 as_str 用于 bytes.
as_text(...):以 unicode 字符串的形式返回给定的参数.
其他成员
bytes_or_text_types
complex_types
integral_types
real_types