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
I am trying to run MOSES with the --boost option set to true(1) to enable boosting. However, MOSES keeps failing by throwing the following exception:
terminate called after throwing an instance of 'opencog::AssertionException'
what(): bscore error not implemented for bscorer N7opencog5moses19ctruth_table_bscoreE (/home/xabush/moses/moses/moses/scoring/scoring_base.cc:116)
That code used to work, so, sure. Looks like there is some shared-library linkage problem; the executable wasn't linked correctly.
The meta-issue is that boosting, as a feature in moses, is not very useful. It sounds good, if you blur your eyes and don't think about it much, but, due to the nature of how moses works, boosting is nearly useless/harmful (unlike other machine-learning algos where it makes a big difference). It only works in a corner-case of the parameter space, and that corner is unused in real-world usage scenarios.
Since the boost code introduces extra complexity, while being effectively useless, it might be better to just #ifdef it out or remove entirely. This might be of particular interest for as-moses -- FYI -- @Habush
I am trying to run MOSES with the
--boost
option set to true(1) to enable boosting. However, MOSES keeps failing by throwing the following exception:Here the full command line options that I used:
The text was updated successfully, but these errors were encountered: