Sebastian Raschka
Sebastian Raschka
Oh okay. Hm, I am not sure if there's a good way to avoid that; I think it's more like a limitation of the shell environment. The only way I...
Thanks a lot, looks great so far. Will give it a more thorough look over the weekend and let you know if I have any suggestions! Btw. do you know...
Hm, not sure why, but it's not sending messages in my case. However, when I just ran a simple test ``` python server_ssl = smtplib.SMTP_SSL("smtp.gmail.com", 465) server_ssl.login('[email protected]', passw) msg =...
> Thanks a lot for your feedback! I will try to fix all the notes as soon as possible Thanks! And no need to rush :)
No need to apologize! And thanks for the updated PR :). A short example in the Readme (and in the example Jupyter notebook) would be nice! I will give it...
Hm, that's weird. Just tried your example and it worked. Did you maybe have a different indentation? 
> Should the whole progress bar/percentage to be added to the log file as well? Hm, I would say yes. It may seem a bit cluttered, but it would be...
Hi, Victor, thanks for the request, that sounds useful. Would this solve your problem ? ``` num_lines = int(subprocess.check_output(['wc', '-l', 'path to file']).decode('utf8').split()[0]) ``` I think getting the number of...
I think that's a great idea! I have [sth similar implemented here](https://github.com/rasbt/protein-science/blob/master/scripts-and-tools/split_multimol2/split_multimol2.py#L24) for reading a specific file format. Right now, I have a [book](https://www.packtpub.com/big-data-and-business-intelligence/python-machine-learning-essentials) to finish, but in August, I...
Plus a separate `ProgReadfile` class would have the advantage of having less "if-else" checks, which are potentially slowing done the code if the number of iterations is large.