10/05/2019 Assignment 3 — CSSE1001 Semester 1, 2019file:///Users/ben/university/tutoring/CSSE1001/2019s1/a3/2019s1a3/spec/dist/index.html 1/11Ninedraf ...
分类:
Web程序 时间:
2019-05-18 20:29:32
阅读次数:
101
Green Icebergs Icebergs are massive blocks of ice, irregular in shape; they float with only about 12 percent of their mass above the sea surface. They ...
分类:
其他好文 时间:
2019-05-18 18:44:15
阅读次数:
103
https://blog.csdn.net/zz2230633069/article/details/82669546 2018年09月12日 22:56:50 一只tobey 阅读数:727 2018年09月12日 22:56:50 一只tobey 阅读数:727 1.numpy类型:numpy. ...
分类:
其他好文 时间:
2019-05-17 18:07:21
阅读次数:
198
import tensorflow as tf from tensorflow.python.framework import graph_util v1 = tf.Variable(tf.constant(1.0, shape=[1]), name = "v1") v2 = tf.Variable... ...
分类:
编程语言 时间:
2019-05-16 14:01:24
阅读次数:
349
Image是一个用于展示图片的组件。支持 JPEG、PNG、GIF、Animated GIF、WebP、Animated WebP、BMP 和 WBMP 等格式。 Image 有许多的静态函数: new Image.asset - 用于从资源目录的显示图片。 new Image.network - ...
分类:
其他好文 时间:
2019-05-13 20:10:39
阅读次数:
138
为了让它更具体一些,让我们回去看看MNIST例子的过程。首先,我们下载了MNIST的数据包; (略) 下一步,我们展示了张量train_images的轴的数量,ndim属性: (略) 这是它的shape: (略) 并且这是它的数据类型,dtype属性: (略) 所以我们有了一个8位int的3D张量。 ...
分类:
编程语言 时间:
2019-05-13 16:32:21
阅读次数:
132
常用的合并数组方法有以下几种: 1 array_merge 2 '+' 3 array_merge_recursive 下面是一段对比的代码 结果如下所示 对比array_merge和+以及array_merge_recursive结果的”color”的值我们可以看出:1.对于相同的字符串索引,ar ...
分类:
编程语言 时间:
2019-05-11 23:23:06
阅读次数:
225
我要计算整个轮廓的面积,首先搜索dissolve工具,合并所有要素。 然后打开图层的Attribute table,选择Field Caculator后, 进行如下设置,建立一个area属性栏,点击OK之后,属性栏之中的数据,即是我所需要的面积数据。 ...
分类:
其他好文 时间:
2019-05-11 13:23:04
阅读次数:
625
如何通过实例方法名字的字符串调用方法 问题举例 在某项目中我们的代码用了三个不同库中的图形类:Circle,Triangle,Rectangle 它们都有一个获取图形面积的接口,单接口名字可能不同,我们可以实现一个统一的获取 面积的函数,使用每种方法名进行尝试,调用相应类的接口。 解决思路 方法一: ...
分类:
编程语言 时间:
2019-05-11 10:51:59
阅读次数:
167
[TOC] TensorFlow2 维度变换 Outline(大纲) shape, ndim reshape expand_dims/squeeze transpose 图片视图 [b, 28, 28] 保存b张图片,28行,28列(保存数据一般行优先),图片的数据没有被破坏 [b, 28\ 28] ...
分类:
其他好文 时间:
2019-05-09 22:15:38
阅读次数:
170