mirror of https://github.com/alibaba/MNN.git
18 lines
344 B
C++
18 lines
344 B
C++
//
|
|
// GoogLeNetExpr.hpp
|
|
// MNN
|
|
// Reference paper: https://arxiv.org/pdf/1409.4842.pdf
|
|
//
|
|
// Created by MNN on 2019/06/25.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#ifndef GoogLeNetExpr_hpp
|
|
#define GoogLeNetExpr_hpp
|
|
|
|
#include <MNN/expr/Expr.hpp>
|
|
|
|
MNN::Express::VARP googLeNetExpr(int numClass);
|
|
|
|
#endif // GoogLeNetExpr_hpp
|