tensorflow一些API的基本理解
阅读原文时间:2023年07月10日阅读:1

1、tf.Session

self._session = None
opts = tf_session.TF_NewSessionOptions(target=self._target, config=config)
try:
# pylint: disable=protected-access
self._session = tf_session.TF_NewSession(self._graph._c_graph, opts)
# pylint: enable=protected-access
finally:
tf_session.TF_DeleteSessionOptions(opts)

2、tf.Graph

3、tf.Tensor

4、tf.Operation

5、tf.train.Optimizer

6、tf.train.Saver,保存、读取、参数转化、冻结训练、修改部分层相关

7、tf.summary,tensorboard相关

8、data APIs

9、预处理相关、部分cv特定知识相关

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器

你可能感兴趣的文章