Easy increase of user-friendlyness
Hi,
I came across two things that might be of help when working with nutils.
(1) Add a button 'second last run' next to the existing 'latest overall'. Often I look at a sequence of experiments using a shell script and then a new computation starts right after the previous finishes. So when I click on 'latest run' I do not get the just finished results which I am interested in.
(2) Add a funtionality to re-name tabs in a browser from within python. This has nothing to do with nutils, but could help a lot in managing multiple experiments.
Hi Manuel, @1: how about running the sequence of experiments from your python script? This gives you access to not only the second-last, but all of the experiments in the series, which might also be useful for later reference. Something like this:
from nutils import *
def main(param=0):
log.info(param)
def sequence():
for param in log.range('param', 3):
main(param)
cli.choose(main, sequence)
Hope this helps!