示例#1
0
import time
from gym_continuous_control import grid_search_boundary
from rm import Rm

start_time = time.time()
grid_search_boundary(Rm)
print("$$$$$ total train time: {:.2e}.".format(time.time() - start_time))

start_time = time.time()
grid_search_boundary(Rm, is_test=True)
print("$$$$$ total test time: {:.2e}.".format(time.time() - start_time))
示例#2
0
import time
from gym_continuous_control import grid_search_boundary
from prs import PureRandomSearch

start_time = time.time()
grid_search_boundary(PureRandomSearch)
print("$$$$$ total train time: {:.2e}.".format(time.time() - start_time))

start_time = time.time()
grid_search_boundary(PureRandomSearch, is_test=True)
print("$$$$$ total test time: {:.2e}.".format(time.time() - start_time))
示例#3
0
import time
from gym_continuous_control import grid_search_boundary
from rechenberg import Rechenberg

start_time = time.time()
grid_search_boundary(Rechenberg)
print("$$$$$ total train time: {:.2e}.".format(time.time() - start_time))

start_time = time.time()
grid_search_boundary(Rechenberg, is_test=True)
print("$$$$$ total test time: {:.2e}.".format(time.time() - start_time))
示例#4
0
import time
from gym_continuous_control import grid_search_boundary
from rr1 import RestartRankOne

start_time = time.time()
grid_search_boundary(RestartRankOne)
print("$$$$$ total train time: {:.2e}.".format(time.time() - start_time))

start_time = time.time()
grid_search_boundary(RestartRankOne, is_test=True)
print("$$$$$ total test time: {:.2e}.".format(time.time() - start_time))
import time
from gym_continuous_control import grid_search_boundary
from genitor import GENITOR

start_time = time.time()
grid_search_boundary(GENITOR)
print("$$$$$ total train time: {:.2e}.".format(time.time() - start_time))

start_time = time.time()
grid_search_boundary(GENITOR, is_test=True)
print("$$$$$ total test time: {:.2e}.".format(time.time() - start_time))