File size: 182 Bytes
3894c45
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import munch

def LogOptions():
    lo = munch.Munch()
    # Save images each x iters
    lo.display_freq = 10000

    # Print info each x iters
    lo.print_freq = 10
    return lo