Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Error in error message - models/eval/visualization.py #100

Open
albusdemens opened this issue Feb 6, 2020 · 0 comments
Open

Error in error message - models/eval/visualization.py #100

albusdemens opened this issue Feb 6, 2020 · 0 comments

Comments

@albusdemens
Copy link

albusdemens commented Feb 6, 2020

Current code (

if checkpointData is None:
):

    if checkpointData is None:
        raise FileNotFoundError(
            "Not checkpoint found for model " + name + " at directory " + dir)

Should be changed into something like

    if checkpointData is None:
        print(
            "Checkpoint not found for model %s at directory %s" % (name, checkPointDir))
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant