最新 最热

leetcode495. Teemo Attacking

In LOL world, there is a hero called Teemo and his attacking can make his enemy Ashe be in poisoned condition. Now, given the Teemo's attacking ascending time s...

2020-05-12
1

Mongodb 查询优化

A good writeup of how your index should be created is available in Optimizing MongoDB Compound Indexes. Let's take the main point of the article, where the comp...

2020-05-11
0

Using dummy estimators to compare results使用虚拟估计值来对比结果

This recipe is about creating fake estimators; this isn't the pretty or exciting stuff, but it is worthwhile to have a reference point for the model you'll even...

2020-05-07
1

Generalizing with multiclass classification多分类问题简单介绍

In this recipe, we'll look at multiclass classification. Depending on your choice of algorithm,you either get multiclass classification for free, or you have to...

2020-05-06
1

该捋清!卷积、可分离卷积的参数和FLOPs计算!

不要着急,我们先假设:输入feature maps的通道数、输出的通道数、卷积核尺寸(长和宽一样时)分别为:

2020-04-27
0

关于NVIDIA AGX Xavier NX的最新进展

Lady汇总一下关于NVIDIA AGX Xavier NX的最新进展Jetson Xavier NX资料全放送,NVIDIA这次很麻利儿

2020-04-17
0

发育谱系推断及可视化

细胞的变化是连续性的,它们从一个时间到另一个时间的变化轨迹是非常需要了解的,这也就是为何谱系推断这么重要的原因。

2020-03-30
0

2.A* Search

A *伪代码Search( grid, initial_point, goal_point ) :1.初始化一个空的打开节点列表 2.使用以下内容初始化起始节点:由initial_point给

2020-02-18
0

collections模块

collections模块在内置数据类型(dict、list、set、tuple)的基础上,还提供了几个额外的数据类型:ChainMap、Counter、deque、defaultdict、namedtuple和OrderedDict等。

2020-01-20
1

数据分析——pyecharts

导入类库1 from pyecharts import Pie, Bar, Gauge, EffectScatter, WordCloud, Map, Grid, Line, Timeline2 import random make_point:标注,类似于matplotlib的text is_stack:...

2020-01-20
1