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
fit_model
build_model_from_dir
The below solution works for now, but we should investigate whether there are string startswith() calls that should really be path manipulation.
startswith()
The positional form for fit_model script was causing an error in its call down to build_model_from_dir because runpy.run_path(prior_path) was failing
runpy.run_path(prior_path)
AttributeError: 'PosixPath' object has no attribute 'startswith'
An easy fix committed here was to convert to string at this point.
Originally posted by @SamuelBrand1 in #138 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The below solution works for now, but we should investigate whether there are string
startswith()
calls that should really be path manipulation.Originally posted by @SamuelBrand1 in #138 (comment)
The text was updated successfully, but these errors were encountered: