一、安装caffe(ubuntu18。04)

sudo apt-get install caffe-cuda

二、例子

参考
速成

  1. 准备数据trainlist.txt

  2. train.prototxt(其中包含数据层即trainlist)

  3. solver.prototxt (设置训练参数等)
    caffe框架学习速成caffe框架学习速成
    caffe框架学习速成
    执行命令
    caffe train -solver ./solver.prototxt -gpu 0 2>&1 | tee ./log/log_new.txt
    #cpu
    #caffe train -solver ./solver.prototxt 2>&1 | tee ./log/log.txt

三、caffe的train.prototxt的可视化Netscope

netscope官网http://ethereon.github.io/netscope/quickstart.html

  1. 进入网址
  2. 将train.prototxt的网络设计代码粘贴到网址里,shift+enter
    caffe框架学习速成

相关文章:

  • 2021-11-03
  • 2021-11-08
  • 2021-11-18
  • 2021-09-27
  • 2021-05-01
  • 2022-02-14
猜你喜欢
  • 2021-08-02
  • 2021-12-21
  • 2021-07-18
  • 2021-09-12
  • 2021-11-25
  • 2021-05-04
相关资源
相似解决方案