-
Notifications
You must be signed in to change notification settings - Fork 284
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MLBase::getMinChange() const’ member function declared in class ‘GRT::MLBase’ #171
Comments
dupe |
Hello, I have the same problem when I try to $ make -j1
I have a look to the MLbase.h and MLbase.cpp in the CoreModules folder and the two functions are not annotated. |
Glance at #170 Basically, in GRT/CoreModules/MLBase.h uncomment Then delete or disable the examples from being buillt. let me know if you need more help. |
The problem was in the MLBase.h, this line was commented
|
/grt/GRT/CoreModules/MLBase.cpp:262:30: error: no ‘GRT::Float GRT::MLBase::getMinChange() const’ member function declared in class ‘GRT::MLBase’
Float MLBase::getMinChange() const{
^~~~~
/home/ldd/project_computervision/grt/GRT/CoreModules/MLBase.cpp:316:42: error: no ‘bool GRT::MLBase::getRandomiseTrainingOrder() const’ member function declared in class ‘GRT::MLBase’
bool MLBase::getRandomiseTrainingOrder() const { return randomiseTrainingOrder; }
^~~~~
CMakeFiles/grt.dir/build.make:2150: recipe for target 'CMakeFiles/grt.dir/home/ldd/project_computervision/grt/GRT/CoreModules/MLBase.cpp.o' failed
make[2]: *** [CMakeFiles/grt.dir/home/ldd/project_computervision/grt/GRT/CoreModules/MLBase.cpp.o] Error 1
CMakeFiles/Makefile2:1597: recipe for target 'CMakeFiles/grt.dir/all' failed
make[1]: *** [CMakeFiles/grt.dir/all] Error 2
Makefile:140: recipe for target 'all' failed
make: *** [all] Error 2
have sovlved Float MLBase::getMinChange() const;
bool MLBase::getRandomiseTrainingOrder() const;
these two function was annotated
The text was updated successfully, but these errors were encountered: