Skip to content
Snippets Groups Projects
Select Git revision
  • b5f24e3a736e2b7ce11d994bf48a00957a1ec7ff
  • master default protected
  • 72-improve-docs-for_optimal_setup
  • os-path-join
  • develop-GA
  • add-higher-spindown-components
  • v1.3
  • v1.2
  • v1.1.2
  • v1.1.0
  • v1.0.1
11 results

make_fake_data.py

Blame
  • 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"')