码迷,mamicode.com
首页 >  
搜索关键字:graphs    ( 228个结果
Cacti如何实现电话告警
Cacti是一套基于PHP,MySQL,SNMP及RRD Tool开发的网络流量监测图形分析工具。Cacti提供了一个快速轮询器,高级图表模板,多种数据采集方法和用户管理功能。所有这一切都被包装在一个直观的,易于使用的界面中,这对于局域网以及成千上万个设备的复杂网络来说是有意义的。 但是为了不错过重 ...
分类:其他好文   时间:2020-02-20 16:56:12    阅读次数:73
python读取word文档中的表格内容
import docx fn = r'D:\长恨歌.docx' doc = docx.Document(fn) # 按段落读取全部数据 for paragraph in doc.paragraphs: print(paragraph.text) # 按表格读取全部数据 for table in do ...
分类:编程语言   时间:2020-02-14 20:32:33    阅读次数:266
codechef Far Graphs
难度 $medium hard$ 题意 "官方中文题意" 做法 性质 $1)$:若有奇环,只能是三元环 $2)$:若无奇环,显然是二部图 $3)$:若三元环,可分为三部分,分为集合$X,Y,Z$,$Y$与$X$跟$Z$有边,$X$与$Y$之间有边,我们称其为 三部图 推论1 :若为三部图,$Y$集均 ...
分类:其他好文   时间:2020-02-08 13:17:31    阅读次数:63
tensorflow入门
官网上对TensorFlow的介绍是, 一个使用数据流图(data flow graphs)技术来进行数值计算的开源软件库。 数据流图中的节点,代表数值运算; 节点节点之间的边,代表多维数据(tensors)之间的某种联系。 你可以在多种设备(含有CPU或GPU)上通过简单的API调用来使用该系统的 ...
分类:其他好文   时间:2020-01-22 14:52:00    阅读次数:94
COMMUNITY DETECTION_python-louvain
Python-louvain Package pip install python-louvain #Drawing partition Method 1: Method 2: Supplementary knowledge: 1. what is the partition of graphs. ...
分类:编程语言   时间:2020-01-20 20:51:33    阅读次数:188
Combine two graphs: nx.compose
nx.compose Return a new graph of G composed with H. Composition is the simple union of the node sets and edge sets. ref "link" ...
分类:其他好文   时间:2020-01-18 10:47:15    阅读次数:89
Mxnet使用TensorRT加速模型--Mxnet官方例子
官方示例链接 https://mxnet.apache.org/api/python/docs/tutorials/performance/backend/tensorrt/tensorrt.html Optimizing Deep Learning Computation Graphs with ...
分类:Web程序   时间:2020-01-01 20:50:28    阅读次数:269
Visual detection of structural changes in time-varying graphs using persistent homology
PKU blog about this paper Basic knowledge: 1. what is time-varying graphs? time-varying graph VS static graph. a time-varying graph - an ordered seque ...
分类:其他好文   时间:2019-12-16 17:47:55    阅读次数:92
210. Course Schedule II
There are a total of n courses you have to take, labeled from 0 to n-1. Some courses may have prerequisites, for example to take course 0 you have to ...
分类:其他好文   时间:2019-11-21 11:58:07    阅读次数:69
移除微信昵称中的emoji字符
移除微信昵称中的emoji字符: /** * 移除微信昵称中的emoji字符 * @param type $nickname * @return type */ function removeEmoji($nickname) { $clean_text = ""; // Match Emoticon ...
分类:微信   时间:2019-11-18 18:43:28    阅读次数:315
228条   上一页 1 2 3 4 5 ... 23 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!