1.作图 https://www.cnblogs.com/zpc1001/p/13322902.html # 每一个epoch,记录各层权重、梯度 for name, param in net.named_parameters(): # 返回网络的 writer.add_histogram(name ...
分类:
其他好文 时间:
2021-06-02 12:54:49
阅读次数:
0
Prometheus是最初在SoundCloud上构建的开源系统监视和警报工具包 。自2012年成立以来,许多公司和组织都采用了Prometheus,该项目拥有非常活跃的开发人员和用户社区。现在,它是一个独立的开源项目,并且独立于任何公司进行维护。为了强调这一点并阐明项目的治理结构,Promethe ...
分类:
其他好文 时间:
2021-04-23 11:51:26
阅读次数:
0
在做项目中,有一个需求是统计本周内每天的漏洞数量,我选用的是ES中的date_histogram函数来进行聚合统计; 但是出现了一个问题,聚合出来的结果和想要统计的结果时间不一致,如下图所示 时间区间过滤8号到14号,应该显示7个时间段,结果却显示出8个时间段分别是7号-14号。 经过排查发现是ES ...
分类:
其他好文 时间:
2021-02-19 13:38:28
阅读次数:
0
Largest Rectangle in Histogram (H) 题目 Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the ...
分类:
其他好文 时间:
2021-01-05 10:40:12
阅读次数:
0
tensorflow版本:1.15.0 tf.summary.scalar,tf.summary.histogram,tf.summary.merge_all,tf.summary.merge,tf.summary.FileWriter,writer.add_summary用法简单演示! impor ...
分类:
其他好文 时间:
2020-12-03 11:45:54
阅读次数:
4
1,将堆信息导入到mat中分析,查看index.html 2,加载后首页如下图,在首页上比较有用的是Histogram和Leak Suspects。 Leak Suspects Report(内存泄露报告) 3, 点击Details进入详情页面。在详情页面Shortest Paths To the ...
分类:
其他好文 时间:
2020-11-25 12:41:31
阅读次数:
4
本文始发于个人公众号:TechFlow,原创不易,求个关注 今天是LeetCode专题53篇文章,我们一起来看看LeetCode中的85题,Maximal Rectangle(最大面积矩形)。 今天的这道题目和上一篇文章讲的Largest Rectangle in Histogram这题有一定的相似 ...
分类:
其他好文 时间:
2020-07-22 13:51:02
阅读次数:
79
elasticsearch: 先随便贴一个查询数据: GET /test/_search { "size": 0, "aggs": { "find_missing_ids": { "histogram": { "field": "numeric_id", "interval": 1, "min_do ...
分类:
其他好文 时间:
2020-07-13 11:24:39
阅读次数:
70
1、函数 matmul(a,b,name=None): 功能: 矩阵乘运算"""Multiplies matrix `a` by matrix `b`, producing `a` * `b`. tf.square(error) 功能:平方 tf.reduce_mean(error) 功能:均值 t ...
分类:
其他好文 时间:
2020-07-11 21:02:11
阅读次数:
68
题目描述: 给定 n 个非负整数,用来表示柱状图中各个柱子的高度。每个柱子彼此相邻,且宽度为 1 。 求在该柱状图中,能够勾勒出来的矩形的最大面积。 以上是柱状图的示例,其中每个柱子的宽度为 1,给定的高度为 [2,1,5,6,2,3]。 示例: 输入: [2,1,5,6,2,3]输出: 10 解题 ...
分类:
其他好文 时间:
2020-07-06 12:47:55
阅读次数:
57