You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first error is a simple include error (caused by the git folder "OpenNN" including capital letters):
/my/source/directory/OpenNN/opennn/kmeans.cpp:26:10: fatal error: ../../opennn/opennn/opennn.h: No such file or directory
26 | #include "../../opennn/opennn/opennn.h"
I fixed that one, but then I encountered a second error where no immediate fix was obvious to me:
/my/source/directory/OpenNN/opennn/region_proposal_layer.h:104:9: error: 'outputs_data' was not declared in this scope
104 | outputs_data.resize(2);
| ^~~~~~~~~~~~
/my/source/directory/OpenNN/opennn/region_proposal_layer.h:105:9: error: 'outputs_dimensions' was not declared in this scope; did you mean 'get_dimensions'?
105 | outputs_dimensions.resize(2);
Please advise on how to succesfully compile the software.
The text was updated successfully, but these errors were encountered:
I managed to compile OpenNN 6.0.3 on Ubuntu through WSL. It looks like the main branch currently does not compile. Download the 6.0.3 release tar instead and try compiling that.
I'm wanted to try out OpenNN but the current version does not compile. Here are the steps I took (I'm on a Debain Linux machine):
git clone https://github.com/Artelnics/OpenNN
cd OpenNN/
mkdir build && cd build
cmake ..
make opennn
The first error is a simple include error (caused by the git folder "OpenNN" including capital letters):
I fixed that one, but then I encountered a second error where no immediate fix was obvious to me:
Please advise on how to succesfully compile the software.
The text was updated successfully, but these errors were encountered: