最新 最热

Vue.js入门笔记 事件修饰符

在事件处理程序中调用 event.preventDefault() 或 event.stopPropagation() 是非常常见的需求。尽管我们可以在方法中轻松实现这点,但更好的方式是:方法只有纯粹的数据逻辑,而不是去处理 DOM 事件细节。为了解决这个...

2019-12-24
1

2019最新进展 | Transformer在深度推荐系统中的应用

。意思是如果序列长度超过n,则使用最近n个行为。如果不足n,则从左侧做padding直到长度为n。

2019-12-23
1

论文阅读-20190924

《SANVis: Visual Analytics for Understanding Self-Attention Networks》

2019-12-18
1

【Rust问答】关于Deref, 使&&T变成&T的疑问

目前知道rust会使&&&&T这种类型归一化, 使用时最终会变成一个&, 感觉这是deref在起作用, 所以翻看源码, 看到如下的系统实现:

2019-12-17
0

python 类方法classmethod

<pre style="box-sizing: border-box; font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", Courier, monospace; font-size: 12px;...

2019-12-13
1

python 属性property

class Person: def init(self, first_name): self.first_name = first_name

2019-12-13
1

python 调用父类方法super()

class A: def spam(self): print('A.spam')

2019-12-13
1

python 将计算结果保留到缓存中

<pre style="box-sizing: border-box; font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", Courier, monospace; font-size: 12px;...

2019-12-12
1

python 类的字符串显示

class Pair: def init(self, x, y): self.x = x self.y = y

2019-12-12
1

python 通过字符串方式调用方法operator.methodcaller

class Point: def init(self, x, y): self.x = x self.y = y

2019-12-12
1