Skip to content
Snippets Groups Projects
Select Git revision
  • 077834d33a8237924a649960a68a0b9066048f5d
  • master default
2 results

test_pass_though.py

Blame
  • Forked from finesse / pykat
    Source project has a limited visibility.
    99-loopplot.py 332 B
    import os
    
    for i in range(10):
    	print(i)
    	os.system('python plot_sample.py --hdf-file-path output/train.hdf --sample-id '+str(i)+' --plot-path "plots/'+str(i)+'.png"')
    
    
    for i in range(100,110):
    	print(i)
    	os.system('python plot_sample.py --hdf-file-path output/train.hdf --sample-id '+str(i)+' --plot-path "plots/'+str(i)+'.png"')