Machine-Deep-Learning
Machine-Deep-Learning copied to clipboard
:wave: ML/DL学习笔记(基础+论文)
* MaskRCNN:https://www.infoq.cn/article/image-object-recognition-mask-rcnn

> 平均往返时延RTT= a * (旧的RTT) + (1-a) * (新的往返时延样本) > 《计算机网络(第四版)》 谢希仁 可以看做一种IIR低通滤波器。  本身具有反馈支路。 可以起到滤波平滑的作用。 > 感谢刘文龙老师的启发
想法交流
技巧-Pytorch
# 损失函数整理 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)...
## Row LSTM/Diagonal BiLSTM ### 结构  ### 计算  > https://www.cnblogs.com/lart/p/10540898.html > Pixel Recurrent Neural Networks