xshinnosuke_cpp icon indicating copy to clipboard operation
xshinnosuke_cpp copied to clipboard

A deep learning framework realized by cpp(Eigen based).

Results 1 xshinnosuke_cpp issues
Sort by recently updated
recently updated
newest added

Hello, this my CMakeLists.txt for this project. When I build this project, something went wrong! ``` cmake_minimum_required(VERSION 3.16.0 FATAL_ERROR) project(xshinnosuke CXX) find_package(Eigen3 REQUIRED) include_directories(${EIGEN3_INCLUDE_DIRS}) set(PROJECT_NAME xshinnosuke) set(no_group_source_files "demo.cpp" "models.cpp" "models.h"...