上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 73 下一页
摘要: 尺寸:是指图片的长度和宽度。 体积:是指图片文件在计算机中的储存容量大小。 分辨率:这里指的是图像分辨率,是单位英寸中所包含的像素点数。 阅读全文
posted @ 2022-04-21 11:36 Tomorrow1126 阅读(596) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/355271993 1.registry 2.config 3.装饰器 阅读全文
posted @ 2022-04-20 15:38 Tomorrow1126 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 一、progan,https://zhuanlan.zhihu.com/p/93748098 stylegan的前身是progan,Progressive Growing of GANs for Improved Quality, Stability, and Variation ProGAN 最大 阅读全文
posted @ 2022-04-19 19:12 Tomorrow1126 阅读(1003) 评论(0) 推荐(0) 编辑
摘要: tensorflow中的tile()函数是用来对张量(Tensor)进行扩展的,其特点是对当前张量内的数据进行一定规则的复制。最终的输出张量维度不变。 函数定义: tf.tile(input,multiples,name=None)input是待扩展的张量,multiples是扩展方法。假如inpu 阅读全文
posted @ 2022-04-19 16:41 Tomorrow1126 阅读(385) 评论(0) 推荐(0) 编辑
摘要: tf.identity( input, name=None ) #Return a tensor with the same shape and contents as input. #返回一个tensor,contents和shape都和input的一样 y = tf.identity(x)是一个 阅读全文
posted @ 2022-04-19 16:27 Tomorrow1126 阅读(111) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/ujr8XubG9jpvM-zOGcZxRw 针对图像分类任务,提升准确率的方法路线有两条,一个是模型的修改,另一个是各种数据处理和训练的技巧(tricks)。图像分类中的各种技巧对于目标检测、图像分割等任务也有很好的作用, 因此值得好好总结。本 阅读全文
posted @ 2022-04-19 15:10 Tomorrow1126 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-04-19 15:05 Tomorrow1126 阅读(74) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/gzq0723/article/details/105885088 也有大佬说一开始梯度爆炸是正常的 https://zhuanlan.zhihu.com/p/79887894 混合精度计算(Mixed Precision),并介绍一款Nvidia开发的基 阅读全文
posted @ 2022-04-19 14:59 Tomorrow1126 阅读(709) 评论(0) 推荐(0) 编辑
摘要: tensor 是 PyTorch 中的完美组件,但是构建神经网络还远远不够,我们需要能够构建计算图的 tensor,这就是 Variable。Variable 是对 tensor 的封装,操作和 tensor 是一样的, 但是每个 Variabel都有三个属性,Variable 中的 tensor本 阅读全文
posted @ 2022-04-18 16:24 Tomorrow1126 阅读(41) 评论(0) 推荐(0) 编辑
摘要: RMSProp算法的全称叫 Root Mean Square Prop(均方根传递),是 Hinton 在 Coursera 课程中提出的一种优化算法,在上面的 Momentum 优化算法中,虽然初步解决了优化中摆动幅度大的问题。 为了进一步优化损失函数在更新中存在摆动幅度过大的问题,并且进一步加快 阅读全文
posted @ 2022-04-18 14:39 Tomorrow1126 阅读(1264) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 73 下一页