run_train infinite loop?
See original GitHub issueHi,
First of all, congrats for this project, it appears to be very promising.
I ran run_train like this ./run_train.py --target=low BTC_ETH --period=day
and 2 days later, it’s still running with around 77 _zoo/BTC_ETH sub folders, with only LinearModel.
Could it be the reason that the training is still ongoing? i.e. in an attempt to find other models with good results, without success? I did not find where to configure the limit.
Thanks and keep the good work!
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Hypnotic Infinite Loop Train - Earthly Mission
Hypnotic Infinite Loop Train ... turn several toy locomotive sets into a contemporary kinetic art installation that creates infinite loops.
Read more >tensorflow:Waiting for new checkpoint at /home/chowkam ...
Iam getting into infinite loop with tensorflow:Waiting for new checkpoint ... You can run train.py and eval.py simultaneously, train.py will ...
Read more >Possible to make an infinite train loop? : r/factorio - Reddit
I want to make a very long train that continues to run until it is out of fuel. I managed to do this...
Read more >Sprung Points - Turing Trains - cr31
Tasks can be reduced into a series of smaller ones. We can control how the train traverses a layout, which tasks are performed...
Read more >Training Pipelines & Models · spaCy Usage Documentation
You can now add your data and run train with your config. ... If >= 0, train corpus is loaded once in #...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@bautroibaola This is a common problem in ML: there is no way to tell the model is ready. What people usually do is train it as long as they have time and simply take the best models. That’s why there’s an endless loop. However, feel free to replace it with some limit.
Dear maxim,
I also have same concern with flamby:
Because in run_train.py has while True loop, so how can I know when I should stop the training and move to run_predict.py? And need I run train every time before run predict?
Thanks for your hard work!