- 博客(3)
- 收藏
- 关注
原创 warmup lr+CosineAnnealingLR策略
warmup lr策略就是在网络训练初期用比较小的学习率,线性增长到初始设定的学习率。 大概就是下面这个趋势,从0上升到0.01,再按照正常的学习率调整策略训练。 import torch from torch.optim.lr_scheduler import _LRScheduler class WarmUpLR(_LRScheduler): """warmup_training learning rate scheduler Args: optimiz
2020-11-19 15:03:39 7515 9
原创 brew_install
#!/bin/bash set -u # First check if the OS is Linux. if [[ "$(uname)" = "Linux" ]]; then HOMEBREW_ON_LINUX=1 fi # On macOS, this script installs to /usr/local only. # On Linux, it installs to /ho...
2020-03-10 17:53:15 1145
原创 FCN+CRF
经过fcn的输出图可以接CRF后处理。 python版本代码 安装:pip install pydensecrf 测试语句:python inference.py image.jpg output.png result.png image是原图,output是CNN语义分割结果,result是CRF处理后的图。 利用fcn输出结果测试。 我最开始的输出是这样的。。。 后来...
2018-08-24 14:56:43 3695 12
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人