Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

anyone have a working version of this in Python 3.7? #23

Open
@quinnliu

Description

@quinnliu

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:

label=0_num_landmark_features=80_num_close_pairs=420_perturb_factor=2 0_max_lateral_connection_pixel_length=15_tolerance=4

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions