We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I noticed a little bug in the cell #9 of tutorial #3 in which opt should be replaced by opts as below.
if not os.path.exists("%s/project_v%s.pkl.gz" % (opts["working_path"], __version__)): proj_obj = luna.projects.LocalProject(**opts) proj_obj.run() else: print("Reloading project...") print() proj_obj = LocalProject.load(opts["working_path"], verbosity=3, logging_enabled=True)
The text was updated successfully, but these errors were encountered:
Thanks, @pducrot, for letting me know about this bug and your interest in LUNA.
However, based on your code, it seems you're repo is not the latest LUNA version.
For example, this line
if not os.path.exists("%s/project_v%s.pkl.gz" % (opts["working_path"], __version__)):
has been replaced by this one
if not os.path.exists(LocalProject.get_project_file(opts["working_path"])):
Could you double-check your repo and the LUNA version are updated?
bests
Sorry, something went wrong.
No branches or pull requests
Hi, I noticed a little bug in the cell #9 of tutorial #3 in which opt should be replaced by opts as below.
The text was updated successfully, but these errors were encountered: