Machine-Deep-Learning icon indicating copy to clipboard operation
Machine-Deep-Learning copied to clipboard

:wave: ML/DL学习笔记(基础+论文)

Results 15 Machine-Deep-Learning issues
Sort by recently updated
recently updated
newest added

另一个清单 https://www.yuque.com/lart/papers/list

List
paper

* MaskRCNN:https://www.infoq.cn/article/image-object-recognition-mask-rcnn

![image](https://user-images.githubusercontent.com/16298490/49634289-32f71900-fa37-11e8-8024-33a26237a1f5.png)

> 平均往返时延RTT= a * (旧的RTT) + (1-a) * (新的往返时延样本) > 《计算机网络(第四版)》 谢希仁 可以看做一种IIR低通滤波器。 ![image](https://user-images.githubusercontent.com/26847524/47493895-015d3080-d883-11e8-97f1-30b50fb0d3b9.png) 本身具有反馈支路。 可以起到滤波平滑的作用。 > 感谢刘文龙老师的启发

Good idea

# 损失函数整理 https://blog.csdn.net/zhangxb35/article/details/72464152?utm_source=itdadao&utm_medium=referral

```python import os if os.path.isdir(path): print "it's a directory" elif os.path.isfile(path): print "it's a normal file" else: print "it's a special file(socket,FIFO,device file)" >>> os.path.exists('d:/assist') True >>> os.path.exists('d:/assist/getTeacherList.py') True os.path.getsize(path)...

需要编写一个小脚本,处理文档中的图片链接,不然不方便分享到其他博客网站.

Good idea

## Row LSTM/Diagonal BiLSTM ### 结构 ![image](https://user-images.githubusercontent.com/26847524/54469679-39372700-47d6-11e9-8133-3db7a5aafc8a.png) ### 计算 ![image](https://user-images.githubusercontent.com/26847524/54469685-57048c00-47d6-11e9-9720-8defd0bba8ea.png) > https://www.cnblogs.com/lart/p/10540898.html > Pixel Recurrent Neural Networks