zoukankan      html  css  js  c++  java
  • caffe的matlab接口一览表

    blob 简述

      方法: 

        shape  

        reshape

        get_diff

        set_diff

      私有方法:

        check_and_preprocess_shape

        check_and_preprocess_data

        check_data_size_matches

    get_net(model_file,weight_file,phase_name)  简述 生成网络 (模型文件,模型参数,训练train还是测试test) 

      方法:

    get_solver 简述 生成解决方案

    io  简述 输入输出函数

      方法:

        load_image

        set_mean

        get_mean

    layer  简述 caffe::layer 的包装

    net  简述

    reset_all  简述 清空所有的解决方案(resolver),和独立网络,并复位caffe 

    run_test  简述

    set_devices  简述  

    set_mode_cpu 简述

    set_mode_gpu 简述

    solver 简述  caffe::SGDSolver的包装

    version   简述 1.0.0-rc3 rc的含义为release candidate发布候选版 

    使用案例:DDFD

    caffe.reset_all()

    test_net1=caffe.Net('Cifar10/cifar10_deploy.prototxt','Cifar10/cifar10_iter_270000','test');

    caffe.io.load_image

    test_net1.blob_vec

    test_net1.forward

  • 相关阅读:
    gulp
    grunt
    iscroll手册
    Javascript闭包演示【转】
    【转】Backbone.js学习笔记(二)细说MVC
    【转】Backbone.js学习笔记(一)
    node包管理相关
    写出高效率的正则表达式的几点建议
    常用正则表达式
    help、man和info工具的区别
  • 原文地址:https://www.cnblogs.com/laiqun/p/6038975.html
Copyright © 2011-2022 走看看