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 then main() should run, but it does not.
Adding the following code to the bottom of the script is a potential solution
if __name__ == '__main__':
main()
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.pythenmain()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