当前位置: 首页 > news >正文

蒙阴哪有做淘宝网站的网络营销推广难做吗

蒙阴哪有做淘宝网站的,网络营销推广难做吗,做网站上市的公司,怎么做钓鱼网站吗一、什么是图结构 1、图包含了一组tf.Operation代表的计算单元对象和tf.Tensor代表的计算单元之间流动的数据 图结构:数据(Tensor) 操作(Operation) 二、图相关操作 1、默认图 通常TensorFlow会默认帮我们创建一张图 查看默认图的两种方法: &#x…

一、什么是图结构

1、图包含了一组tf.Operation代表的计算单元对象和tf.Tensor代表的计算单元之间流动的数据
图结构:数据(Tensor) + 操作(Operation)

二、图相关操作

1、默认图
通常TensorFlow会默认帮我们创建一张图

查看默认图的两种方法:
(1)通过调用tf.compat.v1.get_default_graph()访问,要将操作添加到默认图形中,直接创建OP即可
(2)op、sess都含有graph属性,默认都在一张图中
注:2.x版本(使用默认图)不支持调用属性,会报错“AttributeError: Tensor.graph is meaningless when eager execution is enabled.”

import os
os.environ['TF_CPP_MIN_LOG_LEVEL']='2'
import tensorflow as tfdef tensorflow_demo():"""TensorFlow的基本结构"""# TensorFlow实现加减法运算a_t = tf.constant(2)b_t = tf.constant(3)c_t = a_t + b_tprint("TensorFlow加法运算结果:\n", c_t)print(c_t.numpy())# 2.0版本不需要开启会话,已经没有会话模块了return Nonedef graph_demo():"""图的演示"""# TensorFlow实现加减法运算a_t = tf.constant(2)b_t = tf.constant(3)c_t = a_t + b_tprint("TensorFlow加法运算结果:\n", c_t)print(c_t.numpy())# 查看默认图# 方法1:调用方法default_g = tf.compat.v1.get_default_graph()print("default_g:\n", default_g)# 方法2:查看属性# print("a_t的图属性:\n", a_t.graph)# print("c_t的图属性:\n", c_t.graph)return Noneif __name__ == "__main__":# 代码1:TensorFlow的基本结构# tensorflow_demo()# 代码2:图的演示graph_demo()
python3 day01_deeplearning.pyTensorFlow加法运算结果:tf.Tensor(5, shape=(), dtype=int32)
5
default_g:<tensorflow.python.framework.ops.Graph object at 0x7f27651b5be0>

2、创建图
(1)可以通过tf.Graph()自定义创建图
(2)如果要在这张图中创建OP,典型用法是使用tf.Graph.as_default()上下文管理器

import os
os.environ['TF_CPP_MIN_LOG_LEVEL']='2'
import tensorflow as tfdef tensorflow_demo():"""TensorFlow的基本结构"""# TensorFlow实现加减法运算a_t = tf.constant(2)b_t = tf.constant(3)c_t = a_t + b_tprint("TensorFlow加法运算结果:\n", c_t)print(c_t.numpy())# 2.0版本不需要开启会话,已经没有会话模块了return Nonedef graph_demo():"""图的演示"""# TensorFlow实现加减法运算a_t = tf.constant(2)b_t = tf.constant(3)c_t = a_t + b_tprint("TensorFlow加法运算结果:\n", c_t)print(c_t.numpy())# 查看默认图# 方法1:调用方法default_g = tf.compat.v1.get_default_graph()print("default_g:\n", default_g)# 方法2:查看属性# print("a_t的图属性:\n", a_t.graph)# print("c_t的图属性:\n", c_t.graph)# 自定义图new_g = tf.Graph()# 在自己的图中定义数据和操作with new_g.as_default():a_new = tf.constant(20)b_new = tf.constant(30)c_new = a_new + b_newprint("c_new:\n", c_new)print("a_new的图属性:\n", a_new.graph)print("b_new的图属性:\n", b_new.graph)# 开启new_g的会话with tf.compat.v1.Session(graph=new_g) as sess:c_new_value = sess.run(c_new)print("c_new_value:\n", c_new_value)print("我们自己创建的图为:\n", sess.graph)return Noneif __name__ == "__main__":# 代码1:TensorFlow的基本结构# tensorflow_demo()# 代码2:图的演示graph_demo()
python3 day01_deeplearning.pyTensorFlow加法运算结果:tf.Tensor(5, shape=(), dtype=int32)
5
default_g:<tensorflow.python.framework.ops.Graph object at 0x7f19806c4d68>
c_new:Tensor("add:0", shape=(), dtype=int32)
a_new的图属性:<tensorflow.python.framework.ops.Graph object at 0x7f19809f5748>
b_new的图属性:<tensorflow.python.framework.ops.Graph object at 0x7f19809f5748>
c_new_value:50
我们自己创建的图为:<tensorflow.python.framework.ops.Graph object at 0x7f19809f5748>

说明:
(1)默认图执行结果是tf.Tensor(5, shape=(), dtype=int32)
(2)自定义图执行结果是Tensor("add:0", shape=(), dtype=int32)
(3)自定义图没有即时执行,需要开启Session指定图来执行
(4)可以看到默认图地址为0x7f19806c4d68,自定义图地址为0x7f19809f5748
 

http://www.yidumall.com/news/68238.html

相关文章:

  • 关于icp备案信息中注销网站的通知2345网址导航是病毒吗
  • 设计作品欣赏网站网络游戏推广员是做什么的
  • 营销导向企业网站策划关键词调整排名软件
  • 有哪些网站做的符合企业风格百度号码认证平台
  • 中企动力官方网站微商引流推广
  • 视频网站 阿里云苏州网站外包
  • 网站开发注意事项武汉seo外包平台
  • wordpress鲜花商城合肥网站优化技术
  • 启航做网站怎么样网络营销到底是个啥
  • 版权申请网站点击排名优化
  • 知名的电子商务网站网站快速排名服务
  • 新疆网架公司东莞关键词seo
  • p2c网站方案移动端seo关键词优化
  • 企业网站找谁做企业营销策划及推广
  • 透视图在什么网站上可以做深圳网络推广网站推广
  • 外贸购物网站建站百度查询
  • 网站地图什么意思怎么推广自己的公司
  • 宜春网站建设公司百度首页纯净版
  • WordPress runcode插件seo优化需要做什么
  • boostrop怎么做网站西安外包公司排行
  • 自建电商网站有哪些广告推广系统
  • 建设银行网站怎么不可登入株洲seo优化推荐
  • 南京网站搭建公司seo百度网站排名软件
  • 温州做网站公司有哪些小说排行榜2020前十名
  • 网站怎么做seo优化啊网络销售工资一般多少
  • 网站收录在下降老客外链
  • 网站规划建设方案产品市场推广方案范文
  • 在线做分析图的网站百度指数分析工具
  • 怎么用服务器ip做网站热点新闻最新消息
  • 宠物网站开发与实现百度点击软件