예제 #1
0
def run1():
    """ Run with restricted service level.
    """
    ins = Instance(conf1)
    ins.sale = shared_sale
    ins.evaluate_point_prediction()
    ins.run()
    ins.plot()
예제 #2
0
def run2():
    """ Run with high service level.
    """
    ins = Instance(conf2)
    ins.sale = shared_sale
    ins.evaluate_point_prediction()
    ins.run()
    ins.plot()
예제 #3
0
def run():
    ins = Instance(conf)
    ins.evaluate_point_prediction()
    ins.run()
    ins.plot()