// // Lenet.hpp // MNN // // Created by MNN on 2020/01/10. // Copyright © 2018, Alibaba Group Holding Limited // #ifndef LenetModels_hpp #define LenetModels_hpp #include namespace MNN { namespace Train { namespace Model { class MNN_PUBLIC Lenet : public Express::Module { public: Lenet(); virtual std::vector onForward(const std::vector& inputs) override; std::shared_ptr conv1; std::shared_ptr conv2; std::shared_ptr ip1; std::shared_ptr ip2; std::shared_ptr dropout; }; } // namespace Model } // namespace Train } // namespace MNN #endif // LenetModels_hpp