Exemple #1
0
def test_bc(observation_shape, action_size, scaler):
    bc = BC(scaler=scaler)
    algo_tester(bc, observation_shape, imitator=True)
    algo_update_tester(bc, observation_shape, action_size)
Exemple #2
0
def test_bc_performance():
    bc = BC(n_epochs=1)
    algo_pendulum_tester(bc)
Exemple #3
0
def test_bc_performance():
    bc = BC()
    algo_pendulum_tester(bc)