Description
1st of all this is an awesome repo.
Update: I have it working on Python 3.7 for science_rcn/run.py
but had to make a few specific code design change to achieve the Total test accuracy = 0.7
.
There were a few changes you had to make to update the code to Python 3.7. Unrelated to updating the code from Python 2.7 to Python 3.7 are the following design changes:
1 important change is in preproc.py
fwd_infer(...)
function I had to change
localized[localized < 1] = 0
to
localized[localized < background_threshold] = 0
& added a background_threshold=.001
function argument to fwd_infer(...)
I also changed max_cxn_length=100
in add_underconstraint_edges(...)
to max_lateral_connection_pixel_length=15
to create graphs that looked like the following:
NOTE: changing max_cxn_length=100
to max_cxn_length=15
did not effect the Total test accuracy = 0.7
.
If you do this & rerun science_rcn/run.py
with 10 train & test images instead of the default 20 you also get Total test accuracy = 0.7
.