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
For the build_model() function, I needed to change for i in xrange(0, num_passes): to just range(0, num_passes): to make it work in Python 3.
build_model()
for i in xrange(0, num_passes):
range(0, num_passes):
For the final print statement, I also needed to add parentheses. After those two updates, I was able to get a great result. Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For the
build_model()
function, I needed to changefor i in xrange(0, num_passes):
to justrange(0, num_passes):
to make it work in Python 3.For the final print statement, I also needed to add parentheses. After those two updates, I was able to get a great result. Thanks!
The text was updated successfully, but these errors were encountered: