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
The function main() in this file is intended to be called from the command line but it is not called.
main()
When I run python3.9 trainModel.py then main() should run, but it does not.
python3.9 trainModel.py
Crackling/src/crackling/utils/trainModel.py
Line 119 in b00de36
Adding the following code to the bottom of the script is a potential solution
if __name__ == '__main__': main()
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The function
main()
in this file is intended to be called from the command line but it is not called.When I run
python3.9 trainModel.py
thenmain()
should run, but it does not.Crackling/src/crackling/utils/trainModel.py
Line 119 in b00de36
Adding the following code to the bottom of the script is a potential solution
The text was updated successfully, but these errors were encountered: