精明鸭子

文章
9
资源
0
加入时间
2年10月17天

【算法】用lua解决快速排序问题

如下local list = { 3,1,5,18,34,32,0, }function printList() local str = "" for i = 1,#list do str = str .. list[i] .. " " end print(str)endfunction qsort(low,high) if low >= high then r

解决pip install networkx失败

解决pip install networkx失败打开终端,输入cmd,输入pip install -i https://pypi.tuna.tsinghua.edu.cn/simple networkx等待直至完成

论文《胶囊之间的动态路由》 (基于Hinton的胶囊网络)

Hinton在论文《Dynamic Routing Between Capsules》中提出了CapsNet,论文获取地址为:https://arxiv.org/abs/1710.09829论文结合此篇文章阅读:先读懂CapsNet架构然后用TensorFlow实现:全面解析Hinton提出的Capsule知乎上有两篇文章对论文解析的很好: 知乎上云梦居客关于此篇论文的回答:https:...