diff --git a/README.md b/README.md index 5d8a04e..a0761ef 100644 --- a/README.md +++ b/README.md @@ -255,4 +255,5 @@ PS: - [ ] download / upload experiment logs through timestamp. - [ ] add a document to the plot function. - [ ] allow sync LOG only or ALL TYPE LOGS. -- [ ] support aim and smarter logger. +- [x] support aim and smarter logger. +- [ ] add unit_test to ckp loader. diff --git a/RLA/__init__.py b/RLA/__init__.py index e69de29..796741c 100644 --- a/RLA/__init__.py +++ b/RLA/__init__.py @@ -0,0 +1,3 @@ +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_plot.plot_func_v2 import plot_func \ No newline at end of file diff --git a/RLA/easy_log/const.py b/RLA/easy_log/const.py index 82f200d..4eaa5d9 100644 --- a/RLA/easy_log/const.py +++ b/RLA/easy_log/const.py @@ -6,5 +6,14 @@ ARCHIVED_TABLE = 'arc' default_log_types = [LOG, CODE, CHECKPOINT, ARCHIVE_TESTER, OTHER_RESULTS] -class LOAD_TESTER_MODE: - FORK_TO_NEW = 'fork' \ No newline at end of file + +class LoadTesterMode: + FORK_TO_NEW = 'fork' + + +# option: 'stdout', 'log', 'tensorboard', 'csv' +class LogDataType: + TB = 'tensorboard' + CSV = 'csv' + TXT = 'log' + STDOUT = 'stdout' diff --git a/RLA/easy_log/exp_loader.py b/RLA/easy_log/exp_loader.py index 043e22f..b9a82b7 100644 --- a/RLA/easy_log/exp_loader.py +++ b/RLA/easy_log/exp_loader.py @@ -72,7 +72,8 @@ def import_hyper_parameters(self, hp_to_overwrite: Optional[list] = None, sync_t else: return argparse.Namespace(**exp_manager.hyper_param) - def load_from_record_date(self, var_prefix: Optional[str] = None, variable_list: Optional[list]=None, verbose=True): + def load_from_record_date(self, var_prefix: Optional[str] = None, variable_list: Optional[list]=None, verbose=True, + ckp_index: Optional[int]=None): """ :param var_prefix: the prefix of namescope (for tf) to load. Set to '' to load all of the parameters. @@ -81,9 +82,8 @@ def load_from_record_date(self, var_prefix: Optional[str] = None, variable_list: """ if self.is_valid_config: loaded_tester = Tester.load_tester(self.load_date, self.task_name, self.data_root) - if verbose: - print("attrs of the loaded tester") - pprint(loaded_tester.__dict__) + print("attrs of the loaded tester") + pprint(loaded_tester.__dict__) # load checkpoint load_res = {} if var_prefix is not None: diff --git a/RLA/easy_log/log_tools.py b/RLA/easy_log/log_tools.py index 1f0df8e..87654ef 100644 --- a/RLA/easy_log/log_tools.py +++ b/RLA/easy_log/log_tools.py @@ -12,6 +12,10 @@ import yaml import pandas as pd import csv +import dill + +import json +from RLA.easy_log.tester import Tester class Filter(object): ALL = 'all' @@ -27,7 +31,14 @@ def __init__(self, optional_log_type=None): self.log_types = default_log_types.copy() if optional_log_type is not None: self.log_types.extend(optional_log_type) - + + def is_valid_index(self, regex): + if re.search(r'\d{4}/\d{2}/\d{2}/\d{2}-\d{2}-\d{2}-\d{6}', regex): + target_reg = re.search(r'\d{4}/\d{2}/\d{2}/\d{2}-\d{2}-\d{2}-\d{6}', regex).group(0) + else: + target_reg = None + return target_reg + def _find_small_timestep_log(self, proj_root, task_table_name, regex, timstep_upper_bound=np.inf, timestep_lower_bound=0): small_timestep_regs = [] root_dir_regex = osp.join(proj_root, LOG, task_table_name, regex) @@ -35,10 +46,7 @@ def _find_small_timestep_log(self, proj_root, task_table_name, regex, timstep_up print("searching dirs", root_dir) if os.path.exists(root_dir): for file_list in os.walk(root_dir): - if re.search(r'\d{4}/\d{2}/\d{2}/\d{2}-\d{2}-\d{2}-\d{6}', file_list[0]): - target_reg = re.search(r'\d{4}/\d{2}/\d{2}/\d{2}-\d{2}-\d{2}-\d{6}', file_list[0]).group(0) - else: - target_reg = None + target_reg = self.is_valid_index(file_list[0]) if target_reg is not None: if LOG in root_dir_regex: try: @@ -236,6 +244,7 @@ def archive_log(self, skip_ask=False): print("do archive ...") self._archive_log(show=False) + class ViewLogTool(BasicLogTool): def __init__(self, proj_root, task_table_name, regex, *args, **kwargs): self.proj_root = proj_root @@ -248,10 +257,7 @@ def _view_log(self, regex): for root_dir in glob.glob(root_dir_regex): if os.path.exists(root_dir): for file_list in os.walk(root_dir): - if re.search(r'\d{4}/\d{2}/\d{2}/\d{2}-\d{2}-\d{2}-\d{6}', file_list[0]): - target_reg = re.search(r'\d{4}/\d{2}/\d{2}/\d{2}-\d{2}-\d{2}-\d{6}', file_list[0]).group(0) - else: - target_reg = None + target_reg = self.is_valid_index(file_list[0]) if target_reg is not None: backup_file = file_list[0] + '/backup.txt' if file_list[1] == ['tb'] or os.path.exists(backup_file): # in root of logdir @@ -268,3 +274,45 @@ def view_log(self, skip_ask=False): s = input("press y to view \n ") if s == 'y': self._view_log(regex=res[0] + '*') + + +class PrettyPlotterTool(BasicLogTool): + def __init__(self, proj_root, task_table_name, regex, *args, **kwargs): + self.proj_root = proj_root + self.task_table_name = task_table_name + self.regex = regex + super(PrettyPlotterTool, self).__init__(*args, **kwargs) + + def json_dump(self, location): + target_index = self.is_valid_index(location) + if target_index is not None: + + json_location = None + try: + exp_manager = dill.load(open(location, 'rb')) + assert isinstance(exp_manager, Tester) + formatted_log_name = exp_manager.log_name_formatter(exp_manager.get_task_table_name(), + exp_manager.record_date) + params = exp_manager.hyper_param + params['formatted_log_name'] = formatted_log_name + + json_location = exp_manager.log_name_formatter( + osp.join(self.proj_root, LOG, exp_manager.get_task_table_name()), exp_manager.record_date) + '/' + json.dump(params, open(osp.join(json_location, 'parameter.json'), 'w')) + print("gen:", osp.join(json_location, 'parameter.json')) + except FileNotFoundError as e: + print("log file cannot found", json_location) + except EOFError as e: + print("log file broken", json_location) + + def gen_json(self, regex): + root_dir_regex = osp.join(self.proj_root, ARCHIVE_TESTER, self.task_table_name, regex) + for root_dir in glob.glob(root_dir_regex): + if os.path.exists(root_dir): + if osp.isdir(root_dir): + for file_list in os.walk(root_dir): + for file in file_list[2]: + location = osp.join(file_list[0], file) + self.json_dump(location) + else: + self.json_dump(root_dir) diff --git a/RLA/easy_log/logger.py b/RLA/easy_log/logger.py index 7f6ed4d..8bcccb2 100644 --- a/RLA/easy_log/logger.py +++ b/RLA/easy_log/logger.py @@ -252,11 +252,21 @@ def __init__(self, dir, framework): path = osp.join(osp.abspath(dir), prefix) if self.framework == FRAMEWORK.tensorflow: import tensorflow as tf - self.tb_writer = tf.summary.FileWriter(path) + from tensorflow.python import pywrap_tensorflow + self.tbx_writer = None from tensorflow.python import pywrap_tensorflow from tensorflow.core.util import event_pb2 from tensorflow.python.util import compat + try: + self.tb_writer = tf.summary.FileWriter(path) + self.tf = tf + except AttributeError as e: + # tf.compat.v1.disable_eager_execution() + # from tensorflow.python.client import _pywrap_events_writer + self.tb_writer = tf.summary.create_file_writer(path) # tf.compat.v1.summary.FileWriter(path) + # tf.compat.v1.disable_eager_execution() + # tf = tf.compat.v1 self.tf = tf self.event_pb2 = event_pb2 self.pywrap_tensorflow = pywrap_tensorflow @@ -284,10 +294,16 @@ def writer(self): def add_hyper_params_to_tb(self, hyper_param, metric_dict=None): if self.framework == FRAMEWORK.tensorflow: import tensorflow as tf - with tf.Session(graph=tf.Graph()) as sess: - hyperparameters = [tf.convert_to_tensor([k, str(v)]) for k, v in hyper_param.items()] - summary = sess.run(tf.summary.text('hyperparameters', tf.stack(hyperparameters))) - self.tb_writer.add_summary(summary, self.step) + try: + with tf.Session(graph=tf.Graph()) as sess: + hyperparameters = [tf.convert_to_tensor([k, str(v)]) for k, v in hyper_param.items()] + summary = sess.run(tf.summary.text('hyperparameters', tf.stack(hyperparameters))) + self.tb_writer.add_summary(summary, self.step) + except AttributeError as e: + tf.compat.v1.enable_eager_execution() + with self.tb_writer.as_default(): + hyperparameters = [tf.convert_to_tensor([k, str(v)]) for k, v in hyper_param.items()] + tf.summary.text('hyperparameters', tf.stack(hyperparameters), step=self.step) elif self.framework == FRAMEWORK.torch: import pprint if metric_dict is None: @@ -300,14 +316,20 @@ def add_hyper_params_to_tb(self, hyper_param, metric_dict=None): def writekvs(self, kvs): if self.framework == FRAMEWORK.tensorflow: - def summary_val(k, v): - kwargs = {'tag': k, 'simple_value': float(v)} - return self.tf.Summary.Value(**kwargs) - summary = self.tf.Summary(value=[summary_val(k, v) for k, v in kvs.items()]) - event = self.event_pb2.Event(wall_time=time.time(), summary=summary) - event.step = self.step # is there any reason why you'd want to specify the step? - self.writer.add_event(event) - self.writer.flush() + try: + def summary_val(k, v): + kwargs = {'tag': k, 'simple_value': float(v)} + return self.tf.Summary.Value(**kwargs) + summary = self.tf.Summary(value=[summary_val(k, v) for k, v in kvs.items()]) + event = self.event_pb2.Event(wall_time=time.time(), summary=summary) + event.step = self.step # is there any reason why you'd want to specify the step? + self.writer.add_event(event) + self.writer.flush() + except AttributeError as e: + self.tf.compat.v1.enable_eager_execution() + with self.tb_writer.as_default(): + for k, v in kvs.items(): + self.tf.summary.scalar(k, v, step=self.step) elif self.framework == FRAMEWORK.torch: def summary_val(k, v): kwargs = {'tag': k, 'scalar_value': float(v), 'global_step': self.step} @@ -395,7 +417,7 @@ def ma_record_tabular(key, val, record_len, ignore_nan=False, exclude:Optional[U if len(ma_dict[key]) == record_len: record_tabular(key, np.mean(ma_dict[key]), exclude) -def logkv(key, val, exclude:Optional[Union[str, Tuple[str, ...]]]=None): +def logkv(key, val, exclude:Optional[Union[str, Tuple[str, ...]]]=None, freq:Optional[int]=None): """ Log a value of some diagnostic Call this once for each diagnostic quantity, each iteration @@ -404,7 +426,8 @@ def logkv(key, val, exclude:Optional[Union[str, Tuple[str, ...]]]=None): :param key: (Any) save to log this key :param val: (Any) save to log this value """ - get_current().logkv(key, val, exclude) + if freq is None or timestep() % freq == 0: + get_current().logkv(key, val, exclude) def log_from_tf_summary(summary): diff --git a/RLA/easy_log/tester.py b/RLA/easy_log/tester.py index 46233bb..d98e69d 100644 --- a/RLA/easy_log/tester.py +++ b/RLA/easy_log/tester.py @@ -15,7 +15,6 @@ import os.path as osp import pprint -import numpy as np import tensorboardX from RLA.easy_log.time_step import time_step_holder @@ -162,6 +161,15 @@ def configure(self, task_table_name: str, rla_config: Union[str, dict], data_roo for k, v in self.private_config.items(): logger.info("k: {}, v: {}".format(k, v)) + def get_task_table_name(self): + task_table_name = getattr(self, 'task_table_name', None) + if task_table_name is None: + task_table_name = getattr(self, 'task_name', None) + print("[WARN] you are using an old-version RLA. " + "Some attributes' name have been changed (task_name->task_table_name).") + if task_table_name is None: + raise RuntimeError("invalid ExpManager: task_table_name cannot be found", ) + return task_table_name def set_hyper_param(self, **argkw): """ @@ -218,13 +226,7 @@ def update_log_files_location(self, root:str): """ self.data_root = root - task_table_name = getattr(self, 'task_table_name', None) - if task_table_name is None: - task_table_name = getattr(self, 'task_name', None) - print("[WARN] you are using an old-version RLA. " - "Some attributes' name have been changed (task_name->task_table_name).") - if task_table_name is None: - raise RuntimeError("invalid ExpManager: task_table_name cannot be found", ) + task_table_name = self.get_task_table_name() code_dir, _ = self.__create_file_directory(osp.join(self.data_root, CODE, task_table_name), '', is_file=False) log_dir, _ = self.__create_file_directory(osp.join(self.data_root, LOG, task_table_name), '', is_file=False) self.pkl_dir, self.pkl_file = self.__create_file_directory(osp.join(self.data_root, ARCHIVE_TESTER, task_table_name), '.pkl') @@ -431,15 +433,9 @@ def log_file_finder(cls, record_date, task_table_name='train', file_root='../che raise NotImplementedError for search_item in search_list: if search_item.startswith(str(record_date.strftime("%H-%M-%S-%f"))): - try: - split_dir = search_item.split('_') - assert len(split_dir) >= 2 - info = " ".join(split_dir[2:]) - except AssertionError as e: - split_dir = search_item.split(' ') - # self.__ipaddr = split_dir[1] - info = "_".join(split_dir[2:]) - print("[WARN] We find an old-version experiment data.") + split_dir = search_item.split(' ') + # self.__ipaddr = split_dir[1] + info = " ".join(split_dir[2:]) logger.info("load data: \n ts {}, \n ip {}, \n info {}".format(split_dir[0], split_dir[1], info)) file_found = search_item break @@ -625,6 +621,7 @@ def load_checkpoint(self, ckp_index=None): all_ckps = os.listdir(self.checkpoint_dir) ites = [] for ckps in all_ckps: + print("ckps", ckps) ites.append(int(ckps.split('checkpoint-')[1].split('.pt')[0])) idx = np.argsort(ites) all_ckps = np.array(all_ckps)[idx] @@ -632,7 +629,6 @@ def load_checkpoint(self, ckp_index=None): pprint.pprint(all_ckps) if ckp_index is None: ckp_index = all_ckps[-1].split('checkpoint-')[1].split('.pt')[0] - print("loaded checkpoints:", "checkpoint-{}.pt".format(ckp_index)) return ckp_index, torch.load(self.checkpoint_dir + "checkpoint-{}.pt".format(ckp_index)) def auto_parse_info(self): diff --git a/RLA/easy_log/time_used_recorder.py b/RLA/easy_log/time_used_recorder.py new file mode 100644 index 0000000..21771da --- /dev/null +++ b/RLA/easy_log/time_used_recorder.py @@ -0,0 +1,38 @@ +# Created by xionghuichen at 2022/7/29 +# Email: chenxh@lamda.nju.edu.cn +from RLA.easy_log import logger +import time + + +rc_start_time = {} + + +def time_record(name): + """ + record the consumed time of your code snippet. call this function to start a recorder. + "name" is identifier to distinguish different recorder and record different snippets at the same time. + call time_record_end to end a recorder. + :param name: identifier of your code snippet. + :type name: str + :return: + :rtype: + """ + assert name not in rc_start_time + rc_start_time[name] = time.time() + + +def time_record_end(name): + """ + record the consumed time of your code snippet. call this function to start a recorder. + "name" is identifier to distinguish different recorder and record different snippets at the same time. + call time_record_end to end a recorder. + :param name: identifier of your code snippet. + :type name: str + :return: + :rtype: + """ + end_time = time.time() + start_time = rc_start_time[name] + logger.record_tabular("time_used/{}".format(name), end_time - start_time) + logger.info("[test] func {0} time used {1:.2f}".format(name, end_time - start_time)) + del rc_start_time[name] \ No newline at end of file diff --git a/RLA/easy_plot/plot_func.py b/RLA/easy_plot/plot_func.py index 79c6c22..5fb6da1 100644 --- a/RLA/easy_plot/plot_func.py +++ b/RLA/easy_plot/plot_func.py @@ -6,6 +6,7 @@ from RLA.easy_log import logger from RLA.easy_plot import plot_util from RLA.const import DEFAULT_X_NAME +from RLA.easy_log.const import LOG, ARCHIVE_TESTER def default_key_to_legend(parse_list, y_name): @@ -72,7 +73,7 @@ def picture_split(taskpath, single_name=None, param_keys=None, y_names=None, def csv_to_xy(r, x_name, y_name, scale_dict, x_bound=None, x_start=None, y_bound=None, remove_outlier=False): - df = r.progress.copy().reset_index() # ['progress'] + df = r.progress.copy().reset_index() if df is None: logger.warn("empty df!") return [], [] @@ -117,6 +118,7 @@ def plot_res_func(prefix_dir:str, regs, param_keys, remove_outlier=False, xlabel=None, key_to_legend_fn=None, verbose=True, *args, **kwargs): + logger.warn("the function is deprecated. please check the plot_func_v2 as the new implementation") dirs = [] if key_to_legend_fn is None: key_to_legend_fn = default_key_to_legend @@ -132,7 +134,6 @@ def plot_res_func(prefix_dir:str, regs, param_keys, log_found = glob.glob(osp.join(prefix_dir, regex_str)) dirs.extend(log_found) - # print("regex str :{}. log found".format(regex_str)) reg_group[regex_str] = [] for log in log_found: @@ -151,9 +152,6 @@ def plot_res_func(prefix_dir:str, regs, param_keys, # if misc_scale_index is None: # misc_scale_index = [] for i in range(len(value_keys)): - # if i in misc_scale_index: - # scale_dict[value_keys[i]] = misc_scale[misc_scale_index.index(i)] - # else: final_scale_dict[value_keys[i]] = lambda x: x if scale_dict is not None: final_scale_dict.update(scale_dict) @@ -170,7 +168,7 @@ def plot_res_func(prefix_dir:str, regs, param_keys, group_fn = lambda r: picture_split(taskpath=r, param_keys=param_keys, y_names=y_names, key_to_legend_fn=key_to_legend_fn) - _, _, lgd, texts, g2lf = plot_util.plot_results(results, xy_fn= lambda r, y_names: csv_to_xy(r, DEFAULT_X_NAME, y_names, + _, _, lgd, texts, g2lf, score_results = plot_util.plot_results(results, xy_fn= lambda r, y_names: csv_to_xy(r, DEFAULT_X_NAME, y_names, final_scale_dict, x_start=x_start, y_bound=y_bound, remove_outlier=remove_outlier), # xy_fn=lambda r: ts2xy(r['monitor'], 'info/TimestepsSoFar', 'diff/driver_1_2_std'), @@ -194,7 +192,8 @@ def plot_res_func(prefix_dir:str, regs, param_keys, plt.savefig(file_name, bbox_extra_artists=tuple(texts), bbox_inches='tight') print("saved location: {}".format(file_name)) plt.show() - return g2lf + return g2lf, score_results + def scale_index_to_dict(measure, scale_index, scale): scale_dict = {} diff --git a/RLA/easy_plot/plot_func_v2.py b/RLA/easy_plot/plot_func_v2.py new file mode 100644 index 0000000..1acb282 --- /dev/null +++ b/RLA/easy_plot/plot_func_v2.py @@ -0,0 +1,182 @@ +# Created by xionghuichen at 2022/8/10 +# Email: chenxh@lamda.nju.edu.cn +import glob +import os.path as osp +import os +import dill +import copy +import numpy as np +from typing import Dict, List, Tuple, Type, Union, Optional, Callable +import matplotlib.pyplot as plt + +from RLA import logger +from RLA.const import DEFAULT_X_NAME +from RLA.query_tool import experiment_data_query +from RLA.easy_plot import plot_util +from RLA.easy_log.const import LOG, ARCHIVE_TESTER, OTHER_RESULTS + + + +def default_key_to_legend(parse_list, y_name): + task_split_key = '.'.join(parse_list) + return task_split_key + ' eval:' + y_name + + +def plot_func(data_root:str, task_table_name:str, regs:list, split_keys:list, metrics:list, + use_buf=False, verbose=True, + xlim: Optional[tuple] = None, + xlabel: Optional[str] = DEFAULT_X_NAME, ylabel: Optional[str] = None, + scale_dict: Optional[dict] = None, replace_legend_keys: Optional[list] = None, + key_to_legend_fn: Optional[Callable] = default_key_to_legend, + save_name: Optional[str] = None, *args, **kwargs): + """ + A high-level matplotlib plotter. + The function is to load your experiments and plot curves. + You can group several experiments into a single figure through this function. + It is completed by loading experiments satisfying [data_root, task_table_name, regs] pattern, + grouping by "split_keys" or by the "regs" terms (see replace_legend_keys), and plotting the customized "metrics". + + The function support several configure to customize the figure, including xlim, xlabel, ylabel, key_to_legend_fn, etc. + The function also supports several configure to post-process your log data, including resample, smooth_step, scale_dict, key_to_legend_fn, etc. + The function also supports several configure to beautify the figure, see the parameters of plot_util.plot_results. + + :param data_root: + :type data_root: + :param task_table_name: + :type task_table_name: + :param regs: + :type regs: + :param split_keys: + :type split_keys: + :param metrics: + :type metrics: + :param use_buf: use the preloaded csv data instead of loading from scratch + :type use_buf: bool + :param xlim: set the x limits of the x axes. + :type xlim: Optional[tuple] + :param xlabel: set the label of the y axes. + :type xlabel: Optional[str] + :param ylabel: set the label of the y axes. + :type ylabel: Optional[str] + :param scale_dict: a function dict, to map the value of the metrics through customize functions. + e.g.,set metrics = ['return'], scale_dict = {'return': lambda x: np.log(x)}, then we will plot a log-scale return. + :type scale_dict: Optional[dict] + :param args: set the label of the y axes. + + :return: + :rtype: + """ + results = [] + reg_group = {} + for reg in regs: + reg_group[reg] = [] + print("searching", reg) + tester_dict = experiment_data_query(data_root, task_table_name, reg, ARCHIVE_TESTER) + log_dict = experiment_data_query(data_root, task_table_name, reg, LOG) + counter = 0 + for k, v in log_dict.items(): + result = plot_util.load_results(v.dirname, names=metrics + [DEFAULT_X_NAME], + x_bound=[DEFAULT_X_NAME, xlim], use_buf=use_buf) + if len(result) == 0: + continue + assert len(result) == 1 + result = result[0] + if verbose: + print("find log", v.dirname) + counter += 1 + result.hyper_param = tester_dict[k].exp_manager.hyper_param + results.append(result) + reg_group[reg].append(result) + print("find log number", counter) + final_scale_dict = {} + for m in metrics: + final_scale_dict[m] = lambda x: x + if scale_dict is not None: + final_scale_dict.update(scale_dict) + + y_names = metrics # [] + if ylabel is None: + ylabel = metrics + + if replace_legend_keys is not None: + assert len(replace_legend_keys) == len(regs) and len(metrics) == 1, \ + "In manual legend-key mode, the number of keys should be one-to-one matched with regs" + # if len(replace_legend_keys) == len(regs): + group_fn = lambda r: split_by_reg(taskpath=r, reg_group=reg_group, y_names=y_names) + else: + group_fn = lambda r: picture_split(taskpath=r, split_keys=split_keys, y_names=y_names, + key_to_legend_fn=key_to_legend_fn) + _, _, lgd, texts, g2lf, score_results = \ + plot_util.plot_results(results, xy_fn= lambda r, y_names: csv_to_xy(r, DEFAULT_X_NAME, y_names, final_scale_dict), + group_fn=group_fn, average_group=True, ylabel=ylabel, xlabel=xlabel, replace_legend_keys=replace_legend_keys, *args, **kwargs) + print("--- complete process ---") + if save_name is not None: + import os + file_name = osp.join(data_root, OTHER_RESULTS, 'easy_plot', save_name) + os.makedirs(os.path.dirname(file_name), exist_ok=True) + + if lgd is not None: + plt.savefig(file_name, bbox_extra_artists=tuple([lgd] + texts), bbox_inches='tight') + else: + plt.savefig(file_name, bbox_extra_artists=tuple(texts), bbox_inches='tight') + print("saved location: {}".format(file_name)) + plt.show() + return g2lf, score_results + + +def split_by_reg(taskpath, reg_group, y_names): + task_split_key = "None" + for i , reg_k in enumerate(reg_group.keys()): + if taskpath.dirname in reg_group[reg_k]: + assert task_split_key == "None", "one experiment should belong to only one reg_group" + task_split_key = str(i) + assert len(y_names) == 1 + return task_split_key, y_names + + +def split_by_task(taskpath, split_keys, y_names, key_to_legend_fn): + pair_delimiter = '&' + kv_delimiter = '=' + parse_list = [] + for split_key in split_keys: + if split_key in taskpath.hyper_param: + parse_list.append(split_key + '=' + str(taskpath.hyper_param[split_key])) + else: + parse_list.append(split_key + '=NF') + param_keys = [] + for y_name in y_names: + param_keys.append(key_to_legend_fn(parse_list, y_name)) + return param_keys, y_names + + +def picture_split(taskpath, single_name=None, split_keys=None, y_names=None, + key_to_legend_fn=None): + if single_name is not None: + return single_name, None + else: + return split_by_task(taskpath, split_keys, y_names, key_to_legend_fn=key_to_legend_fn) + + +def csv_to_xy(r, x_name, y_name, scale_dict, x_bound=None, x_start=None): + + df = r.progress.copy().reset_index() # ['progress'] + if df is None: + logger.warn("empty df!") + return [], [] + if y_name not in list(df.columns): + return None + df.drop(df[np.isnan(df[x_name])].index, inplace=True) + df.drop(df[np.isnan(df[y_name])].index, inplace=True) + # pd = pd.dropna(axis=0, how='any') + x = df[x_name] + y = df[y_name] + if x_bound is None: + x_bound = x.max() + if x_start is None: + x_start = x.min() + filter_index = (x <= x_bound) & (x >= x_start) + x = x[filter_index] + y = y[filter_index] + + y = scale_dict[y_name](y) + return x, y diff --git a/RLA/easy_plot/plot_util.py b/RLA/easy_plot/plot_util.py index 573ce44..42779aa 100644 --- a/RLA/easy_plot/plot_util.py +++ b/RLA/easy_plot/plot_util.py @@ -11,6 +11,7 @@ sns.set_style('darkgrid', {'legend.frameon':True}) + def smooth(y, radius, mode='two_sided', valid_only=False): ''' Smooth signal y, where radius is determines the size of the window @@ -151,8 +152,16 @@ def symmetric_ema(xolds, yolds, low=None, high=None, n=512, decay_steps=1., low_ ys[count_ys < low_counts_threshold] = np.nan return xs, ys, count_ys -Result = namedtuple('Result', 'monitor progress dirname metadata') -Result.__new__.__defaults__ = (None,) * len(Result._fields) +# Result = namedtuple('Result', 'monitor progress dirname metadata hyper_param') +# Result.__new__.__defaults__ = (None,) * len(Result._fields) + +class Result: + def __init__(self, monitor=None, progress=None, dirname=None, metadata=None, hyper_param=None): + self.monitor = monitor + self.progress = progress + self.dirname = dirname + self.metadata = metadata + self.hyper_param = hyper_param def word_replace(string): return string.replace('/', '--').replace("\'", "||") @@ -217,24 +226,32 @@ def load_results(root_dir_or_dirs, names, x_bound, enable_progress=True, use_buf reader = pd.read_csv(progcsv, chunksize=100000, quoting=csv.QUOTE_NONE, encoding='utf-8', index_col=False, comment='#') raw_df = pd.DataFrame() + for chunk in reader: slim_chunk = chunk - if set(names).issubset(slim_chunk.columns): - slim_chunk = slim_chunk[names] - if x_bound[1] is not None: + # if set(names).issubset(slim_chunk.columns): + existed_names = [] + for name in names: + if name not in slim_chunk.columns: + print("[error keys]: {}".format(name)) + else: + existed_names.append(name) + if len(existed_names) == 0: + raise RuntimeError("all value_keys cannot be found.") + slim_chunk = slim_chunk[existed_names] + if x_bound[1] is not None: + if isinstance(x_bound[1], tuple): + slim_chunk = slim_chunk[np.logical_and(slim_chunk[x_bound[0]] < x_bound[1][1], + slim_chunk[x_bound[0]] > x_bound[1][0])] + else: slim_chunk = slim_chunk[slim_chunk[x_bound[0]] < x_bound[1]] - raw_df = pd.concat([raw_df, slim_chunk], ignore_index=True) - else: - raise RuntimeError + raw_df = pd.concat([raw_df, slim_chunk], ignore_index=True) import csv raw_df.to_csv(buf_csv, index=False) result['progress'] = raw_df except pandas.errors.EmptyDataError: print('skipping progress file in ', dirname, 'empty data') except Exception as e: - for name in names: - if name not in slim_chunk.columns: - print("[error keys]: {}".format(name)) print("other read error :", e) else: @@ -339,6 +356,7 @@ def plot_results( See docstrings for decay_steps in symmetric_ema or one_sided_ema functions. ''' + score_results = {} if vary_len_plot: assert resample <= 0, "plot varied length averaged lines only allowed in unresample mode." if colors is None: @@ -395,10 +413,7 @@ def plot_results( idx_row = isplit // ncols idx_col = isplit % ncols ax = axarr[idx_row][idx_col] - # 单张图片可能有多个数据源 for result in sresults: - # 一个数据源目前只能画一条线,我把这里变成多个group应该就可以了 - # 并且多个实验只要group名字相同,就应该使用相同的group result_groups, y_names = group_fn(result) for group, y_name in zip(result_groups, y_names): g2c[group] += 1 @@ -420,7 +435,6 @@ def plot_results( if resample: x, y, counts = symmetric_ema(x, y, x[0], x[-1], resample, decay_steps=smooth_step) l, = ax.plot(x, y, color=colors[groups.index(group) % len(colors)]) - # l 应该是对应线的结果? g2l[group] = l if average_group: @@ -508,14 +522,17 @@ def allequal(qs): res = g2lf[original_legend_keys[index] + '-se'] res[0].update(props={"color": colors[index % len(colors)]}) print("{}-err : ({:.2f} \pm {:.2f})".format(legend_keys[index], res[1][-1], res[2][-1])) + score_results[legend_keys[index]+'-err'] = [res[1][-1], res[2][-1]] if shaded_std: res = g2lf[original_legend_keys[index] + '-ss'] res[0].update(props={"color": colors[index % len(colors)]}) print("{}-std :({:.2f} \pm {:.2f})".format(legend_keys[index], res[1][-1], res[2][-1])) + score_results[legend_keys[index]+'-std'] = [res[1][-1], res[2][-1]] if shaded_range: res = g2lf[original_legend_keys[index] + '-sr'] res[0].update(props={"color": colors[index % len(colors)]}) print("{}-range : ({:.2f}, {:.2f})".format(legend_keys[index], res[1][-1], res[2][-1])) + score_results[legend_keys[index]+'-range'] = [res[1][-1], res[2][-1]] if bound_line is not None: for bl in bound_line: @@ -569,7 +586,7 @@ def allequal(qs): plt.title(title, fontsize=18) else: plt.gcf().subplots_adjust(bottom=0.12, left=0.12) - return f, axarr, lgd, texts, g2lf + return f, axarr, lgd, texts, g2lf, score_results def regression_analysis(df): xcols = list(df.columns.copy()) diff --git a/RLA/query_tool.py b/RLA/query_tool.py new file mode 100644 index 0000000..6f1a89f --- /dev/null +++ b/RLA/query_tool.py @@ -0,0 +1,85 @@ +# Created by xionghuichen at 2022/8/10 +# Email: chenxh@lamda.nju.edu.cn + +import glob +import os.path as osp +import os +import dill +import re +import copy +from RLA.easy_log.const import LOG, ARCHIVE_TESTER, LogDataType +from RLA.easy_log.tester import Tester + + +class BasicQueryResult(object): + def __init__(self, dirname): + self.dirname = dirname + +class ArchiveQueryResult(BasicQueryResult): + def __init__(self, exp_manager, dirname): + super(ArchiveQueryResult, self).__init__(dirname) + assert isinstance(exp_manager, Tester) + self.exp_manager = exp_manager + +class LogQueryResult(BasicQueryResult): + def __init__(self, dirname): + super(LogQueryResult, self).__init__(dirname) + +def extract_valid_index(regex): + if re.search(r'\d{4}/\d{2}/\d{2}/\d{2}-\d{2}-\d{2}-\d{6}', regex): + target_reg = re.search(r'\d{4}/\d{2}/\d{2}/\d{2}-\d{2}-\d{2}-\d{6}', regex).group(0) + else: + target_reg = None + return target_reg + +def experiment_data_query(data_root, task_table_name, reg, data_type): + if data_type == LOG: + return _log_data_query(data_root, task_table_name, reg) + elif data_type == ARCHIVE_TESTER: + return _archive_tester_query(data_root, task_table_name, reg) + else: + raise NotImplementedError + + +def _archive_tester_query(data_root, task_table_name, reg): + experiment_data_dict = {} + root_dir_regex = osp.join(data_root, ARCHIVE_TESTER, task_table_name, reg) + for root_dir in glob.glob(root_dir_regex): + if os.path.exists(root_dir): + if osp.isdir(root_dir): + for file_list in os.walk(root_dir): + for file in file_list[2]: + location = osp.join(file_list[0], file) + exp_manager = dill.load(open(location, 'rb')) + dirname = location.split('.pkl')[0] + key = extract_valid_index(location) + experiment_data_dict[key] = ArchiveQueryResult(dirname=dirname, exp_manager=exp_manager) + else: + location = root_dir + key = extract_valid_index(location) + exp_manager = dill.load(open(location, 'rb')) + dirname = location.split('.pkl')[0] + experiment_data_dict[key] = ArchiveQueryResult(dirname=dirname, exp_manager=exp_manager) + return experiment_data_dict + + +def _log_data_query(data_root, task_table_name, reg): + experiment_data_dict = {} + root_dir_regex = osp.join(data_root, LOG, task_table_name, reg) + for root_dir in glob.glob(root_dir_regex): + if os.path.exists(root_dir): + if osp.isdir(root_dir): + for file_list in os.walk(root_dir): + for file in file_list[2]: + if 'progress.csv' in file: + location = osp.join(file_list[0], file) + key = extract_valid_index(location) + dirname = osp.dirname(location) + experiment_data_dict[key] = LogQueryResult(dirname=dirname) + break + else: + location = root_dir + dirname = osp.dirname(location) + experiment_data_dict[key] = LogQueryResult(dirname=dirname) + return experiment_data_dict + diff --git a/RLA/utils/utils.py b/RLA/utils/utils.py index b6a0476..9138586 100644 --- a/RLA/utils/utils.py +++ b/RLA/utils/utils.py @@ -31,4 +31,7 @@ def load_yaml(path): private_config = yaml.load(fs) except TypeError: private_config = yaml.safe_load(fs) - return private_config \ No newline at end of file + return private_config + +def optional_set(new_val, old_val): + return new_val if new_val is not None else old_val \ No newline at end of file diff --git a/example/plot_res.ipynb b/example/plot_res.ipynb index 6653046..ce2a009 100644 --- a/example/plot_res.ipynb +++ b/example/plot_res.ipynb @@ -1,8 +1,63 @@ { "cells": [ + { + "cell_type": "markdown", + "id": "72bf0fba", + "metadata": {}, + "source": [ + "# V2" + ] + }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 1, + "id": "cb6f1787", + "metadata": {}, + "outputs": [], + "source": [ + "from RLA.easy_plot.plot_func_v2 import plot_func" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "984c6140", + "metadata": {}, + "outputs": [ + { + "ename": "AssertionError", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001B[0;31m---------------------------------------------------------------------------\u001B[0m", + "\u001B[0;31mAssertionError\u001B[0m Traceback (most recent call last)", + "\u001B[0;32m/var/folders/tv/tvd4k0qs49q3fcm30tq61mx80000gp/T/ipykernel_4915/3456245110.py\u001B[0m in \u001B[0;36m\u001B[0;34m\u001B[0m\n\u001B[1;32m 4\u001B[0m \u001B[0;34m'2022/03/01/21-[12]*'\u001B[0m\u001B[0;34m\u001B[0m\u001B[0;34m\u001B[0m\u001B[0m\n\u001B[1;32m 5\u001B[0m ]\n\u001B[0;32m----> 6\u001B[0;31m \u001B[0m_\u001B[0m \u001B[0;34m=\u001B[0m \u001B[0mplot_func\u001B[0m\u001B[0;34m(\u001B[0m\u001B[0mdata_root\u001B[0m\u001B[0;34m=\u001B[0m\u001B[0mdata_root\u001B[0m\u001B[0;34m,\u001B[0m \u001B[0mtask_table_name\u001B[0m\u001B[0;34m=\u001B[0m\u001B[0mtask\u001B[0m\u001B[0;34m,\u001B[0m \u001B[0mregs\u001B[0m\u001B[0;34m=\u001B[0m\u001B[0mregs\u001B[0m \u001B[0;34m,\u001B[0m \u001B[0msplit_keys\u001B[0m\u001B[0;34m=\u001B[0m\u001B[0;34m[\u001B[0m\u001B[0;34m'learning_rate'\u001B[0m\u001B[0;34m]\u001B[0m\u001B[0;34m,\u001B[0m \u001B[0mmetrics\u001B[0m\u001B[0;34m=\u001B[0m\u001B[0;34m[\u001B[0m\u001B[0;34m'perf/mse'\u001B[0m\u001B[0;34m]\u001B[0m\u001B[0;34m)\u001B[0m\u001B[0;34m\u001B[0m\u001B[0;34m\u001B[0m\u001B[0m\n\u001B[0m", + "\u001B[0;32m~/projects/RLAssistant/RLA/easy_plot/plot_func_v2.py\u001B[0m in \u001B[0;36mplot_func\u001B[0;34m(data_root, task_table_name, regs, split_keys, metrics, use_buf, xlim, ylim, xlabel, ylabel, scale_dict, replace_legend_keys, key_to_legend_fn, save_name, *args, **kwargs)\u001B[0m\n\u001B[1;32m 100\u001B[0m \u001B[0m_\u001B[0m\u001B[0;34m,\u001B[0m \u001B[0m_\u001B[0m\u001B[0;34m,\u001B[0m \u001B[0mlgd\u001B[0m\u001B[0;34m,\u001B[0m \u001B[0mtexts\u001B[0m\u001B[0;34m,\u001B[0m \u001B[0mg2lf\u001B[0m\u001B[0;34m,\u001B[0m \u001B[0mscore_results\u001B[0m \u001B[0;34m=\u001B[0m\u001B[0;31m \u001B[0m\u001B[0;31m\\\u001B[0m\u001B[0;34m\u001B[0m\u001B[0;34m\u001B[0m\u001B[0m\n\u001B[1;32m 101\u001B[0m plot_util.plot_results(results, xy_fn= lambda r, y_names: csv_to_xy(r, DEFAULT_X_NAME, y_names, final_scale_dict),\n\u001B[0;32m--> 102\u001B[0;31m group_fn=group_fn, average_group=True, ylabel=ylabel, xlabel=xlabel, replace_legend_keys=replace_legend_keys, *args, **kwargs)\n\u001B[0m\u001B[1;32m 103\u001B[0m \u001B[0mprint\u001B[0m\u001B[0;34m(\u001B[0m\u001B[0;34m\"--- complete process ---\"\u001B[0m\u001B[0;34m)\u001B[0m\u001B[0;34m\u001B[0m\u001B[0;34m\u001B[0m\u001B[0m\n\u001B[1;32m 104\u001B[0m \u001B[0;32mif\u001B[0m \u001B[0msave_name\u001B[0m \u001B[0;32mis\u001B[0m \u001B[0;32mnot\u001B[0m \u001B[0;32mNone\u001B[0m\u001B[0;34m:\u001B[0m\u001B[0;34m\u001B[0m\u001B[0;34m\u001B[0m\u001B[0m\n", + "\u001B[0;32m~/projects/RLAssistant/RLA/easy_plot/plot_util.py\u001B[0m in \u001B[0;36mplot_results\u001B[0;34m(allresults, xy_fn, split_fn, group_fn, average_group, shaded_std, shaded_err, shaded_range, figsize, legend_outside, resample, vary_len_plot, smooth_step, tiling, xlabel, ylabel, title, replace_legend_keys, replace_legend_sort, pretty, bound_line, colors, log, ylim, xlim, show_number, skip_legend, rescale_idx)\u001B[0m\n\u001B[1;32m 363\u001B[0m \u001B[0msplitkey\u001B[0m \u001B[0;34m=\u001B[0m \u001B[0msplit_fn\u001B[0m\u001B[0;34m(\u001B[0m\u001B[0mresult\u001B[0m\u001B[0;34m)\u001B[0m\u001B[0;34m\u001B[0m\u001B[0;34m\u001B[0m\u001B[0m\n\u001B[1;32m 364\u001B[0m \u001B[0msk2r\u001B[0m\u001B[0;34m[\u001B[0m\u001B[0msplitkey\u001B[0m\u001B[0;34m]\u001B[0m\u001B[0;34m.\u001B[0m\u001B[0mappend\u001B[0m\u001B[0;34m(\u001B[0m\u001B[0mresult\u001B[0m\u001B[0;34m)\u001B[0m\u001B[0;34m\u001B[0m\u001B[0;34m\u001B[0m\u001B[0m\n\u001B[0;32m--> 365\u001B[0;31m \u001B[0;32massert\u001B[0m \u001B[0mlen\u001B[0m\u001B[0;34m(\u001B[0m\u001B[0msk2r\u001B[0m\u001B[0;34m)\u001B[0m \u001B[0;34m>\u001B[0m \u001B[0;36m0\u001B[0m\u001B[0;34m\u001B[0m\u001B[0;34m\u001B[0m\u001B[0m\n\u001B[0m\u001B[1;32m 366\u001B[0m \u001B[0;32massert\u001B[0m \u001B[0misinstance\u001B[0m\u001B[0;34m(\u001B[0m\u001B[0mresample\u001B[0m\u001B[0;34m,\u001B[0m \u001B[0mint\u001B[0m\u001B[0;34m)\u001B[0m\u001B[0;34m,\u001B[0m \u001B[0;34m\"0: don't resample. : that many samples\"\u001B[0m\u001B[0;34m\u001B[0m\u001B[0;34m\u001B[0m\u001B[0m\n\u001B[1;32m 367\u001B[0m \u001B[0;32mif\u001B[0m \u001B[0mtiling\u001B[0m \u001B[0;34m==\u001B[0m \u001B[0;34m'vertical'\u001B[0m \u001B[0;32mor\u001B[0m \u001B[0mtiling\u001B[0m \u001B[0;32mis\u001B[0m \u001B[0;32mNone\u001B[0m\u001B[0;34m:\u001B[0m\u001B[0;34m\u001B[0m\u001B[0;34m\u001B[0m\u001B[0m\n", + "\u001B[0;31mAssertionError\u001B[0m: " + ] + } + ], + "source": [ + "data_root='simplest_code'\n", + "task = 'demo_task'\n", + "regs = [\n", + " '2022/03/01/21-[12]*'\n", + "]\n", + "_ = plot_func(data_root=data_root, task_table_name=task, regs=regs , split_keys=['learning_rate'], metrics=['perf/mse'])" + ] + }, + { + "cell_type": "markdown", + "id": "589e5737", + "metadata": {}, + "source": [ + "# V1 (deprecated)" + ] + }, + { + "cell_type": "code", + "execution_count": 1, "id": "a54ad55b", "metadata": {}, "outputs": [], @@ -20,7 +75,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 2, "id": "be8dbbe0", "metadata": {}, "outputs": [ @@ -216,9 +271,9 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "meituan", "language": "python", - "name": "python3" + "name": "meituan" }, "language_info": { "codemirror_mode": { @@ -235,4 +290,4 @@ }, "nbformat": 4, "nbformat_minor": 5 -} +} \ No newline at end of file diff --git a/rla_scripts/start_pretty_plotter.py b/rla_scripts/start_pretty_plotter.py new file mode 100644 index 0000000..8217d2d --- /dev/null +++ b/rla_scripts/start_pretty_plotter.py @@ -0,0 +1,56 @@ +""" +A script to start a server of the pretty plotter. + +""" +import os + +from RLA.easy_log.log_tools import PrettyPlotterTool, Filter +import argparse +from RLA.rla_argparser import boolean_flag +from config import * + +from smart_logger.front_page.page import start_page_server +import smart_logger.common.plot_config as plot_config +import smart_logger.common.page_config as page_config + + +def argsparser(): + parser = argparse.ArgumentParser("Delete Log") + # reduce setting + parser.add_argument('--task_table_name', type=str, default="") + parser.add_argument('--regex', type=str) + parser.add_argument('--timestep_bound', type=int, default=100) + parser.add_argument('--delete_type', type=str, default=Filter.ALL) + parser.add_argument('--workspace_path', '-wks', type=str, default='~/.pretty_plotter_cache', + help="Path to the workspace, used to saving cache data") + parser.add_argument('--user_name', '-u', type=str, default='user', + help="user name") + parser.add_argument('--password', '-pw', type=str, default='123456', + help="password") + parser.add_argument('--port', '-p', type=int, default=7005, help="Server port") + boolean_flag(parser, 'start_server', default=False) + args = parser.parse_args() + return args + +if __name__=='__main__': + args = argsparser() + filter = Filter() + filter.config(type=args.delete_type, timstep_bound=args.timestep_bound) + tool = PrettyPlotterTool(proj_root=DATA_ROOT, task_table_name=args.task_table_name, regex=args.regex) + tool.gen_json(args.regex) + if args.start_server: + plot_config.DATA_PATH = os.path.abspath(DATA_ROOT) + page_config.WORKSPAPCE = os.path.abspath(os.path.expanduser(args.workspace_path)) + + plot_config.DATA_MERGER = [] + plot_config.PLOTTING_XY = [] + plot_config.PLOT_LOG_PATH = f"{plot_config.DATA_PATH}" + plot_config.PLOT_FIGURE_SAVING_PATH = f"{os.path.join(os.path.dirname(plot_config.DATA_PATH), 'figure')}" + + page_config.WEB_RAM_PATH = f"{page_config.WORKSPAPCE}/WEB_ROM" + page_config.CONFIG_PATH = f"{page_config.WEB_RAM_PATH}/configs" + page_config.FIGURE_PATH = f"{page_config.WEB_RAM_PATH}/figures" + page_config.PORT = args.port + page_config.USER_NAME = args.user_name + page_config.PASSWD = args.password + start_page_server() diff --git a/setup.py b/setup.py index ebafbfe..d1fb8b1 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,7 @@ "seaborn", "pathspec", 'tensorboardX', - 'pysftp' + 'pysftp', + 'typing' ] ) diff --git a/test/test_data_root/archive_tester/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001.pkl b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001.pkl new file mode 100644 index 0000000..064a217 Binary files /dev/null and b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001.pkl differ diff --git a/test/test_data_root/archive_tester/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01.pkl b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01.pkl new file mode 100644 index 0000000..f683216 Binary files /dev/null and b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01.pkl differ diff --git a/test/test_data_root/archive_tester/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888.pkl b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888.pkl new file mode 100644 index 0000000..7afc3ba Binary files /dev/null and b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888.pkl differ diff --git a/test/test_data_root/archive_tester/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888.pkl b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888.pkl new file mode 100644 index 0000000..d79919a Binary files /dev/null and b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888.pkl differ diff --git a/test/test_data_root/archive_tester/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888.pkl b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888.pkl new file mode 100644 index 0000000..7291d1f Binary files /dev/null and b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888.pkl differ diff --git a/test/test_data_root/archive_tester/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888.pkl b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888.pkl new file mode 100644 index 0000000..556efab Binary files /dev/null and b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888.pkl differ diff --git a/test/test_data_root/archive_tester/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88.pkl b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88.pkl new file mode 100644 index 0000000..38afa38 Binary files /dev/null and b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88.pkl differ diff --git a/test/test_data_root/archive_tester/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88.pkl b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88.pkl new file mode 100644 index 0000000..4556c6d Binary files /dev/null and b/test/test_data_root/archive_tester/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1.pkl new file mode 100644 index 0000000..dc56354 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2.pkl new file mode 100644 index 0000000..2a918c2 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..b6efd27 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..b440518 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..4e1f676 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..e1b8549 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..1fc62f0 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..3313b9b Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..443d192 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..e4c7f63 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..c49ae4f Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..7084b51 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..6f6ba29 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..7237313 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..c9beb1e Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16.pkl new file mode 100644 index 0000000..ce1308c Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-04-34-774593 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-04-34-774593 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..2ad7713 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-04-34-774593 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..b0592bb Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..88bd3b5 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..ae8599d Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..1f96b5a Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..fd55793 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..0e1d2d7 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16.pkl new file mode 100644 index 0000000..7bf1fd2 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16.pkl new file mode 100644 index 0000000..e678570 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16.pkl new file mode 100644 index 0000000..2644f0c Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16.pkl new file mode 100644 index 0000000..cbc2282 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16.pkl new file mode 100644 index 0000000..c5435b5 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..24a0091 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..f782839 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..14fe661 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..f793399 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..178337a Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..c4320ed Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..70c3766 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..1925c5b Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..5bb86ee Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..98d321f Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..0d0388c Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..ef17b2c Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..d5ec1d2 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..612649b Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..0249dd2 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..eb13032 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..95c479d Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..018a6ac Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..a6d669d Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..02cf0c0 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..1a0547b Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..1f2a09a Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..e01dc0b Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..095202d Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..37c022b Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..46c134d Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..02536ea Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..27fa159 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..380f24a Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..77f4668 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..0819d47 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..194fc6f Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..97e5432 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..1235612 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..ee21c16 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..8d8fcbd Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..abb714c Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..417ee98 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..6f7b63f Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..b7f5d81 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..536e698 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..2934e05 Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl new file mode 100644 index 0000000..d8469bb Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl differ diff --git a/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16.pkl b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16.pkl new file mode 100644 index 0000000..bce980b Binary files /dev/null and b/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16.pkl differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint new file mode 100644 index 0000000..58b217a --- /dev/null +++ b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-900" +all_model_checkpoint_paths: "checkpoint-900" diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint-900.data-00000-of-00001 b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint-900.data-00000-of-00001 new file mode 100644 index 0000000..18215e5 Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint-900.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint-900.index b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint-900.index new file mode 100644 index 0000000..19ab7f0 Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint-900.index differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint-900.meta b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint-900.meta new file mode 100644 index 0000000..6555294 Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint-900.meta differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint new file mode 100644 index 0000000..58b217a --- /dev/null +++ b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-900" +all_model_checkpoint_paths: "checkpoint-900" diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint-900.data-00000-of-00001 b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint-900.data-00000-of-00001 new file mode 100644 index 0000000..2fda04c Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint-900.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint-900.index b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint-900.index new file mode 100644 index 0000000..00a0b4f Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint-900.index differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint-900.meta b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint-900.meta new file mode 100644 index 0000000..b3fee60 Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint-900.meta differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint new file mode 100644 index 0000000..58b217a --- /dev/null +++ b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-900" +all_model_checkpoint_paths: "checkpoint-900" diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint-900.data-00000-of-00001 b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint-900.data-00000-of-00001 new file mode 100644 index 0000000..f8d13fe Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint-900.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint-900.index b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint-900.index new file mode 100644 index 0000000..4313a52 Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint-900.index differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint-900.meta b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint-900.meta new file mode 100644 index 0000000..550778d Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint-900.meta differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint new file mode 100644 index 0000000..58b217a --- /dev/null +++ b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-900" +all_model_checkpoint_paths: "checkpoint-900" diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint-900.data-00000-of-00001 b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint-900.data-00000-of-00001 new file mode 100644 index 0000000..f7c64de Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint-900.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint-900.index b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint-900.index new file mode 100644 index 0000000..edadadf Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint-900.index differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint-900.meta b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint-900.meta new file mode 100644 index 0000000..48b704f Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint-900.meta differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint new file mode 100644 index 0000000..58b217a --- /dev/null +++ b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-900" +all_model_checkpoint_paths: "checkpoint-900" diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint-900.data-00000-of-00001 b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint-900.data-00000-of-00001 new file mode 100644 index 0000000..8547429 Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint-900.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint-900.index b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint-900.index new file mode 100644 index 0000000..2ecd6e3 Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint-900.index differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint-900.meta b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint-900.meta new file mode 100644 index 0000000..9ce3dcb Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint-900.meta differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint new file mode 100644 index 0000000..58b217a --- /dev/null +++ b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-900" +all_model_checkpoint_paths: "checkpoint-900" diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-900.data-00000-of-00001 b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-900.data-00000-of-00001 new file mode 100644 index 0000000..54b2a53 Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-900.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-900.index b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-900.index new file mode 100644 index 0000000..ceeee21 Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-900.index differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-900.meta b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-900.meta new file mode 100644 index 0000000..5d4c57b Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-900.meta differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint new file mode 100644 index 0000000..ae0cc27 --- /dev/null +++ b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-300" +all_model_checkpoint_paths: "checkpoint-300" diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-300.data-00000-of-00001 b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-300.data-00000-of-00001 new file mode 100644 index 0000000..a2ecd17 Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-300.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-300.index b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-300.index new file mode 100644 index 0000000..e660753 Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-300.index differ diff --git a/test/test_data_root/checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-300.meta b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-300.meta new file mode 100644 index 0000000..9178b5d Binary files /dev/null and b/test/test_data_root/checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint-300.meta differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/checkpoint b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/checkpoint new file mode 100644 index 0000000..5603c64 --- /dev/null +++ b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-0" +all_model_checkpoint_paths: "checkpoint-0" diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/checkpoint-0.data-00000-of-00001 b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/checkpoint-0.data-00000-of-00001 new file mode 100644 index 0000000..dceb505 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/checkpoint-0.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/checkpoint-0.index b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/checkpoint-0.index new file mode 100644 index 0000000..a0c7843 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/checkpoint-0.index differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/checkpoint-0.meta b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/checkpoint-0.meta new file mode 100644 index 0000000..4560077 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/checkpoint-0.meta differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint new file mode 100644 index 0000000..829f692 --- /dev/null +++ b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-800" +all_model_checkpoint_paths: "checkpoint-800" diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint-800.data-00000-of-00001 b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint-800.data-00000-of-00001 new file mode 100644 index 0000000..87f57a6 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint-800.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint-800.index b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint-800.index new file mode 100644 index 0000000..7f740dc Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint-800.index differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint-800.meta b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint-800.meta new file mode 100644 index 0000000..a81d516 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint-800.meta differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint new file mode 100644 index 0000000..bc1ca92 --- /dev/null +++ b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-80" +all_model_checkpoint_paths: "checkpoint-80" diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint-80.data-00000-of-00001 b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint-80.data-00000-of-00001 new file mode 100644 index 0000000..19f2def Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint-80.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint-80.index b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint-80.index new file mode 100644 index 0000000..df2fcb0 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint-80.index differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint-80.meta b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint-80.meta new file mode 100644 index 0000000..116cbf3 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint-80.meta differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..b1dd816 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint new file mode 100644 index 0000000..bc1ca92 --- /dev/null +++ b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-80" +all_model_checkpoint_paths: "checkpoint-80" diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint-80.data-00000-of-00001 b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint-80.data-00000-of-00001 new file mode 100644 index 0000000..4f175f9 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint-80.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint-80.index b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint-80.index new file mode 100644 index 0000000..8a5fac0 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint-80.index differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint-80.meta b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint-80.meta new file mode 100644 index 0000000..c7fb5b0 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint-80.meta differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..0d12eda Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint new file mode 100644 index 0000000..bc1ca92 --- /dev/null +++ b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-80" +all_model_checkpoint_paths: "checkpoint-80" diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint-80.data-00000-of-00001 b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint-80.data-00000-of-00001 new file mode 100644 index 0000000..683b258 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint-80.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint-80.index b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint-80.index new file mode 100644 index 0000000..0567d2f Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint-80.index differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint-80.meta b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint-80.meta new file mode 100644 index 0000000..bed8ad1 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint-80.meta differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..d750498 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint new file mode 100644 index 0000000..bc1ca92 --- /dev/null +++ b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-80" +all_model_checkpoint_paths: "checkpoint-80" diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint-80.data-00000-of-00001 b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint-80.data-00000-of-00001 new file mode 100644 index 0000000..df3029c Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint-80.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint-80.index b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint-80.index new file mode 100644 index 0000000..dcd02e9 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint-80.index differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint-80.meta b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint-80.meta new file mode 100644 index 0000000..1e4c6ff Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint-80.meta differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..d033182 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint new file mode 100644 index 0000000..bc1ca92 --- /dev/null +++ b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-80" +all_model_checkpoint_paths: "checkpoint-80" diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint-80.data-00000-of-00001 b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint-80.data-00000-of-00001 new file mode 100644 index 0000000..4a68c63 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint-80.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint-80.index b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint-80.index new file mode 100644 index 0000000..897526f Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint-80.index differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint-80.meta b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint-80.meta new file mode 100644 index 0000000..7c62e1a Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint-80.meta differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..73bf5c9 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..b1a0d11 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..eddef46 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..bcb4ccc Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..8da04e1 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..4ae0892 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..ea98309 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..011f03d Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..f55de2c Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..1c03201 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..8548b6a Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..79696f4 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..674286f Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..f4049d2 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/checkpoint b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/checkpoint new file mode 100644 index 0000000..5603c64 --- /dev/null +++ b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-0" +all_model_checkpoint_paths: "checkpoint-0" diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 new file mode 100644 index 0000000..98010da Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/checkpoint-0.index b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/checkpoint-0.index new file mode 100644 index 0000000..169bb25 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/checkpoint-0.index differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/checkpoint-0.meta b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/checkpoint-0.meta new file mode 100644 index 0000000..fa8f1d6 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/checkpoint-0.meta differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/checkpoint b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/checkpoint new file mode 100644 index 0000000..5603c64 --- /dev/null +++ b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-0" +all_model_checkpoint_paths: "checkpoint-0" diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 new file mode 100644 index 0000000..5b72e75 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/checkpoint-0.index b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/checkpoint-0.index new file mode 100644 index 0000000..8e9f5b6 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/checkpoint-0.index differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/checkpoint-0.meta b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/checkpoint-0.meta new file mode 100644 index 0000000..4fd91fe Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/checkpoint-0.meta differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/checkpoint b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/checkpoint new file mode 100644 index 0000000..5603c64 --- /dev/null +++ b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-0" +all_model_checkpoint_paths: "checkpoint-0" diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 new file mode 100644 index 0000000..6070937 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/checkpoint-0.index b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/checkpoint-0.index new file mode 100644 index 0000000..8b20659 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/checkpoint-0.index differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/checkpoint-0.meta b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/checkpoint-0.meta new file mode 100644 index 0000000..8f024e6 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/checkpoint-0.meta differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/checkpoint b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/checkpoint new file mode 100644 index 0000000..5603c64 --- /dev/null +++ b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-0" +all_model_checkpoint_paths: "checkpoint-0" diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 new file mode 100644 index 0000000..dde25d3 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/checkpoint-0.index b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/checkpoint-0.index new file mode 100644 index 0000000..b04320c Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/checkpoint-0.index differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/checkpoint-0.meta b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/checkpoint-0.meta new file mode 100644 index 0000000..53001b2 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/checkpoint-0.meta differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/checkpoint b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/checkpoint new file mode 100644 index 0000000..5603c64 --- /dev/null +++ b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "checkpoint-0" +all_model_checkpoint_paths: "checkpoint-0" diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 new file mode 100644 index 0000000..7d86e6b Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/checkpoint-0.data-00000-of-00001 differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/checkpoint-0.index b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/checkpoint-0.index new file mode 100644 index 0000000..fc91b75 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/checkpoint-0.index differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/checkpoint-0.meta b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/checkpoint-0.meta new file mode 100644 index 0000000..d203eaf Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/checkpoint-0.meta differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..9639140 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt new file mode 100644 index 0000000..5e8c8d7 Binary files /dev/null and b/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/checkpoint-80.pt differ diff --git a/test/test_data_root/code/__init__.py b/test/test_data_root/code/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/project/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/project/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/project/main.py b/test/test_data_root/code/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/project/main.py new file mode 100644 index 0000000..d5be684 --- /dev/null +++ b/test/test_data_root/code/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/project/main.py @@ -0,0 +1,79 @@ +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.tools import time_record, time_record_end +from RLA.easy_log.simple_mat_plot import simple_plot +from RLA.rla_argparser import arg_parser_postprocess +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import argparse + +# phase 1: init your hyper-parameters +def get_param(): + parser = argparse.ArgumentParser("Tensorflow Implementation of Variational Sequence") + parser.add_argument('--seed', help='RNG seed', type=int, default=88) + parser.add_argument('--env_id', help='environment ID', default='Test-v1') + parser.add_argument('--learning_rate', help='a hyperparameter', default=1e-4, type=float) + parser.add_argument('--input_size', help='a hyperparameter', default=16, type=int) + parser = arg_parser_postprocess(parser) + args = parser.parse_args() + kwargs = vars(args) + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(["env_id", "learning_rate"]) + return kwargs + +# phase 2: init the RLA experiment manager. +kwargs = get_param() +task_name = 'demo_task' +rla_data_root = '../' +exp_manager.configure(task_name, private_config_path='../rla_config.yaml', data_root=rla_data_root) +exp_manager.log_files_gen() +exp_manager.print_args() + +# start_epoch = 0 +# phase 3: [optional] resume from a historical experiment. +from RLA.easy_log.exp_loader import exp_loader +exp_loader.fork_log_files() +start_epoch, load_res, hist_variables = exp_loader.load_from_record_date(variable_list=['iv']) + +# phase 4: write your code. +import tensorflow as tf +X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') +y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') +l = X_ph +for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + +out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) +loss = tf.reduce_mean(np.square(out - y_ph)) +opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + +sess = tf.Session().__enter__() +sess.run(tf.variables_initializer(tf.global_variables())) + +exp_manager.new_saver(var_prefix='', max_to_keep=1) + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +for i in range(start_epoch, 1000): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph:x_input, y_ph: y})[:-1] + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 100 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=16, axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() \ No newline at end of file diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/project/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/project/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/project/main.py b/test/test_data_root/code/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/project/main.py new file mode 100644 index 0000000..e8f57e4 --- /dev/null +++ b/test/test_data_root/code/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/project/main.py @@ -0,0 +1,79 @@ +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.tools import time_record, time_record_end +from RLA.easy_log.simple_mat_plot import simple_plot +from RLA.rla_argparser import arg_parser_postprocess +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import argparse + +# phase 1: init your hyper-parameters +def get_param(): + parser = argparse.ArgumentParser("Tensorflow Implementation of Variational Sequence") + parser.add_argument('--seed', help='RNG seed', type=int, default=88) + parser.add_argument('--env_id', help='environment ID', default='Test-v1') + parser.add_argument('--learning_rate', help='a hyperparameter', default=1e-2, type=float) + parser.add_argument('--input_size', help='a hyperparameter', default=16, type=int) + parser = arg_parser_postprocess(parser) + args = parser.parse_args() + kwargs = vars(args) + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(["env_id", "learning_rate"]) + return kwargs + +# phase 2: init the RLA experiment manager. +kwargs = get_param() +task_name = 'demo_task' +rla_data_root = '../' +exp_manager.configure(task_name, private_config_path='../rla_config.yaml', data_root=rla_data_root) +exp_manager.log_files_gen() +exp_manager.print_args() + +# start_epoch = 0 +# phase 3: [optional] resume from a historical experiment. +from RLA.easy_log.exp_loader import exp_loader +exp_loader.fork_log_files() +start_epoch, load_res, hist_variables = exp_loader.load_from_record_date(variable_list=['iv']) + +# phase 4: write your code. +import tensorflow as tf +X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') +y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') +l = X_ph +for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + +out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) +loss = tf.reduce_mean(np.square(out - y_ph)) +opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + +sess = tf.Session().__enter__() +sess.run(tf.variables_initializer(tf.global_variables())) + +exp_manager.new_saver(var_prefix='', max_to_keep=1) + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +for i in range(start_epoch, 1000): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph:x_input, y_ph: y})[:-1] + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 100 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=16, axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() \ No newline at end of file diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/project/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/project/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/project/main.py b/test/test_data_root/code/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/project/main.py new file mode 100644 index 0000000..247969a --- /dev/null +++ b/test/test_data_root/code/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/project/main.py @@ -0,0 +1,92 @@ +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.tools import time_record, time_record_end +from RLA.easy_log.simple_mat_plot import simple_plot +from RLA.rla_argparser import arg_parser_postprocess +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import argparse + +# phase 1: init your hyper-parameters +def get_param(): + parser = argparse.ArgumentParser("Tensorflow Implementation of Variational Sequence") + parser.add_argument('--seed', help='RNG seed', type=int, default=888) + parser.add_argument('--env_id', help='environment ID', default='Test-v1') + parser.add_argument('--learning_rate', help='a hyperparameter', default=1e-2, type=float) + parser.add_argument('--input_size', help='a hyperparameter', default=16, type=int) + parser = arg_parser_postprocess(parser) + args = parser.parse_args() + kwargs = vars(args) + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(["env_id", "learning_rate", "seed"]) + return kwargs + +# phase 2: init the RLA experiment manager. +kwargs = get_param() + +task_name = 'demo_task' +rla_data_root = '../' +exp_manager.configure(task_name, private_config_path='../rla_config.yaml', data_root=rla_data_root) +exp_manager.log_files_gen() +exp_manager.print_args() + +def set_global_seeds(seed): + """ + set the seed for python random, tensorflow, numpy and gym spaces + + :param seed: (int) the seed + """ + import random + tf.set_random_seed(seed) + np.random.seed(seed) + random.seed(seed) + +set_global_seeds(kwargs["seed"]) + +# phase 3: [optional] resume from a historical experiment. +from RLA.easy_log.exp_loader import exp_loader +exp_loader.fork_log_files() +start_epoch, load_res, hist_variables = exp_loader.load_from_record_date(variable_list=['iv']) + +# phase 4: write your code. +import tensorflow as tf +X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') +y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') +l = X_ph +for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + +out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) +loss = tf.reduce_mean(np.square(out - y_ph)) +opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + +sess = tf.Session().__enter__() +sess.run(tf.variables_initializer(tf.global_variables())) + +exp_manager.new_saver(var_prefix='', max_to_keep=1) + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +for i in range(start_epoch, 1000): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph:x_input, y_ph: y})[:-1] + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 100 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=16, axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() \ No newline at end of file diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/project/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/project/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/project/main.py b/test/test_data_root/code/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/project/main.py new file mode 100644 index 0000000..d1450a6 --- /dev/null +++ b/test/test_data_root/code/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/project/main.py @@ -0,0 +1,92 @@ +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.tools import time_record, time_record_end +from RLA.easy_log.simple_mat_plot import simple_plot +from RLA.rla_argparser import arg_parser_postprocess +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import tensorflow as tf +import argparse + +# phase 1: init your hyper-parameters +def get_param(): + parser = argparse.ArgumentParser("Tensorflow Implementation of Variational Sequence") + parser.add_argument('--seed', help='RNG seed', type=int, default=8888) + parser.add_argument('--env_id', help='environment ID', default='Test-v1') + parser.add_argument('--learning_rate', help='a hyperparameter', default=1e-2, type=float) + parser.add_argument('--input_size', help='a hyperparameter', default=16, type=int) + parser = arg_parser_postprocess(parser) + args = parser.parse_args() + kwargs = vars(args) + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(["env_id", "learning_rate", "seed"]) + return kwargs + +# phase 2: init the RLA experiment manager. +kwargs = get_param() + +task_name = 'demo_task' +rla_data_root = '../' +exp_manager.configure(task_name, private_config_path='../rla_config.yaml', data_root=rla_data_root) +exp_manager.log_files_gen() +exp_manager.print_args() + +def set_global_seeds(seed): + """ + set the seed for python random, tensorflow, numpy and gym spaces + + :param seed: (int) the seed + """ + import random + tf.set_random_seed(seed) + np.random.seed(seed) + random.seed(seed) + +set_global_seeds(kwargs["seed"]) + +# phase 3: [optional] resume from a historical experiment. +from RLA.easy_log.exp_loader import exp_loader +exp_loader.fork_log_files() +start_epoch, load_res, hist_variables = exp_loader.load_from_record_date(variable_list=['iv']) + +# phase 4: write your code. +X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') +y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') +l = X_ph +for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + +out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) +loss = tf.reduce_mean(np.square(out - y_ph)) +opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + +sess = tf.Session().__enter__() +sess.run(tf.variables_initializer(tf.global_variables())) + +exp_manager.new_saver(var_prefix='', max_to_keep=1) + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +for i in range(start_epoch, 1000): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph:x_input, y_ph: y})[:-1] + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 100 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=16, axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() \ No newline at end of file diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/project/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/project/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/project/main.py b/test/test_data_root/code/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/project/main.py new file mode 100644 index 0000000..a634d64 --- /dev/null +++ b/test/test_data_root/code/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/project/main.py @@ -0,0 +1,92 @@ +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.tools import time_record, time_record_end +from RLA.easy_log.simple_mat_plot import simple_plot +from RLA.rla_argparser import arg_parser_postprocess +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import tensorflow as tf +import argparse + +# phase 1: init your hyper-parameters +def get_param(): + parser = argparse.ArgumentParser("Tensorflow Implementation of Variational Sequence") + parser.add_argument('--seed', help='RNG seed', type=int, default=888) + parser.add_argument('--env_id', help='environment ID', default='Test-v1') + parser.add_argument('--learning_rate', help='a hyperparameter', default=1e-2, type=float) + parser.add_argument('--input_size', help='a hyperparameter', default=16, type=int) + parser = arg_parser_postprocess(parser) + args = parser.parse_args() + kwargs = vars(args) + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(["env_id", "learning_rate", "seed"]) + return kwargs + +# phase 2: init the RLA experiment manager. +kwargs = get_param() + +task_name = 'demo_task' +rla_data_root = '../' +exp_manager.configure(task_name, private_config_path='../rla_config.yaml', data_root=rla_data_root) +exp_manager.log_files_gen() +exp_manager.print_args() + +def set_global_seeds(seed): + """ + set the seed for python random, tensorflow, numpy and gym spaces + + :param seed: (int) the seed + """ + import random + tf.set_random_seed(seed) + np.random.seed(seed) + random.seed(seed) + +set_global_seeds(kwargs["seed"]) + +# phase 3: [optional] resume from a historical experiment. +from RLA.easy_log.exp_loader import exp_loader +exp_loader.fork_log_files() +start_epoch, load_res, hist_variables = exp_loader.load_from_record_date(variable_list=['iv']) + +# phase 4: write your code. +X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') +y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') +l = X_ph +for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + +out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) +loss = tf.reduce_mean(np.square(out - y_ph)) +opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + +sess = tf.Session().__enter__() +sess.run(tf.variables_initializer(tf.global_variables())) + +exp_manager.new_saver(var_prefix='', max_to_keep=1) + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +for i in range(start_epoch, 1000): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph:x_input, y_ph: y})[:-1] + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 100 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=16, axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() \ No newline at end of file diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/project/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/project/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/project/main.py b/test/test_data_root/code/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/project/main.py new file mode 100644 index 0000000..0b55177 --- /dev/null +++ b/test/test_data_root/code/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/project/main.py @@ -0,0 +1,92 @@ +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.tools import time_record, time_record_end +from RLA.easy_log.simple_mat_plot import simple_plot +from RLA.rla_argparser import arg_parser_postprocess +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import tensorflow as tf +import argparse + +# phase 1: init your hyper-parameters +def get_param(): + parser = argparse.ArgumentParser("Tensorflow Implementation of Variational Sequence") + parser.add_argument('--seed', help='RNG seed', type=int, default=888) + parser.add_argument('--env_id', help='environment ID', default='Test-v1') + parser.add_argument('--learning_rate', help='a hyperparameter', default=1e-3, type=float) + parser.add_argument('--input_size', help='a hyperparameter', default=16, type=int) + parser = arg_parser_postprocess(parser) + args = parser.parse_args() + kwargs = vars(args) + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(["env_id", "learning_rate", "seed"]) + return kwargs + +# phase 2: init the RLA experiment manager. +kwargs = get_param() + +task_name = 'demo_task' +rla_data_root = '../' +exp_manager.configure(task_name, private_config_path='../rla_config.yaml', data_root=rla_data_root) +exp_manager.log_files_gen() +exp_manager.print_args() + +def set_global_seeds(seed): + """ + set the seed for python random, tensorflow, numpy and gym spaces + + :param seed: (int) the seed + """ + import random + tf.set_random_seed(seed) + np.random.seed(seed) + random.seed(seed) + +set_global_seeds(kwargs["seed"]) + +# phase 3: [optional] resume from a historical experiment. +from RLA.easy_log.exp_loader import exp_loader +exp_loader.fork_log_files() +start_epoch, load_res, hist_variables = exp_loader.load_from_record_date(variable_list=['iv']) + +# phase 4: write your code. +X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') +y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') +l = X_ph +for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + +out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) +loss = tf.reduce_mean(np.square(out - y_ph)) +opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + +sess = tf.Session().__enter__() +sess.run(tf.variables_initializer(tf.global_variables())) + +exp_manager.new_saver(var_prefix='', max_to_keep=1) + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +for i in range(start_epoch, 1000): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph:x_input, y_ph: y})[:-1] + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 100 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=16, axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() \ No newline at end of file diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/project/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/project/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/project/main.py b/test/test_data_root/code/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/project/main.py new file mode 100644 index 0000000..335f7e4 --- /dev/null +++ b/test/test_data_root/code/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/project/main.py @@ -0,0 +1,92 @@ +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.tools import time_record, time_record_end +from RLA.easy_log.simple_mat_plot import simple_plot +from RLA.rla_argparser import arg_parser_postprocess +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import tensorflow as tf +import argparse + +# phase 1: init your hyper-parameters +def get_param(): + parser = argparse.ArgumentParser("Tensorflow Implementation of Variational Sequence") + parser.add_argument('--seed', help='RNG seed', type=int, default=88) + parser.add_argument('--env_id', help='environment ID', default='Test-v1') + parser.add_argument('--learning_rate', help='a hyperparameter', default=1e-3, type=float) + parser.add_argument('--input_size', help='a hyperparameter', default=16, type=int) + parser = arg_parser_postprocess(parser) + args = parser.parse_args() + kwargs = vars(args) + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(["env_id", "learning_rate", "seed"]) + return kwargs + +# phase 2: init the RLA experiment manager. +kwargs = get_param() + +task_name = 'demo_task' +rla_data_root = '../' +exp_manager.configure(task_name, private_config_path='../rla_config.yaml', data_root=rla_data_root) +exp_manager.log_files_gen() +exp_manager.print_args() + +def set_global_seeds(seed): + """ + set the seed for python random, tensorflow, numpy and gym spaces + + :param seed: (int) the seed + """ + import random + tf.set_random_seed(seed) + np.random.seed(seed) + random.seed(seed) + +set_global_seeds(kwargs["seed"]) + +# phase 3: [optional] resume from a historical experiment. +from RLA.easy_log.exp_loader import exp_loader +exp_loader.fork_log_files() +start_epoch, load_res, hist_variables = exp_loader.load_from_record_date(variable_list=['iv']) + +# phase 4: write your code. +X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') +y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') +l = X_ph +for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + +out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) +loss = tf.reduce_mean(np.square(out - y_ph)) +opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + +sess = tf.Session().__enter__() +sess.run(tf.variables_initializer(tf.global_variables())) + +exp_manager.new_saver(var_prefix='', max_to_keep=1) + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +for i in range(start_epoch, 1000): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph:x_input, y_ph: y})[:-1] + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 100 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=16, axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() \ No newline at end of file diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/project/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/project/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/project/main.py b/test/test_data_root/code/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/project/main.py new file mode 100644 index 0000000..335f7e4 --- /dev/null +++ b/test/test_data_root/code/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/project/main.py @@ -0,0 +1,92 @@ +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.tools import time_record, time_record_end +from RLA.easy_log.simple_mat_plot import simple_plot +from RLA.rla_argparser import arg_parser_postprocess +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import tensorflow as tf +import argparse + +# phase 1: init your hyper-parameters +def get_param(): + parser = argparse.ArgumentParser("Tensorflow Implementation of Variational Sequence") + parser.add_argument('--seed', help='RNG seed', type=int, default=88) + parser.add_argument('--env_id', help='environment ID', default='Test-v1') + parser.add_argument('--learning_rate', help='a hyperparameter', default=1e-3, type=float) + parser.add_argument('--input_size', help='a hyperparameter', default=16, type=int) + parser = arg_parser_postprocess(parser) + args = parser.parse_args() + kwargs = vars(args) + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(["env_id", "learning_rate", "seed"]) + return kwargs + +# phase 2: init the RLA experiment manager. +kwargs = get_param() + +task_name = 'demo_task' +rla_data_root = '../' +exp_manager.configure(task_name, private_config_path='../rla_config.yaml', data_root=rla_data_root) +exp_manager.log_files_gen() +exp_manager.print_args() + +def set_global_seeds(seed): + """ + set the seed for python random, tensorflow, numpy and gym spaces + + :param seed: (int) the seed + """ + import random + tf.set_random_seed(seed) + np.random.seed(seed) + random.seed(seed) + +set_global_seeds(kwargs["seed"]) + +# phase 3: [optional] resume from a historical experiment. +from RLA.easy_log.exp_loader import exp_loader +exp_loader.fork_log_files() +start_epoch, load_res, hist_variables = exp_loader.load_from_record_date(variable_list=['iv']) + +# phase 4: write your code. +X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') +y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') +l = X_ph +for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + +out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) +loss = tf.reduce_mean(np.square(out - y_ph)) +opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + +sess = tf.Session().__enter__() +sess.run(tf.variables_initializer(tf.global_variables())) + +exp_manager.new_saver(var_prefix='', max_to_keep=1) + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +for i in range(start_epoch, 1000): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph:x_input, y_ph: y})[:-1] + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 100 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=16, axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() \ No newline at end of file diff --git a/test/test_data_root/code/demo_task/2022/03/01/__init__.py b/test/test_data_root/code/demo_task/2022/03/01/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/03/__init__.py b/test/test_data_root/code/demo_task/2022/03/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/2022/__init__.py b/test/test_data_root/code/demo_task/2022/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/demo_task/__init__.py b/test/test_data_root/code/demo_task/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/proj/__init__.py b/test/test_data_root/code/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/proj/test_manager.py b/test/test_data_root/code/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/proj/test_manager.py new file mode 100644 index 0000000..68d7ce5 --- /dev/null +++ b/test/test_data_root/code/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/proj/test_manager.py @@ -0,0 +1,21 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +import os + + +class ManagerTest(BaseTest): + def _init_proj(self, hp): + task_name = 'test_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path='../rla_config.yaml', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_proj_init(self): + hp = { + 'hp1': 1, + 'hp2': 2, + } + exp_manager.set_hyper_param(**hp) + exp_manager.add_record_param(['hp1']) + self._init_proj(hp) \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/proj/test_manager.py new file mode 100644 index 0000000..787034a --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/proj/test_manager.py @@ -0,0 +1,21 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +import os + + +class ManagerTest(BaseTest): + def _init_proj(self, hp): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path='../rla_config.yaml', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_proj_init(self): + hp = { + 'hp1': 1, + 'hp2': 2, + } + exp_manager.set_hyper_param(**hp) + exp_manager.add_record_param(['hp1']) + self._init_proj(hp) \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/proj/test_manager.py new file mode 100644 index 0000000..c93837a --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/proj/test_manager.py @@ -0,0 +1,72 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import os + + +class ManagerTest(BaseTest): + def _init_proj(self): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path='../rla_config.yaml', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_proj_init(self): + hp = { + 'hp1': 1, + 'hp2': 2, + } + exp_manager.set_hyper_param(**hp) + exp_manager.add_record_param(['hp1']) + self._init_proj() + + def test_log_tf(self): + kwargs = { + 'input_size': 2, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + + def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + for i in range(0, 1000): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 100 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=16, axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..597d175 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,72 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import os + + +class ManagerTest(BaseTest): + def _init_proj(self): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path='../rla_config.yaml', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_proj_init(self): + hp = { + 'hp1': 1, + 'hp2': 2, + } + exp_manager.set_hyper_param(**hp) + exp_manager.add_record_param(['hp1']) + self._init_proj() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + + def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + for i in range(0, 1000): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 100 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=16, axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..39b6d03 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,72 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import os + + +class ManagerTest(BaseTest): + def _init_proj(self): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path='../rla_config.yaml', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_proj_init(self): + hp = { + 'hp1': 1, + 'hp2': 2, + } + exp_manager.set_hyper_param(**hp) + exp_manager.add_record_param(['hp1']) + self._init_proj() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + + def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..a8e901c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,103 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _init_proj(self, config_name='rla_config.yaml'): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path=f'../{config_name}', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj(config_name='rla_config_torch.yaml') + from torch_net import MLP + from torch import nn + from torch.nn import functional as F + + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=3e-4) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(x_input), y) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", mse_loss.numpy(), 10) + logger.record_tabular("y_out", np.mean(y)) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b93481b --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,48 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..bcfa54a --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,102 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _init_proj(self, config_name='rla_config.yaml'): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path=f'../{config_name}', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj(config_name='rla_config_torch.yaml') + from torch_net import MLP, get_device + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=3e-4) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(th.as_tensor(x_input).to(get_device('auto'))) + mse_loss = F.mse_loss(mlp(x_input), y) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", mse_loss.numpy(), 10) + logger.record_tabular("y_out", np.mean(y)) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b93481b --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,48 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..0fe6413 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,102 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _init_proj(self, config_name='rla_config.yaml'): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path=f'../{config_name}', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj(config_name='rla_config_torch.yaml') + from torch_net import MLP, get_device + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=3e-4) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(th.as_tensor(x_input).to(get_device('auto'))), y) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", mse_loss.numpy(), 10) + logger.record_tabular("y_out", np.mean(y)) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b93481b --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,48 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..fe5ca4c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,103 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _init_proj(self, config_name='rla_config.yaml'): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path=f'../{config_name}', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj(config_name='rla_config_torch.yaml') + from torch_net import MLP, get_device + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=3e-4) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(th.as_tensor(x_input).to(get_device('auto'))), y) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", mse_loss.numpy(), 10) + logger.record_tabular("y_out", np.mean(y)) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b93481b --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,48 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..fe5ca4c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,103 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _init_proj(self, config_name='rla_config.yaml'): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path=f'../{config_name}', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj(config_name='rla_config_torch.yaml') + from torch_net import MLP, get_device + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=3e-4) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(th.as_tensor(x_input).to(get_device('auto'))), y) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", mse_loss.numpy(), 10) + logger.record_tabular("y_out", np.mean(y)) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b93481b --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,48 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..123152a --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,102 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import os + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _init_proj(self, config_name='rla_config.yaml'): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path=f'../{config_name}', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj(config_name='rla_config_torch.yaml') + from torch_net import MLP, get_device, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=3e-4) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", mse_loss.numpy(), 10) + logger.record_tabular("y_out", np.mean(y)) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..d986016 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,102 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import os + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _init_proj(self, config_name='rla_config.yaml'): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path=f'../{config_name}', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj(config_name='rla_config_torch.yaml') + from torch_net import MLP, get_device, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=3e-4) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..9177256 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,111 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import os + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _init_proj(self, config_name='rla_config.yaml'): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path=f'../{config_name}', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj(config_name='rla_config_torch.yaml') + from torch_net import MLP, get_device, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=3e-4) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..13b83a8 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,112 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import os + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _init_proj(self, config_name='rla_config.yaml'): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path=f'../{config_name}', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + logger.dump_tabular() + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj(config_name='rla_config_torch.yaml') + from torch_net import MLP, get_device, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=3e-4) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..917c83c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,113 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import os + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _init_proj(self, config_name='rla_config.yaml'): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path=f'../{config_name}', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj(config_name='rla_config_torch.yaml') + from torch_net import MLP, get_device, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=3e-4) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..343eee0 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,114 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import os + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _init_proj(self, config_name='rla_config.yaml'): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path=f'../{config_name}', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj(config_name='rla_config_torch.yaml') + from torch_net import MLP, get_device, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=3e-4) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + + def test_load_checkpoint_torch(self): + pass \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..343eee0 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,114 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +import os + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _init_proj(self, config_name='rla_config.yaml'): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + exp_manager.configure(task_name, private_config_path=f'../{config_name}', data_root=rla_data_root) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj() + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + self._init_proj(config_name='rla_config_torch.yaml') + from torch_net import MLP, get_device, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=3e-4) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + + def test_load_checkpoint_torch(self): + pass \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..fece1f1 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,132 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os +import yaml +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(f'../../../example/rla_config.yaml') + + def _init_proj(self, config_yaml): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root='../') + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + + # def sent_to_remote(self): + # kwargs = { + # 'input_size': 16, + # 'learning_rate': 0.0001, + # } + # exp_manager.set_hyper_param(**kwargs) + # exp_manager.add_record_param(['input_size']) + # self._init_proj(config_name='rla_config_torch.yaml') diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..fece1f1 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,132 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os +import yaml +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(f'../../../example/rla_config.yaml') + + def _init_proj(self, config_yaml): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root='../') + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + + # def sent_to_remote(self): + # kwargs = { + # 'input_size': 16, + # 'learning_rate': 0.0001, + # } + # exp_manager.set_hyper_param(**kwargs) + # exp_manager.add_record_param(['input_size']) + # self._init_proj(config_name='rla_config_torch.yaml') diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/proj/private_config.py new file mode 100644 index 0000000..6e361c5 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='meituan' +passward='meituan' +remote_root='/Users/xionghuichen/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..94a3963 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,150 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os +import yaml +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(f'../../../example/rla_config.yaml') + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root='../', **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.passward + yaml['REMOTE_SETTING']['remote_data_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/proj/private_config.py new file mode 100644 index 0000000..6e361c5 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='meituan' +passward='meituan' +remote_root='/Users/xionghuichen/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..94a3963 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,150 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os +import yaml +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(f'../../../example/rla_config.yaml') + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root='../', **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.passward + yaml['REMOTE_SETTING']['remote_data_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/proj/private_config.py new file mode 100644 index 0000000..6e361c5 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='meituan' +passward='meituan' +remote_root='/Users/xionghuichen/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..dbdc8fa --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,150 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os +import yaml +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(f'../../../example/rla_config.yaml') + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root='../', **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'ftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.passward + yaml['REMOTE_SETTING']['remote_data_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/proj/private_config.py new file mode 100644 index 0000000..6e361c5 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='meituan' +passward='meituan' +remote_root='/Users/xionghuichen/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..dbdc8fa --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,150 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os +import yaml +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(f'../../../example/rla_config.yaml') + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root='../', **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'ftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.passward + yaml['REMOTE_SETTING']['remote_data_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/proj/private_config.py new file mode 100644 index 0000000..6e361c5 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='meituan' +passward='meituan' +remote_root='/Users/xionghuichen/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/proj/test_manager.py new file mode 100644 index 0000000..dbdc8fa --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/proj/test_manager.py @@ -0,0 +1,150 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os +import yaml +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(f'../../../example/rla_config.yaml') + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root='../', **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'ftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.passward + yaml['REMOTE_SETTING']['remote_data_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..6e361c5 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='meituan' +passward='meituan' +remote_root='/Users/xionghuichen/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..dbdc8fa --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/proj/test_manager.py @@ -0,0 +1,150 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os +import yaml +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(f'../../../example/rla_config.yaml') + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root='../', **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'ftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.passward + yaml['REMOTE_SETTING']['remote_data_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..6e361c5 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='meituan' +passward='meituan' +remote_root='/Users/xionghuichen/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..dbdc8fa --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/proj/test_manager.py @@ -0,0 +1,150 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os +import yaml +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(f'../../../example/rla_config.yaml') + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root='../', **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'ftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.passward + yaml['REMOTE_SETTING']['remote_data_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..5f01e9d --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='set-zw-yarn-training527294.mt' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..dbdc8fa --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/proj/test_manager.py @@ -0,0 +1,150 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os +import yaml +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(f'../../../example/rla_config.yaml') + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = '../../test_data_root' + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root='../', **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'ftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.passward + yaml['REMOTE_SETTING']['remote_data_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..a5f671e --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/proj/test_manager.py @@ -0,0 +1,153 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'ftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.passward + yaml['REMOTE_SETTING']['remote_data_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..a5f671e --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,153 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'ftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.passward + yaml['REMOTE_SETTING']['remote_data_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..a5f671e --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,153 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + import numpy as np + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(np.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'ftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.passward + yaml['REMOTE_SETTING']['remote_data_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..ab36011 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +passward='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..8c07721 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,152 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..0b3b456 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,158 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..0b3b456 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,158 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..0b3b456 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,158 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..0b3b456 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,158 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..0b3b456 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,158 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..0b3b456 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,158 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..0b3b456 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,158 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..0b3b456 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,158 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..0b3b456 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,158 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..0b3b456 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,158 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..0b3b456 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,158 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..0b3b456 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,158 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..0b3b456 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,158 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..ef81802 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,159 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + version = 'v1' + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + version = 'v2' + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..ef81802 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,159 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + version = 'v1' + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + version = 'v2' + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..ef81802 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,159 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + version = 'v1' + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + version = 'v2' + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..ef81802 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,159 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + version = 'v1' + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + version = 'v2' + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..ef81802 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,159 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + version = 'v1' + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + version = 'v2' + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..ef81802 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/test_manager.py @@ -0,0 +1,159 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + version = 'v1' + except AttributeError as e: + tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + version = 'v2' + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/proj/__init__.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/proj/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/proj/private_config.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/proj/private_config.py new file mode 100644 index 0000000..a560f5c --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/proj/private_config.py @@ -0,0 +1,5 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn +username='hadoop-peisongpa' +password='wangli78' +remote_root='/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root' \ No newline at end of file diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/proj/test_manager.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/proj/test_manager.py new file mode 100644 index 0000000..a357b5b --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/proj/test_manager.py @@ -0,0 +1,159 @@ +from test._base import BaseTest +from RLA.easy_log.tester import exp_manager +from RLA.easy_log import logger +from RLA.easy_log.complex_data_recorder import MatplotlibRecorder as mpr +import numpy as np +from RLA.utils.utils import load_yaml +import os + + +def target_func(x): + return np.tanh(np.mean(x, axis=-1, keepdims=True)) + + +RLA_REPO_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) +DATABASE_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +CODE_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +class ManagerTest(BaseTest): + + def _load_rla_config(self): + return load_yaml(os.path.join(RLA_REPO_ROOT, 'example/rla_config.yaml')) + + def _init_proj(self, config_yaml, **kwargs): + task_name = 'test_manger_demo_task' + rla_data_root = os.path.join(DATABASE_ROOT, 'test_data_root') + config_yaml['BACKUP_CONFIG']['backup_code_dir'] = ['proj'] + exp_manager.configure(task_name, private_config_path=config_yaml, data_root=rla_data_root, + code_root=CODE_ROOT, **kwargs) + exp_manager.log_files_gen() + exp_manager.print_args() + + def test_log_tf(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + self._init_proj(yaml) + import tensorflow as tf + try: + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + version = 'v1' + except AttributeError as e: + # tf.compat.v1.disable_eager_execution() + tf = tf.compat.v1 + X_ph = tf.placeholder(dtype=tf.float32, shape=[None, kwargs["input_size"]], name='x') + version = 'v2' + y_ph = tf.placeholder(dtype=tf.float32, shape=[None, 1], name='x') + l = X_ph + # build a neural network + for _ in range(3): + l = tf.nn.tanh(tf.layers.dense(l, 64, kernel_initializer=tf.keras.initializers.glorot_normal)) + + out = tf.layers.dense(l, 1, kernel_initializer=tf.keras.initializers.glorot_normal) + loss = tf.reduce_mean(tf.square(out - y_ph)) + opt = tf.train.AdamOptimizer(learning_rate=kwargs["learning_rate"]).minimize(loss) + sess = tf.Session().__enter__() + sess.run(tf.variables_initializer(tf.global_variables())) + + exp_manager.new_saver(var_prefix='', max_to_keep=1) + # synthetic target function. + + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + y = target_func(x_input) + loss_out, y_pred = sess.run([loss, out, opt], feed_dict={X_ph: x_input, y_ph: y})[:-1] + # moving averaged + logger.ma_record_tabular("perf/mse", loss_out, 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 20 == 0: + exp_manager.save_checkpoint() + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testY = target_func(testX) + predY = sess.run(out, feed_dict={X_ph: testX}) + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + logger.dump_tabular() + + + def test_load_checkpoint_tf(self): + pass + + def test_log_torch(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + yaml['DL_FRAMEWORK'] = 'torch' + self._init_proj(yaml) + from test.test_proj.proj.torch_net import MLP, to_tensor + from torch import nn + from torch.nn import functional as F + import torch as th + mlp = MLP(feature_dim=kwargs['input_size'], net_arch=[64, 64, 64], activation_fn=nn.Tanh) + exp_manager.new_saver(var_prefix='', max_to_keep=1) + optimizer = th.optim.Adam(mlp.parameters(), lr=kwargs['learning_rate']) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + x_input = np.random.normal(0, 3, [64, kwargs["input_size"]]) + x_input = x_input.astype(np.float32) + y = target_func(x_input) + mse_loss = F.mse_loss(mlp(to_tensor(x_input)), to_tensor(y)) + optimizer.zero_grad() + mse_loss.backward() + optimizer.step() + logger.ma_record_tabular("perf/mse", np.mean(mse_loss.detach().cpu().numpy()), 10) + logger.record_tabular("y_out", np.mean(y)) + if i % 10 == 0: + def plot_func(): + import matplotlib.pyplot as plt + testX = np.repeat(np.expand_dims(np.arange(-10, 10, 0.1), axis=-1), repeats=kwargs["input_size"], axis=-1) + testX = testX.astype(np.float32) + testY = target_func(testX) + predY = mlp(to_tensor(testX)).detach().cpu().numpy() + plt.plot(testX.mean(axis=-1), predY.mean(axis=-1), label='pred') + plt.plot(testX.mean(axis=-1), testY.mean(axis=-1), label='real') + mpr.pretty_plot_wrapper('react_func', plot_func, xlabel='x', ylabel='y', title='react test') + if i % 20 == 0: + exp_manager.save_checkpoint(model_dict={'mlp': mlp.state_dict(), 'opt': optimizer.state_dict(), 'epoch': i}) + pass + logger.dump_tabular() + + def test_load_checkpoint_torch(self): + pass + + def test_sent_to_master(self): + kwargs = { + 'input_size': 16, + 'learning_rate': 0.0001, + } + exp_manager.set_hyper_param(**kwargs) + exp_manager.add_record_param(['input_size']) + yaml = self._load_rla_config() + from test.test_proj.proj import private_config + yaml['DL_FRAMEWORK'] = 'torch' + yaml['SEND_LOG_FILE'] = True + yaml['REMOTE_SETTING']['ftp_server'] = '127.0.0.1' + yaml['REMOTE_SETTING']['file_transfer_protocol'] = 'sftp' + yaml['REMOTE_SETTING']['username'] = private_config.username + yaml['REMOTE_SETTING']['password'] = private_config.password + yaml['REMOTE_SETTING']['remote_log_root'] = private_config.remote_root + + self._init_proj(yaml, is_master_node=False) + for i in range(0, 100): + exp_manager.time_step_holder.set_time(i) + logger.record_tabular("i", i) + logger.dump_tabular() + if i % 10 == 0: + exp_manager.sync_log_file() diff --git a/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/proj/torch_net.py b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/proj/torch_net.py new file mode 100644 index 0000000..b9f0232 --- /dev/null +++ b/test/test_data_root/code/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/proj/torch_net.py @@ -0,0 +1,52 @@ +# Created by xionghuichen at 2022/6/22 +# Email: chenxh@lamda.nju.edu.cn + +import torch as th +from torch import nn +from typing import Dict, List, Tuple, Type, Union + + + +def get_device(device: Union[th.device, str] = "auto") -> th.device: + """ + Retrieve PyTorch device. + It checks that the requested device is available first. + For now, it supports only cpu and cuda. + By default, it tries to use the gpu. + + :param device: One for 'auto', 'cuda', 'cpu' + :return: + """ + # Cuda by default + if device == "auto": + device = "cuda" + # Force conversion to th.device + device = th.device(device) + + # Cuda not available + if device.type == th.device("cuda").type and not th.cuda.is_available(): + return th.device("cpu") + return device + +def to_tensor(x, device="auto"): + return th.as_tensor(x).to(get_device('auto')) + +class MLP(nn.Module): + def __init__(self, feature_dim: int, net_arch: List[int], activation_fn: Type[nn.Module], + device: Union[th.device, str] = "auto"): + super(MLP, self).__init__() + device = get_device(device) + net = [] + last_layer_dim_shared = feature_dim + for layer in net_arch: + net.append(nn.Linear(last_layer_dim_shared, layer)) # add linear of size layer + net.append(activation_fn()) + last_layer_dim_shared = layer + net.append(nn.Linear(last_layer_dim_shared, 1)) + self.net = nn.Sequential(*net).to(device) + + + def forward(self, features: th.Tensor) -> th.Tensor: + return self.net(features) + + diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/backup.txt b/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/backup.txt new file mode 100644 index 0000000..1d3db32 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/backup.txt @@ -0,0 +1,7 @@ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 88 diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/log.txt b/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/log.txt new file mode 100644 index 0000000..321a321 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/log.txt @@ -0,0 +1,5048 @@ +Logging to ../log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/ +log dir: ../log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/ +pkl_file: ../archive_tester/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001.pkl +checkpoint_dir: ../checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/ +results_dir: ../results/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 88 +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.00551 | +--------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint 0 +--------------------------------------------------------- +| time-step | 1 | +| y_out | -0.0437 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 2 | +| y_out | 0.0211 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 3 | +| y_out | 0.0542 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 4 | +| y_out | -0.0968 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 5 | +| y_out | -0.123 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 6 | +| y_out | -0.0233 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 7 | +| y_out | 0.0479 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 8 | +| y_out | 0.101 | +--------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.7536595 | +| time-step | 9 | +| y_out | 0.00496 | +---------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.7614303 | +| time-step | 10 | +| y_out | 0.0406 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.73954237 | +| time-step | 11 | +| y_out | 0.0193 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.70386356 | +| time-step | 12 | +| y_out | 0.0374 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.6770209 | +| time-step | 13 | +| y_out | 0.00551 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.65267324 | +| time-step | 14 | +| y_out | 0.0266 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.6346815 | +| time-step | 15 | +| y_out | -0.0881 | +---------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.6258823 | +| time-step | 16 | +| y_out | 0.1 | +---------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.5979749 | +| time-step | 17 | +| y_out | -0.0309 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.55063057 | +| time-step | 18 | +| y_out | -0.0441 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.5483422 | +| time-step | 19 | +| y_out | -0.0449 | +---------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.5084941 | +| time-step | 20 | +| y_out | 0.104 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.50091726 | +| time-step | 21 | +| y_out | -0.0949 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.49691707 | +| time-step | 22 | +| y_out | -0.125 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.47591686 | +| time-step | 23 | +| y_out | 0.0839 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.46730766 | +| time-step | 24 | +| y_out | -0.00879 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.4655877 | +| time-step | 25 | +| y_out | 0.0547 | +---------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.4504355 | +| time-step | 26 | +| y_out | -0.0216 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.43825817 | +| time-step | 27 | +| y_out | -0.019 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.42810416 | +| time-step | 28 | +| y_out | 0.0864 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.4091662 | +| time-step | 29 | +| y_out | 0.0262 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.39756814 | +| time-step | 30 | +| y_out | 0.122 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.39547896 | +| time-step | 31 | +| y_out | -0.0351 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.38193163 | +| time-step | 32 | +| y_out | 0.0113 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.3848196 | +| time-step | 33 | +| y_out | -0.053 | +---------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.3804757 | +| time-step | 34 | +| y_out | 0.0572 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.36593375 | +| time-step | 35 | +| y_out | 0.017 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.35520807 | +| time-step | 36 | +| y_out | -0.0157 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.34942326 | +| time-step | 37 | +| y_out | 0.0236 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.34835225 | +| time-step | 38 | +| y_out | -0.0641 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.34093562 | +| time-step | 39 | +| y_out | -0.0648 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.33941054 | +| time-step | 40 | +| y_out | 0.0845 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.3291096 | +| time-step | 41 | +| y_out | -0.0178 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.32265082 | +| time-step | 42 | +| y_out | -0.0342 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.3030842 | +| time-step | 43 | +| y_out | -0.116 | +---------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2845729 | +| time-step | 44 | +| y_out | 0.0727 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.27790684 | +| time-step | 45 | +| y_out | -0.0115 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.27230132 | +| time-step | 46 | +| y_out | 0.046 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26273435 | +| time-step | 47 | +| y_out | -0.0139 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25933737 | +| time-step | 48 | +| y_out | -0.00529 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26412326 | +| time-step | 49 | +| y_out | -0.0303 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.27383024 | +| time-step | 50 | +| y_out | 0.077 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2696325 | +| time-step | 51 | +| y_out | 0.0933 | +---------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2703403 | +| time-step | 52 | +| y_out | -0.0672 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26812977 | +| time-step | 53 | +| y_out | -0.0344 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26405814 | +| time-step | 54 | +| y_out | -0.012 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26761395 | +| time-step | 55 | +| y_out | 0.0193 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26213422 | +| time-step | 56 | +| y_out | -0.0438 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2602182 | +| time-step | 57 | +| y_out | -0.0301 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26066226 | +| time-step | 58 | +| y_out | -0.0592 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2479376 | +| time-step | 59 | +| y_out | -0.0131 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.23060067 | +| time-step | 60 | +| y_out | 0.0163 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22659326 | +| time-step | 61 | +| y_out | -0.0223 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2289532 | +| time-step | 62 | +| y_out | -0.00366 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21603683 | +| time-step | 63 | +| y_out | 0.146 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22301443 | +| time-step | 64 | +| y_out | 0.0111 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21527323 | +| time-step | 65 | +| y_out | 0.0736 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2119784 | +| time-step | 66 | +| y_out | 0.0203 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21069415 | +| time-step | 67 | +| y_out | 0.0439 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20798007 | +| time-step | 68 | +| y_out | 0.121 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20300722 | +| time-step | 69 | +| y_out | -0.0586 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20228119 | +| time-step | 70 | +| y_out | 0.00133 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20275107 | +| time-step | 71 | +| y_out | -0.0316 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19388804 | +| time-step | 72 | +| y_out | -0.0021 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20016971 | +| time-step | 73 | +| y_out | 0.0199 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18662246 | +| time-step | 74 | +| y_out | -0.109 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18414605 | +| time-step | 75 | +| y_out | 0.0153 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18662009 | +| time-step | 76 | +| y_out | -0.0261 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18146111 | +| time-step | 77 | +| y_out | 0.11 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17184725 | +| time-step | 78 | +| y_out | 0.0392 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17073518 | +| time-step | 79 | +| y_out | 0.0281 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16503216 | +| time-step | 80 | +| y_out | -0.00368 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16086186 | +| time-step | 81 | +| y_out | -0.0177 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1619516 | +| time-step | 82 | +| y_out | -0.151 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15664205 | +| time-step | 83 | +| y_out | 0.0902 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16488114 | +| time-step | 84 | +| y_out | -0.0866 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15822244 | +| time-step | 85 | +| y_out | 0.0288 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15081719 | +| time-step | 86 | +| y_out | -0.0976 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1494141 | +| time-step | 87 | +| y_out | 0.0185 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14710765 | +| time-step | 88 | +| y_out | 0.0195 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14720626 | +| time-step | 89 | +| y_out | 0.025 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14446992 | +| time-step | 90 | +| y_out | -0.0801 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1501849 | +| time-step | 91 | +| y_out | -0.0318 | +---------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1425922 | +| time-step | 92 | +| y_out | -0.166 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14148389 | +| time-step | 93 | +| y_out | 0.0941 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13228774 | +| time-step | 94 | +| y_out | -0.126 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13850872 | +| time-step | 95 | +| y_out | 0.0134 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13413472 | +| time-step | 96 | +| y_out | -0.0185 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1341801 | +| time-step | 97 | +| y_out | 0.0388 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13406035 | +| time-step | 98 | +| y_out | -0.181 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13296397 | +| time-step | 99 | +| y_out | -0.0134 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13536148 | +| time-step | 100 | +| y_out | 0.0598 | +----------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint 100 +----------------------------------------------------------- +| perf/mse | 0.12632269 | +| time-step | 101 | +| y_out | 0.0589 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12709916 | +| time-step | 102 | +| y_out | 0.0696 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12770632 | +| time-step | 103 | +| y_out | -0.0157 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12637927 | +| time-step | 104 | +| y_out | 0.0332 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11823742 | +| time-step | 105 | +| y_out | 0.0241 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.120560944 | +| time-step | 106 | +| y_out | 0.00443 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.115595795 | +| time-step | 107 | +| y_out | -0.0997 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11589529 | +| time-step | 108 | +| y_out | -0.0741 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.112142526 | +| time-step | 109 | +| y_out | -0.0855 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.10772308 | +| time-step | 110 | +| y_out | 0.0742 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10829158 | +| time-step | 111 | +| y_out | 0.0626 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11135219 | +| time-step | 112 | +| y_out | -0.0171 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10839609 | +| time-step | 113 | +| y_out | 0.0416 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.110289335 | +| time-step | 114 | +| y_out | 0.0192 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11743257 | +| time-step | 115 | +| y_out | 6.44e-05 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11489244 | +| time-step | 116 | +| y_out | 0.0768 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.115033686 | +| time-step | 117 | +| y_out | -0.0542 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.1143599 | +| time-step | 118 | +| y_out | 0.0674 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11436614 | +| time-step | 119 | +| y_out | -0.123 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11219598 | +| time-step | 120 | +| y_out | 0.0667 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10956015 | +| time-step | 121 | +| y_out | -0.0453 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10427566 | +| time-step | 122 | +| y_out | -0.133 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.106453106 | +| time-step | 123 | +| y_out | 0.0293 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.103135526 | +| time-step | 124 | +| y_out | -0.113 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09769255 | +| time-step | 125 | +| y_out | 0.0371 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.095179215 | +| time-step | 126 | +| y_out | -0.151 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.093893126 | +| time-step | 127 | +| y_out | -0.00293 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09305087 | +| time-step | 128 | +| y_out | -0.0497 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.090363435 | +| time-step | 129 | +| y_out | -0.0671 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09022226 | +| time-step | 130 | +| y_out | -0.0083 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09041275 | +| time-step | 131 | +| y_out | 0.0349 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09001038 | +| time-step | 132 | +| y_out | 0.0924 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.091183744 | +| time-step | 133 | +| y_out | -0.0376 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09292256 | +| time-step | 134 | +| y_out | 0.0182 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09379208 | +| time-step | 135 | +| y_out | -0.0393 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09531312 | +| time-step | 136 | +| y_out | 0.0207 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10008483 | +| time-step | 137 | +| y_out | 0.0256 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.099591166 | +| time-step | 138 | +| y_out | -0.0905 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.101162255 | +| time-step | 139 | +| y_out | 0.0803 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.10505815 | +| time-step | 140 | +| y_out | -0.024 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10293009 | +| time-step | 141 | +| y_out | 0.199 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10702111 | +| time-step | 142 | +| y_out | -0.11 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10858023 | +| time-step | 143 | +| y_out | 0.00967 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10915722 | +| time-step | 144 | +| y_out | -0.0721 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10915925 | +| time-step | 145 | +| y_out | 0.0344 | +----------------------------------------------------------- +--------------------------------------------------------- +| perf/mse | 0.108269 | +| time-step | 146 | +| y_out | 0.122 | +--------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10186194 | +| time-step | 147 | +| y_out | -0.0252 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09985083 | +| time-step | 148 | +| y_out | -0.0865 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.100750186 | +| time-step | 149 | +| y_out | -0.0829 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09781083 | +| time-step | 150 | +| y_out | -0.00408 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.098306686 | +| time-step | 151 | +| y_out | 0.00946 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09458697 | +| time-step | 152 | +| y_out | 0.0787 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09106726 | +| time-step | 153 | +| y_out | -0.0298 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08781679 | +| time-step | 154 | +| y_out | -0.0823 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08761193 | +| time-step | 155 | +| y_out | 0.083 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08527299 | +| time-step | 156 | +| y_out | 0.0795 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.085666336 | +| time-step | 157 | +| y_out | -0.0396 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08647408 | +| time-step | 158 | +| y_out | 0.136 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08341716 | +| time-step | 159 | +| y_out | -0.0295 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08342825 | +| time-step | 160 | +| y_out | 0.0676 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.080938205 | +| time-step | 161 | +| y_out | -0.0227 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.077774964 | +| time-step | 162 | +| y_out | 0.00395 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07537802 | +| time-step | 163 | +| y_out | -0.0223 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.076626234 | +| time-step | 164 | +| y_out | 0.126 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07307533 | +| time-step | 165 | +| y_out | 0.00617 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.072913185 | +| time-step | 166 | +| y_out | 0.0102 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07236985 | +| time-step | 167 | +| y_out | -0.00032 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06986389 | +| time-step | 168 | +| y_out | 0.0378 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06895031 | +| time-step | 169 | +| y_out | -0.0129 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07149744 | +| time-step | 170 | +| y_out | -0.0368 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.071288966 | +| time-step | 171 | +| y_out | 0.0103 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07429742 | +| time-step | 172 | +| y_out | 0.0913 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.071485594 | +| time-step | 173 | +| y_out | -0.175 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.069862366 | +| time-step | 174 | +| y_out | -0.0778 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07156961 | +| time-step | 175 | +| y_out | -0.0153 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07435675 | +| time-step | 176 | +| y_out | 0.0275 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07573581 | +| time-step | 177 | +| y_out | 0.0197 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07466517 | +| time-step | 178 | +| y_out | -0.0543 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07821276 | +| time-step | 179 | +| y_out | 0.0708 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.073047474 | +| time-step | 180 | +| y_out | -0.0602 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07462281 | +| time-step | 181 | +| y_out | 0.0483 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07356569 | +| time-step | 182 | +| y_out | -0.131 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07592135 | +| time-step | 183 | +| y_out | -0.0958 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07851888 | +| time-step | 184 | +| y_out | 0.0167 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.081421696 | +| time-step | 185 | +| y_out | 0.0582 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.079103336 | +| time-step | 186 | +| y_out | 0.0396 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.080199204 | +| time-step | 187 | +| y_out | 0.0395 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.081093356 | +| time-step | 188 | +| y_out | -0.0652 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07874111 | +| time-step | 189 | +| y_out | 0.0111 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0806599 | +| time-step | 190 | +| y_out | 0.0319 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08369358 | +| time-step | 191 | +| y_out | -0.000837 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08218878 | +| time-step | 192 | +| y_out | -0.0748 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08088047 | +| time-step | 193 | +| y_out | 0.0121 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07906091 | +| time-step | 194 | +| y_out | -0.0555 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0741044 | +| time-step | 195 | +| y_out | 0.0385 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.072809376 | +| time-step | 196 | +| y_out | -0.0434 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07125479 | +| time-step | 197 | +| y_out | -0.0625 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0719644 | +| time-step | 198 | +| y_out | -0.00296 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07198538 | +| time-step | 199 | +| y_out | 0.0256 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.070659146 | +| time-step | 200 | +| y_out | 0.00947 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint 200 +------------------------------------------------------------ +| perf/mse | 0.066339575 | +| time-step | 201 | +| y_out | 0.0186 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0688318 | +| time-step | 202 | +| y_out | -0.0365 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06774326 | +| time-step | 203 | +| y_out | -0.0144 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06734158 | +| time-step | 204 | +| y_out | 0.0731 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06919502 | +| time-step | 205 | +| y_out | -0.0726 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07262932 | +| time-step | 206 | +| y_out | -0.0551 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07139654 | +| time-step | 207 | +| y_out | -0.0569 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07193249 | +| time-step | 208 | +| y_out | -0.0411 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0712597 | +| time-step | 209 | +| y_out | 0.13 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07278111 | +| time-step | 210 | +| y_out | -0.036 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.073609285 | +| time-step | 211 | +| y_out | -0.102 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07077061 | +| time-step | 212 | +| y_out | -0.0259 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07455244 | +| time-step | 213 | +| y_out | 0.00398 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07383256 | +| time-step | 214 | +| y_out | 0.0402 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07556737 | +| time-step | 215 | +| y_out | -0.0695 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07411288 | +| time-step | 216 | +| y_out | -0.0859 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07299921 | +| time-step | 217 | +| y_out | -0.0889 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07033751 | +| time-step | 218 | +| y_out | -0.00653 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07161388 | +| time-step | 219 | +| y_out | -0.0263 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.068507046 | +| time-step | 220 | +| y_out | 0.00187 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07103853 | +| time-step | 221 | +| y_out | 0.0216 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07235795 | +| time-step | 222 | +| y_out | 0.0768 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06829778 | +| time-step | 223 | +| y_out | -0.0146 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06932568 | +| time-step | 224 | +| y_out | -0.101 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.067998655 | +| time-step | 225 | +| y_out | 0.0729 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06521767 | +| time-step | 226 | +| y_out | 0.0368 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06395949 | +| time-step | 227 | +| y_out | 0.0319 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.065621085 | +| time-step | 228 | +| y_out | 0.118 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.063318364 | +| time-step | 229 | +| y_out | -0.0347 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06854433 | +| time-step | 230 | +| y_out | -0.0651 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06686604 | +| time-step | 231 | +| y_out | -0.0858 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06609942 | +| time-step | 232 | +| y_out | -0.0199 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.067278266 | +| time-step | 233 | +| y_out | -0.0539 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06675903 | +| time-step | 234 | +| y_out | -0.0116 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06772205 | +| time-step | 235 | +| y_out | -0.0356 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07046996 | +| time-step | 236 | +| y_out | 0.0635 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07163824 | +| time-step | 237 | +| y_out | -0.0102 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.072859146 | +| time-step | 238 | +| y_out | 0.0101 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.075486556 | +| time-step | 239 | +| y_out | 0.054 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07305653 | +| time-step | 240 | +| y_out | 0.0395 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0736026 | +| time-step | 241 | +| y_out | 0.0439 | +---------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0765899 | +| time-step | 242 | +| y_out | 0.0296 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.078019395 | +| time-step | 243 | +| y_out | -0.0235 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07583042 | +| time-step | 244 | +| y_out | 0.068 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07330941 | +| time-step | 245 | +| y_out | 0.0146 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07313369 | +| time-step | 246 | +| y_out | -0.0334 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07583009 | +| time-step | 247 | +| y_out | 0.0507 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07508434 | +| time-step | 248 | +| y_out | 0.129 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07270874 | +| time-step | 249 | +| y_out | 0.0809 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07287582 | +| time-step | 250 | +| y_out | 0.0678 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07310078 | +| time-step | 251 | +| y_out | 0.0395 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07047896 | +| time-step | 252 | +| y_out | 0.0997 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.068328634 | +| time-step | 253 | +| y_out | -0.0101 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0712144 | +| time-step | 254 | +| y_out | 0.0344 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07390735 | +| time-step | 255 | +| y_out | -0.0288 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07300605 | +| time-step | 256 | +| y_out | 0.0205 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07213883 | +| time-step | 257 | +| y_out | 0.0732 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0714982 | +| time-step | 258 | +| y_out | 0.0955 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06990965 | +| time-step | 259 | +| y_out | -0.00153 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06994686 | +| time-step | 260 | +| y_out | -0.0676 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06896425 | +| time-step | 261 | +| y_out | 0.0343 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06738427 | +| time-step | 262 | +| y_out | 0.0586 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06569174 | +| time-step | 263 | +| y_out | -0.0664 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.062795445 | +| time-step | 264 | +| y_out | -0.121 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06213799 | +| time-step | 265 | +| y_out | -0.0332 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06258695 | +| time-step | 266 | +| y_out | -0.0204 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.059867553 | +| time-step | 267 | +| y_out | -0.141 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.062483363 | +| time-step | 268 | +| y_out | -0.0263 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06525875 | +| time-step | 269 | +| y_out | 0.146 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.064568534 | +| time-step | 270 | +| y_out | 0.00328 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.064529285 | +| time-step | 271 | +| y_out | -0.0416 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06593606 | +| time-step | 272 | +| y_out | -0.0559 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.069381185 | +| time-step | 273 | +| y_out | 0.123 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.070490465 | +| time-step | 274 | +| y_out | 0.12 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06832643 | +| time-step | 275 | +| y_out | 0.0563 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06861231 | +| time-step | 276 | +| y_out | -0.0026 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06918214 | +| time-step | 277 | +| y_out | -0.00258 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06731231 | +| time-step | 278 | +| y_out | 0.0572 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06561977 | +| time-step | 279 | +| y_out | 0.0937 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06458853 | +| time-step | 280 | +| y_out | 0.0662 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.063012086 | +| time-step | 281 | +| y_out | 0.0796 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.061319232 | +| time-step | 282 | +| y_out | 0.015 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.059950896 | +| time-step | 283 | +| y_out | 0.072 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.060632158 | +| time-step | 284 | +| y_out | -0.0569 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.063623376 | +| time-step | 285 | +| y_out | 0.0925 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06250887 | +| time-step | 286 | +| y_out | 0.0206 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0653263 | +| time-step | 287 | +| y_out | -0.0156 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06339609 | +| time-step | 288 | +| y_out | 0.0196 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06357501 | +| time-step | 289 | +| y_out | 0.0795 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06568088 | +| time-step | 290 | +| y_out | 0.0329 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06486209 | +| time-step | 291 | +| y_out | -0.013 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.066144176 | +| time-step | 292 | +| y_out | -0.122 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06583441 | +| time-step | 293 | +| y_out | -0.0591 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06567614 | +| time-step | 294 | +| y_out | 0.0184 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.062682025 | +| time-step | 295 | +| y_out | 0.0398 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.062473517 | +| time-step | 296 | +| y_out | 0.127 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.060914338 | +| time-step | 297 | +| y_out | -0.106 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06190338 | +| time-step | 298 | +| y_out | 0.0476 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06371783 | +| time-step | 299 | +| y_out | -0.0939 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.060892522 | +| time-step | 300 | +| y_out | -0.0253 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint 300 +------------------------------------------------------------ +| perf/mse | 0.061561406 | +| time-step | 301 | +| y_out | -0.0156 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05978496 | +| time-step | 302 | +| y_out | 0.0918 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.058757592 | +| time-step | 303 | +| y_out | -0.0838 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05701039 | +| time-step | 304 | +| y_out | -0.00366 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.058056284 | +| time-step | 305 | +| y_out | 0.105 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05757015 | +| time-step | 306 | +| y_out | -0.0512 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.056466363 | +| time-step | 307 | +| y_out | -0.00967 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.057786595 | +| time-step | 308 | +| y_out | -0.109 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.056100674 | +| time-step | 309 | +| y_out | -0.0396 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.055892337 | +| time-step | 310 | +| y_out | 0.0777 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.056663238 | +| time-step | 311 | +| y_out | -0.0471 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05775717 | +| time-step | 312 | +| y_out | 0.038 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05662114 | +| time-step | 313 | +| y_out | -0.000669 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05946677 | +| time-step | 314 | +| y_out | 0.0189 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05735783 | +| time-step | 315 | +| y_out | -0.0556 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.058225967 | +| time-step | 316 | +| y_out | -0.0532 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.059217285 | +| time-step | 317 | +| y_out | -0.177 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05691106 | +| time-step | 318 | +| y_out | 0.0787 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.057017483 | +| time-step | 319 | +| y_out | -0.0396 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.059242982 | +| time-step | 320 | +| y_out | 0.0429 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05944742 | +| time-step | 321 | +| y_out | 0.0364 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.061292928 | +| time-step | 322 | +| y_out | -0.0288 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06390854 | +| time-step | 323 | +| y_out | 0.162 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.061706442 | +| time-step | 324 | +| y_out | 0.0108 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.063138455 | +| time-step | 325 | +| y_out | -0.0383 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.062838145 | +| time-step | 326 | +| y_out | -0.00194 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06128608 | +| time-step | 327 | +| y_out | 0.00518 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.060820688 | +| time-step | 328 | +| y_out | 0.0311 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05965125 | +| time-step | 329 | +| y_out | 0.0881 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.057916872 | +| time-step | 330 | +| y_out | 0.0465 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.058904983 | +| time-step | 331 | +| y_out | 0.0514 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.057457566 | +| time-step | 332 | +| y_out | -0.0436 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.058152925 | +| time-step | 333 | +| y_out | -0.0629 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05647705 | +| time-step | 334 | +| y_out | -0.0741 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05727185 | +| time-step | 335 | +| y_out | -0.043 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.056803744 | +| time-step | 336 | +| y_out | 0.0188 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05602798 | +| time-step | 337 | +| y_out | -0.0476 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.058072366 | +| time-step | 338 | +| y_out | 0.065 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.060007293 | +| time-step | 339 | +| y_out | -0.015 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.060237087 | +| time-step | 340 | +| y_out | 0.0302 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.060214512 | +| time-step | 341 | +| y_out | 0.163 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.058044933 | +| time-step | 342 | +| y_out | -0.0272 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05564768 | +| time-step | 343 | +| y_out | 0.0726 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.056173064 | +| time-step | 344 | +| y_out | -0.0447 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05405266 | +| time-step | 345 | +| y_out | -0.173 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.053636093 | +| time-step | 346 | +| y_out | -0.0615 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05649879 | +| time-step | 347 | +| y_out | 0.0727 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.053624135 | +| time-step | 348 | +| y_out | 0.0927 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.052668493 | +| time-step | 349 | +| y_out | -0.0842 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.054834854 | +| time-step | 350 | +| y_out | 0.103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.054926433 | +| time-step | 351 | +| y_out | 0.119 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.055627823 | +| time-step | 352 | +| y_out | -0.206 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.055149816 | +| time-step | 353 | +| y_out | 0.109 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.055934835 | +| time-step | 354 | +| y_out | -0.0192 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.056229435 | +| time-step | 355 | +| y_out | 0.0897 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05643161 | +| time-step | 356 | +| y_out | 0.0995 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.054255534 | +| time-step | 357 | +| y_out | 0.00171 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05489844 | +| time-step | 358 | +| y_out | 0.0214 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.055008076 | +| time-step | 359 | +| y_out | 0.0315 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.052582312 | +| time-step | 360 | +| y_out | 0.0174 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.051539678 | +| time-step | 361 | +| y_out | 0.0424 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05143289 | +| time-step | 362 | +| y_out | -0.0295 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.051551152 | +| time-step | 363 | +| y_out | -0.0789 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.051219992 | +| time-step | 364 | +| y_out | -0.063 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.053554337 | +| time-step | 365 | +| y_out | 0.121 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05462113 | +| time-step | 366 | +| y_out | 0.0401 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05408623 | +| time-step | 367 | +| y_out | -0.0178 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05427552 | +| time-step | 368 | +| y_out | -0.0197 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.052317858 | +| time-step | 369 | +| y_out | -0.0143 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050932724 | +| time-step | 370 | +| y_out | 0.0134 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050129782 | +| time-step | 371 | +| y_out | -0.0464 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.052606583 | +| time-step | 372 | +| y_out | -0.0506 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.053700425 | +| time-step | 373 | +| y_out | 0.0201 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.053138226 | +| time-step | 374 | +| y_out | -0.000939 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04954926 | +| time-step | 375 | +| y_out | 0.118 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04844753 | +| time-step | 376 | +| y_out | -0.0964 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.047648974 | +| time-step | 377 | +| y_out | -0.0457 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047716357 | +| time-step | 378 | +| y_out | 0.0286 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047496177 | +| time-step | 379 | +| y_out | -0.00471 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.049459416 | +| time-step | 380 | +| y_out | -0.0768 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05048915 | +| time-step | 381 | +| y_out | 0.127 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.048765484 | +| time-step | 382 | +| y_out | 0.0225 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.048090927 | +| time-step | 383 | +| y_out | -0.0885 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.049119245 | +| time-step | 384 | +| y_out | 0.0405 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050285257 | +| time-step | 385 | +| y_out | 0.00977 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04998021 | +| time-step | 386 | +| y_out | 0.0622 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.051143028 | +| time-step | 387 | +| y_out | -0.00915 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050728135 | +| time-step | 388 | +| y_out | 0.0286 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05251382 | +| time-step | 389 | +| y_out | -0.00823 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.051797282 | +| time-step | 390 | +| y_out | -0.0732 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0528268 | +| time-step | 391 | +| y_out | 0.0221 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.051988743 | +| time-step | 392 | +| y_out | 0.0759 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05017187 | +| time-step | 393 | +| y_out | -0.00241 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0493968 | +| time-step | 394 | +| y_out | 0.0433 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.048933208 | +| time-step | 395 | +| y_out | 0.00741 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.049795378 | +| time-step | 396 | +| y_out | -0.0133 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05128135 | +| time-step | 397 | +| y_out | -0.0568 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.049810044 | +| time-step | 398 | +| y_out | 0.172 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050452936 | +| time-step | 399 | +| y_out | -0.0236 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.051612623 | +| time-step | 400 | +| y_out | 0.00315 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint 400 +------------------------------------------------------------ +| perf/mse | 0.049298503 | +| time-step | 401 | +| y_out | -0.0815 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04917501 | +| time-step | 402 | +| y_out | -0.00737 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.050548345 | +| time-step | 403 | +| y_out | -0.105 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05184231 | +| time-step | 404 | +| y_out | -0.0992 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.051629175 | +| time-step | 405 | +| y_out | 0.0327 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050516494 | +| time-step | 406 | +| y_out | -0.099 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04838071 | +| time-step | 407 | +| y_out | 0.0216 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.049961284 | +| time-step | 408 | +| y_out | 0.162 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04932687 | +| time-step | 409 | +| y_out | 0.0375 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04691658 | +| time-step | 410 | +| y_out | 0.0337 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04760117 | +| time-step | 411 | +| y_out | 0.113 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04678657 | +| time-step | 412 | +| y_out | 0.0494 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04491849 | +| time-step | 413 | +| y_out | -0.133 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.042869948 | +| time-step | 414 | +| y_out | -0.101 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04428022 | +| time-step | 415 | +| y_out | 0.0261 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04513421 | +| time-step | 416 | +| y_out | 0.0331 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04536701 | +| time-step | 417 | +| y_out | 0.0109 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.045004413 | +| time-step | 418 | +| y_out | -0.0477 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04228895 | +| time-step | 419 | +| y_out | -0.0488 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04272204 | +| time-step | 420 | +| y_out | -0.206 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04088345 | +| time-step | 421 | +| y_out | 0.032 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.042330705 | +| time-step | 422 | +| y_out | -0.0214 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0448047 | +| time-step | 423 | +| y_out | 0.0421 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04717904 | +| time-step | 424 | +| y_out | 0.00916 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04613499 | +| time-step | 425 | +| y_out | -0.0104 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0451278 | +| time-step | 426 | +| y_out | 0.0292 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.045091845 | +| time-step | 427 | +| y_out | -0.0652 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047298737 | +| time-step | 428 | +| y_out | -0.092 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.048587345 | +| time-step | 429 | +| y_out | 0.0756 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04786981 | +| time-step | 430 | +| y_out | -0.0936 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.046995595 | +| time-step | 431 | +| y_out | 0.0636 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04719137 | +| time-step | 432 | +| y_out | 0.157 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04599424 | +| time-step | 433 | +| y_out | 0.0661 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.044415057 | +| time-step | 434 | +| y_out | -0.0576 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.044502713 | +| time-step | 435 | +| y_out | 0.0653 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0450804 | +| time-step | 436 | +| y_out | -0.0376 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04378108 | +| time-step | 437 | +| y_out | -0.0145 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.042750355 | +| time-step | 438 | +| y_out | 0.00341 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041916072 | +| time-step | 439 | +| y_out | -0.0945 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041096076 | +| time-step | 440 | +| y_out | 0.0314 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04207965 | +| time-step | 441 | +| y_out | -0.0212 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04124843 | +| time-step | 442 | +| y_out | -0.0166 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04065743 | +| time-step | 443 | +| y_out | 0.00908 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04054389 | +| time-step | 444 | +| y_out | -0.0226 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04050336 | +| time-step | 445 | +| y_out | 0.0884 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.039309554 | +| time-step | 446 | +| y_out | 0.0395 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041436084 | +| time-step | 447 | +| y_out | 0.0281 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039484333 | +| time-step | 448 | +| y_out | -0.0726 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04045566 | +| time-step | 449 | +| y_out | -0.0639 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.041988704 | +| time-step | 450 | +| y_out | 0.0996 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043819435 | +| time-step | 451 | +| y_out | 0.142 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045196947 | +| time-step | 452 | +| y_out | -0.0309 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.046382874 | +| time-step | 453 | +| y_out | 0.112 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045947142 | +| time-step | 454 | +| y_out | -5.64e-05 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045975145 | +| time-step | 455 | +| y_out | 0.00517 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04711535 | +| time-step | 456 | +| y_out | 0.0274 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.046774935 | +| time-step | 457 | +| y_out | -0.124 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04663525 | +| time-step | 458 | +| y_out | 0.0198 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04687738 | +| time-step | 459 | +| y_out | 0.00411 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.046076596 | +| time-step | 460 | +| y_out | 0.0193 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04469601 | +| time-step | 461 | +| y_out | -0.0325 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.043347925 | +| time-step | 462 | +| y_out | 0.101 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.042185884 | +| time-step | 463 | +| y_out | -0.0211 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041989654 | +| time-step | 464 | +| y_out | -0.0237 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.042105682 | +| time-step | 465 | +| y_out | 0.0226 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040245485 | +| time-step | 466 | +| y_out | -0.0359 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039194096 | +| time-step | 467 | +| y_out | -0.0236 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039975733 | +| time-step | 468 | +| y_out | -0.0261 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038464148 | +| time-step | 469 | +| y_out | 0.0744 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038968343 | +| time-step | 470 | +| y_out | 0.0589 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03878829 | +| time-step | 471 | +| y_out | -0.078 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.039112873 | +| time-step | 472 | +| y_out | 0.0266 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03935024 | +| time-step | 473 | +| y_out | -0.0559 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0407045 | +| time-step | 474 | +| y_out | 0.0479 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04014684 | +| time-step | 475 | +| y_out | -0.0073 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04010058 | +| time-step | 476 | +| y_out | -0.061 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.040465403 | +| time-step | 477 | +| y_out | 0.0758 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040812254 | +| time-step | 478 | +| y_out | -0.0687 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040099453 | +| time-step | 479 | +| y_out | -0.0585 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04009784 | +| time-step | 480 | +| y_out | -0.105 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.040263597 | +| time-step | 481 | +| y_out | -0.0528 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040755503 | +| time-step | 482 | +| y_out | 0.0978 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040466808 | +| time-step | 483 | +| y_out | 0.0249 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039717473 | +| time-step | 484 | +| y_out | 0.0131 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04026102 | +| time-step | 485 | +| y_out | 0.167 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.041761823 | +| time-step | 486 | +| y_out | -0.0314 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.042971868 | +| time-step | 487 | +| y_out | -0.176 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.042814843 | +| time-step | 488 | +| y_out | -0.0925 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04446888 | +| time-step | 489 | +| y_out | -0.0604 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.045741346 | +| time-step | 490 | +| y_out | -0.155 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045773074 | +| time-step | 491 | +| y_out | -0.1 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04578921 | +| time-step | 492 | +| y_out | 0.0311 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04678817 | +| time-step | 493 | +| y_out | 0.083 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.047098078 | +| time-step | 494 | +| y_out | -0.0127 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.046221964 | +| time-step | 495 | +| y_out | 0.0307 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.046291053 | +| time-step | 496 | +| y_out | -0.106 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.044057168 | +| time-step | 497 | +| y_out | 0.0425 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.044664633 | +| time-step | 498 | +| y_out | -0.107 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045550805 | +| time-step | 499 | +| y_out | -0.0175 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043581955 | +| time-step | 500 | +| y_out | 0.016 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint 500 +---------------------------------------------------------- +| perf/mse | 0.0433195 | +| time-step | 501 | +| y_out | -0.0539 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.043495655 | +| time-step | 502 | +| y_out | 0.0775 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043606438 | +| time-step | 503 | +| y_out | -0.0818 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0419158 | +| time-step | 504 | +| y_out | 0.0413 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.042762235 | +| time-step | 505 | +| y_out | -0.0734 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04218278 | +| time-step | 506 | +| y_out | 0.0339 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04287967 | +| time-step | 507 | +| y_out | 0.0724 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0417406 | +| time-step | 508 | +| y_out | 0.0412 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.040139075 | +| time-step | 509 | +| y_out | -0.0413 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041674577 | +| time-step | 510 | +| y_out | -0.0385 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04270089 | +| time-step | 511 | +| y_out | -0.0657 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.041781474 | +| time-step | 512 | +| y_out | 0.0757 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041109428 | +| time-step | 513 | +| y_out | -0.0585 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04133248 | +| time-step | 514 | +| y_out | -0.141 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04113532 | +| time-step | 515 | +| y_out | 0.00362 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04176956 | +| time-step | 516 | +| y_out | 0.0542 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.040870108 | +| time-step | 517 | +| y_out | -0.0301 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.042523883 | +| time-step | 518 | +| y_out | 0.124 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.042741444 | +| time-step | 519 | +| y_out | 0.0612 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0416047 | +| time-step | 520 | +| y_out | -0.0764 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.040262688 | +| time-step | 521 | +| y_out | -0.0142 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041239403 | +| time-step | 522 | +| y_out | -0.0748 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041240614 | +| time-step | 523 | +| y_out | -0.00354 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.042331543 | +| time-step | 524 | +| y_out | 0.0199 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04086683 | +| time-step | 525 | +| y_out | -0.0124 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.039828677 | +| time-step | 526 | +| y_out | 0.0876 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039771628 | +| time-step | 527 | +| y_out | -0.0468 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038845032 | +| time-step | 528 | +| y_out | -0.0454 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040037535 | +| time-step | 529 | +| y_out | 0.0757 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04109566 | +| time-step | 530 | +| y_out | 0.0987 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.040208463 | +| time-step | 531 | +| y_out | 0.0253 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039192673 | +| time-step | 532 | +| y_out | -0.0193 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039382868 | +| time-step | 533 | +| y_out | -0.0567 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039696056 | +| time-step | 534 | +| y_out | -0.0118 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040804677 | +| time-step | 535 | +| y_out | -0.0303 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04089757 | +| time-step | 536 | +| y_out | -0.026 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04123577 | +| time-step | 537 | +| y_out | 0.00811 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.040962234 | +| time-step | 538 | +| y_out | -0.0729 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0419768 | +| time-step | 539 | +| y_out | 0.0183 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03992503 | +| time-step | 540 | +| y_out | -0.0245 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.041555304 | +| time-step | 541 | +| y_out | -0.0704 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04217988 | +| time-step | 542 | +| y_out | -0.0395 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04279113 | +| time-step | 543 | +| y_out | -0.0782 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.041717317 | +| time-step | 544 | +| y_out | -0.0516 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041593306 | +| time-step | 545 | +| y_out | 0.0356 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040710445 | +| time-step | 546 | +| y_out | -0.0156 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041528393 | +| time-step | 547 | +| y_out | 0.0811 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04133732 | +| time-step | 548 | +| y_out | -0.139 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03972288 | +| time-step | 549 | +| y_out | 0.0141 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.043103877 | +| time-step | 550 | +| y_out | 0.0483 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04295221 | +| time-step | 551 | +| y_out | 0.144 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.041297276 | +| time-step | 552 | +| y_out | 0.075 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040485527 | +| time-step | 553 | +| y_out | 0.0263 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040230997 | +| time-step | 554 | +| y_out | -0.04 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039685823 | +| time-step | 555 | +| y_out | 0.0929 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04062644 | +| time-step | 556 | +| y_out | 0.0698 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03977953 | +| time-step | 557 | +| y_out | 0.111 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.039497703 | +| time-step | 558 | +| y_out | -0.0431 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039897688 | +| time-step | 559 | +| y_out | -0.0915 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03709321 | +| time-step | 560 | +| y_out | -0.0733 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.036519706 | +| time-step | 561 | +| y_out | -0.0789 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038696013 | +| time-step | 562 | +| y_out | 0.117 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03883735 | +| time-step | 563 | +| y_out | 0.0783 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03916894 | +| time-step | 564 | +| y_out | 0.116 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03973155 | +| time-step | 565 | +| y_out | -0.0242 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.041335262 | +| time-step | 566 | +| y_out | 0.147 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041378096 | +| time-step | 567 | +| y_out | 0.0208 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0416981 | +| time-step | 568 | +| y_out | 0.131 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.043603305 | +| time-step | 569 | +| y_out | -0.106 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.044673316 | +| time-step | 570 | +| y_out | 0.0356 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04417503 | +| time-step | 571 | +| y_out | 0.0524 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.042526834 | +| time-step | 572 | +| y_out | 0.00476 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04173949 | +| time-step | 573 | +| y_out | 0.0393 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.041181777 | +| time-step | 574 | +| y_out | 0.0579 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04162394 | +| time-step | 575 | +| y_out | -0.0316 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.040213548 | +| time-step | 576 | +| y_out | 0.0637 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04056842 | +| time-step | 577 | +| y_out | 0.00894 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.041636225 | +| time-step | 578 | +| y_out | -0.0247 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038060185 | +| time-step | 579 | +| y_out | 0.0615 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037322216 | +| time-step | 580 | +| y_out | -0.00985 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037494082 | +| time-step | 581 | +| y_out | 0.00326 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03757308 | +| time-step | 582 | +| y_out | -0.0333 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.038125496 | +| time-step | 583 | +| y_out | -0.038 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038185593 | +| time-step | 584 | +| y_out | -0.0036 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037031632 | +| time-step | 585 | +| y_out | 0.0674 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03636884 | +| time-step | 586 | +| y_out | -0.0126 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.036718212 | +| time-step | 587 | +| y_out | -0.0889 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035738792 | +| time-step | 588 | +| y_out | 0.0737 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03630426 | +| time-step | 589 | +| y_out | -0.0699 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03629414 | +| time-step | 590 | +| y_out | -0.0244 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03701472 | +| time-step | 591 | +| y_out | -0.0592 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.036893435 | +| time-step | 592 | +| y_out | 0.0298 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03701152 | +| time-step | 593 | +| y_out | -0.0296 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037567534 | +| time-step | 594 | +| y_out | 0.0333 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03869937 | +| time-step | 595 | +| y_out | 0.054 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.040331863 | +| time-step | 596 | +| y_out | -0.095 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03968043 | +| time-step | 597 | +| y_out | -0.0178 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.038565416 | +| time-step | 598 | +| y_out | 0.106 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03983199 | +| time-step | 599 | +| y_out | -0.0518 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.040780813 | +| time-step | 600 | +| y_out | 0.163 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint 600 +----------------------------------------------------------- +| perf/mse | 0.04040748 | +| time-step | 601 | +| y_out | -0.0434 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.039763443 | +| time-step | 602 | +| y_out | 0.11 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040080987 | +| time-step | 603 | +| y_out | -0.0373 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039690845 | +| time-step | 604 | +| y_out | 0.0147 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038111765 | +| time-step | 605 | +| y_out | -0.0195 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036243714 | +| time-step | 606 | +| y_out | 0.0947 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03605535 | +| time-step | 607 | +| y_out | 0.0687 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037156858 | +| time-step | 608 | +| y_out | 0.0169 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03555821 | +| time-step | 609 | +| y_out | -0.00921 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035048187 | +| time-step | 610 | +| y_out | 0.00486 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034824394 | +| time-step | 611 | +| y_out | 0.0217 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035158224 | +| time-step | 612 | +| y_out | 0.0197 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034627605 | +| time-step | 613 | +| y_out | 0.00414 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036983654 | +| time-step | 614 | +| y_out | -0.111 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038132165 | +| time-step | 615 | +| y_out | 0.0494 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03982105 | +| time-step | 616 | +| y_out | -0.0528 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03999034 | +| time-step | 617 | +| y_out | 0.112 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.039819263 | +| time-step | 618 | +| y_out | 0.0283 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040619727 | +| time-step | 619 | +| y_out | 0.0497 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040472355 | +| time-step | 620 | +| y_out | 0.0712 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03979265 | +| time-step | 621 | +| y_out | -0.0643 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03958496 | +| time-step | 622 | +| y_out | -0.0376 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.041450303 | +| time-step | 623 | +| y_out | 0.0885 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03933242 | +| time-step | 624 | +| y_out | 0.108 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.039508883 | +| time-step | 625 | +| y_out | 0.0362 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037417866 | +| time-step | 626 | +| y_out | 0.0181 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03711041 | +| time-step | 627 | +| y_out | -0.00268 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037317857 | +| time-step | 628 | +| y_out | -0.00291 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0383118 | +| time-step | 629 | +| y_out | -0.0435 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037956122 | +| time-step | 630 | +| y_out | -0.0328 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038879532 | +| time-step | 631 | +| y_out | 0.0857 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03920067 | +| time-step | 632 | +| y_out | 0.0979 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.038225017 | +| time-step | 633 | +| y_out | 0.0652 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037791915 | +| time-step | 634 | +| y_out | -0.003 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037692644 | +| time-step | 635 | +| y_out | -0.0781 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03763432 | +| time-step | 636 | +| y_out | 0.0707 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037584264 | +| time-step | 637 | +| y_out | -0.0472 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036727577 | +| time-step | 638 | +| y_out | 0.00734 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03474323 | +| time-step | 639 | +| y_out | -0.111 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034990508 | +| time-step | 640 | +| y_out | -0.0782 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035130512 | +| time-step | 641 | +| y_out | 0.0261 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035033457 | +| time-step | 642 | +| y_out | -0.0644 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034520645 | +| time-step | 643 | +| y_out | 0.0249 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034130104 | +| time-step | 644 | +| y_out | -0.0691 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033446677 | +| time-step | 645 | +| y_out | 0.0629 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034531206 | +| time-step | 646 | +| y_out | -0.0221 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035306662 | +| time-step | 647 | +| y_out | -0.0768 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03565969 | +| time-step | 648 | +| y_out | -0.0286 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035442043 | +| time-step | 649 | +| y_out | 0.0749 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035059936 | +| time-step | 650 | +| y_out | -0.0146 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034617852 | +| time-step | 651 | +| y_out | 0.0715 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033822127 | +| time-step | 652 | +| y_out | -0.0111 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032898072 | +| time-step | 653 | +| y_out | 0.0236 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033201367 | +| time-step | 654 | +| y_out | 0.125 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033928987 | +| time-step | 655 | +| y_out | -0.0798 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03349203 | +| time-step | 656 | +| y_out | -0.00448 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.032486964 | +| time-step | 657 | +| y_out | 0.111 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031624325 | +| time-step | 658 | +| y_out | 0.0595 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033516604 | +| time-step | 659 | +| y_out | 0.0642 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03387384 | +| time-step | 660 | +| y_out | -0.0176 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03485232 | +| time-step | 661 | +| y_out | -0.0974 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.036046077 | +| time-step | 662 | +| y_out | 0.0135 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03621802 | +| time-step | 663 | +| y_out | -0.0573 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035767984 | +| time-step | 664 | +| y_out | -0.102 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0345046 | +| time-step | 665 | +| y_out | 0.0752 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034522187 | +| time-step | 666 | +| y_out | 0.00163 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036395587 | +| time-step | 667 | +| y_out | 0.04 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037666894 | +| time-step | 668 | +| y_out | 0.0146 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0355506 | +| time-step | 669 | +| y_out | 0.0179 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034635972 | +| time-step | 670 | +| y_out | 0.00883 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03435846 | +| time-step | 671 | +| y_out | -0.0762 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034817446 | +| time-step | 672 | +| y_out | -0.0712 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034293998 | +| time-step | 673 | +| y_out | 0.0252 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03492614 | +| time-step | 674 | +| y_out | 0.0816 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035841107 | +| time-step | 675 | +| y_out | -0.167 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036643483 | +| time-step | 676 | +| y_out | 0.0915 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035110187 | +| time-step | 677 | +| y_out | 0.0336 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034637656 | +| time-step | 678 | +| y_out | 0.00567 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034472078 | +| time-step | 679 | +| y_out | 0.0149 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034322552 | +| time-step | 680 | +| y_out | 0.0319 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033315394 | +| time-step | 681 | +| y_out | 0.0619 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031849127 | +| time-step | 682 | +| y_out | -0.034 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032420613 | +| time-step | 683 | +| y_out | 0.0341 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031600617 | +| time-step | 684 | +| y_out | -0.0433 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031020794 | +| time-step | 685 | +| y_out | -0.0167 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029522315 | +| time-step | 686 | +| y_out | 0.103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030101735 | +| time-step | 687 | +| y_out | 0.0171 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029611489 | +| time-step | 688 | +| y_out | 0.035 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030553326 | +| time-step | 689 | +| y_out | 0.072 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031130135 | +| time-step | 690 | +| y_out | 0.0693 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031407844 | +| time-step | 691 | +| y_out | -0.0939 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033279028 | +| time-step | 692 | +| y_out | -0.109 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033729516 | +| time-step | 693 | +| y_out | 0.0145 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033430513 | +| time-step | 694 | +| y_out | 0.0954 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034287043 | +| time-step | 695 | +| y_out | 0.102 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034985255 | +| time-step | 696 | +| y_out | 0.113 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03490349 | +| time-step | 697 | +| y_out | -0.0601 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034853287 | +| time-step | 698 | +| y_out | -0.141 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034514718 | +| time-step | 699 | +| y_out | 0.00826 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03458406 | +| time-step | 700 | +| y_out | -0.00751 | +----------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint 700 +------------------------------------------------------------ +| perf/mse | 0.033880405 | +| time-step | 701 | +| y_out | -0.0406 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03241182 | +| time-step | 702 | +| y_out | 0.0285 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.030682286 | +| time-step | 703 | +| y_out | -0.0627 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031068558 | +| time-step | 704 | +| y_out | 0.0351 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030623829 | +| time-step | 705 | +| y_out | 0.0698 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030694833 | +| time-step | 706 | +| y_out | 0.0778 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031009803 | +| time-step | 707 | +| y_out | 0.0685 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03075462 | +| time-step | 708 | +| y_out | -0.00235 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031132001 | +| time-step | 709 | +| y_out | -0.04 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032163657 | +| time-step | 710 | +| y_out | -0.00144 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031868786 | +| time-step | 711 | +| y_out | -0.0717 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031574074 | +| time-step | 712 | +| y_out | -0.0264 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03337201 | +| time-step | 713 | +| y_out | 0.0215 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.033705104 | +| time-step | 714 | +| y_out | -0.0207 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033566993 | +| time-step | 715 | +| y_out | -0.0749 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033646517 | +| time-step | 716 | +| y_out | -0.0401 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033064827 | +| time-step | 717 | +| y_out | -0.0377 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032034695 | +| time-step | 718 | +| y_out | 0.0351 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031348057 | +| time-step | 719 | +| y_out | 0.0401 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030188825 | +| time-step | 720 | +| y_out | -0.0856 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030938143 | +| time-step | 721 | +| y_out | -0.0408 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031626992 | +| time-step | 722 | +| y_out | -0.0702 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03152649 | +| time-step | 723 | +| y_out | 0.0833 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03144444 | +| time-step | 724 | +| y_out | -0.0535 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03161285 | +| time-step | 725 | +| y_out | -0.0357 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03192906 | +| time-step | 726 | +| y_out | 0.0422 | +----------------------------------------------------------- +--------------------------------------------------------- +| perf/mse | 0.031762 | +| time-step | 727 | +| y_out | -0.074 | +--------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03284171 | +| time-step | 728 | +| y_out | -0.0334 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03496663 | +| time-step | 729 | +| y_out | 0.0321 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03502272 | +| time-step | 730 | +| y_out | -0.0666 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034854148 | +| time-step | 731 | +| y_out | 0.0921 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034256183 | +| time-step | 732 | +| y_out | -0.0104 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03399481 | +| time-step | 733 | +| y_out | 0.0709 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034413703 | +| time-step | 734 | +| y_out | -0.0454 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033731613 | +| time-step | 735 | +| y_out | -0.0567 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033232715 | +| time-step | 736 | +| y_out | 0.0943 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033324506 | +| time-step | 737 | +| y_out | -0.0534 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03399422 | +| time-step | 738 | +| y_out | -0.0444 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031683613 | +| time-step | 739 | +| y_out | -0.00581 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03147561 | +| time-step | 740 | +| y_out | -0.00476 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.033192992 | +| time-step | 741 | +| y_out | 0.0681 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033889122 | +| time-step | 742 | +| y_out | -0.128 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03453921 | +| time-step | 743 | +| y_out | 0.0614 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034295876 | +| time-step | 744 | +| y_out | -0.114 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03441958 | +| time-step | 745 | +| y_out | -0.0234 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034893565 | +| time-step | 746 | +| y_out | -0.00544 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035000503 | +| time-step | 747 | +| y_out | -0.0958 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034186408 | +| time-step | 748 | +| y_out | -0.0123 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03489658 | +| time-step | 749 | +| y_out | -0.194 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034544032 | +| time-step | 750 | +| y_out | 0.0714 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033502202 | +| time-step | 751 | +| y_out | 0.065 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033249952 | +| time-step | 752 | +| y_out | 0.0638 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032732934 | +| time-step | 753 | +| y_out | 0.00302 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032715775 | +| time-step | 754 | +| y_out | -0.03 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034088694 | +| time-step | 755 | +| y_out | 0.154 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034077838 | +| time-step | 756 | +| y_out | -0.00674 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03454442 | +| time-step | 757 | +| y_out | 0.04 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035190124 | +| time-step | 758 | +| y_out | 0.0838 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03517934 | +| time-step | 759 | +| y_out | -0.0254 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03540191 | +| time-step | 760 | +| y_out | 0.104 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0355314 | +| time-step | 761 | +| y_out | -0.0936 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035840582 | +| time-step | 762 | +| y_out | 0.0396 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035787575 | +| time-step | 763 | +| y_out | 0.0322 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035666965 | +| time-step | 764 | +| y_out | 0.00436 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03417643 | +| time-step | 765 | +| y_out | -0.0576 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.033591874 | +| time-step | 766 | +| y_out | -0.0522 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032676984 | +| time-step | 767 | +| y_out | -0.027 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033677064 | +| time-step | 768 | +| y_out | 0.0796 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03439086 | +| time-step | 769 | +| y_out | 0.0594 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034344353 | +| time-step | 770 | +| y_out | 0.0414 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03289576 | +| time-step | 771 | +| y_out | -0.0117 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.032238055 | +| time-step | 772 | +| y_out | -0.148 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032016914 | +| time-step | 773 | +| y_out | 0.0391 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032675076 | +| time-step | 774 | +| y_out | 0.0218 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032914568 | +| time-step | 775 | +| y_out | -0.0503 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03223046 | +| time-step | 776 | +| y_out | 0.0149 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031958494 | +| time-step | 777 | +| y_out | 0.0107 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03102837 | +| time-step | 778 | +| y_out | -0.0888 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.030204069 | +| time-step | 779 | +| y_out | 0.0867 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031328745 | +| time-step | 780 | +| y_out | 0.0751 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031813454 | +| time-step | 781 | +| y_out | 0.0828 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031569373 | +| time-step | 782 | +| y_out | 0.0166 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030353406 | +| time-step | 783 | +| y_out | 0.0582 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029569939 | +| time-step | 784 | +| y_out | -0.0847 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028947726 | +| time-step | 785 | +| y_out | -0.00751 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029482957 | +| time-step | 786 | +| y_out | 0.0227 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029256474 | +| time-step | 787 | +| y_out | -0.0829 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028287593 | +| time-step | 788 | +| y_out | 0.0452 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027608458 | +| time-step | 789 | +| y_out | 0.0493 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026024941 | +| time-step | 790 | +| y_out | 0.0735 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026200688 | +| time-step | 791 | +| y_out | -0.0822 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027343327 | +| time-step | 792 | +| y_out | 0.0103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028491667 | +| time-step | 793 | +| y_out | 0.0159 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028277855 | +| time-step | 794 | +| y_out | 0.0354 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028639372 | +| time-step | 795 | +| y_out | 0.071 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027921278 | +| time-step | 796 | +| y_out | -0.049 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02821945 | +| time-step | 797 | +| y_out | -0.0486 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02897954 | +| time-step | 798 | +| y_out | 0.0341 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.029815987 | +| time-step | 799 | +| y_out | -0.0627 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030650765 | +| time-step | 800 | +| y_out | 0.00245 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint 800 +------------------------------------------------------------ +| perf/mse | 0.029749114 | +| time-step | 801 | +| y_out | 0.0606 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030450022 | +| time-step | 802 | +| y_out | -0.0143 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029640784 | +| time-step | 803 | +| y_out | 0.0054 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029577825 | +| time-step | 804 | +| y_out | 0.14 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029527217 | +| time-step | 805 | +| y_out | 0.0279 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029465567 | +| time-step | 806 | +| y_out | 0.0478 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02942439 | +| time-step | 807 | +| y_out | 0.0227 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.029973114 | +| time-step | 808 | +| y_out | -0.0968 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02865826 | +| time-step | 809 | +| y_out | 0.103 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02827696 | +| time-step | 810 | +| y_out | 0.00753 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.029177418 | +| time-step | 811 | +| y_out | 0.0428 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027264377 | +| time-step | 812 | +| y_out | -0.0166 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02793624 | +| time-step | 813 | +| y_out | -0.107 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.028114026 | +| time-step | 814 | +| y_out | 0.0876 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028837245 | +| time-step | 815 | +| y_out | -0.0863 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029435512 | +| time-step | 816 | +| y_out | -0.0488 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02895026 | +| time-step | 817 | +| y_out | 0.0702 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.027444452 | +| time-step | 818 | +| y_out | 0.113 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02928554 | +| time-step | 819 | +| y_out | -0.0172 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02921555 | +| time-step | 820 | +| y_out | 0.172 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.029565636 | +| time-step | 821 | +| y_out | -0.00874 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030052274 | +| time-step | 822 | +| y_out | -0.0021 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030542308 | +| time-step | 823 | +| y_out | -0.0329 | +------------------------------------------------------------ +--------------------------------------------------------- +| perf/mse | 0.030573 | +| time-step | 824 | +| y_out | 0.0276 | +--------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.029855018 | +| time-step | 825 | +| y_out | 0.00139 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029474149 | +| time-step | 826 | +| y_out | -0.0141 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030186277 | +| time-step | 827 | +| y_out | 0.0737 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03139303 | +| time-step | 828 | +| y_out | 0.0197 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03030757 | +| time-step | 829 | +| y_out | -0.0406 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031952985 | +| time-step | 830 | +| y_out | -0.105 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0318633 | +| time-step | 831 | +| y_out | -0.04 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031874202 | +| time-step | 832 | +| y_out | 0.00901 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032290168 | +| time-step | 833 | +| y_out | -0.093 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031817093 | +| time-step | 834 | +| y_out | 0.0472 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031733997 | +| time-step | 835 | +| y_out | 0.0468 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03252268 | +| time-step | 836 | +| y_out | 0.0532 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.032422867 | +| time-step | 837 | +| y_out | 0.0573 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032111738 | +| time-step | 838 | +| y_out | -0.0552 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03298972 | +| time-step | 839 | +| y_out | 0.0844 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03135136 | +| time-step | 840 | +| y_out | -0.0525 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.030794963 | +| time-step | 841 | +| y_out | 0.0768 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030718062 | +| time-step | 842 | +| y_out | -0.0651 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029161686 | +| time-step | 843 | +| y_out | -0.0209 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030745342 | +| time-step | 844 | +| y_out | 0.0223 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031048447 | +| time-step | 845 | +| y_out | -0.0104 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030652534 | +| time-step | 846 | +| y_out | 0.076 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030912261 | +| time-step | 847 | +| y_out | -0.0457 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03114942 | +| time-step | 848 | +| y_out | -0.0474 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.030947322 | +| time-step | 849 | +| y_out | 0.0276 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031459086 | +| time-step | 850 | +| y_out | 0.0533 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03158531 | +| time-step | 851 | +| y_out | -0.126 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03080064 | +| time-step | 852 | +| y_out | -0.0452 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031007767 | +| time-step | 853 | +| y_out | 0.0355 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030812617 | +| time-step | 854 | +| y_out | 0.0452 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030408556 | +| time-step | 855 | +| y_out | 0.043 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031355392 | +| time-step | 856 | +| y_out | -0.0708 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030533958 | +| time-step | 857 | +| y_out | -0.0976 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029457297 | +| time-step | 858 | +| y_out | 0.193 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028317515 | +| time-step | 859 | +| y_out | 0.0419 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0276384 | +| time-step | 860 | +| y_out | -0.012 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02652489 | +| time-step | 861 | +| y_out | 0.0513 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.027203146 | +| time-step | 862 | +| y_out | -0.052 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02691786 | +| time-step | 863 | +| y_out | 0.0679 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026311576 | +| time-step | 864 | +| y_out | 0.143 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026107114 | +| time-step | 865 | +| y_out | 0.0747 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024599604 | +| time-step | 866 | +| y_out | 0.055 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02489976 | +| time-step | 867 | +| y_out | -0.105 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.025397714 | +| time-step | 868 | +| y_out | -0.117 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02566601 | +| time-step | 869 | +| y_out | -0.0137 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026150549 | +| time-step | 870 | +| y_out | 0.0308 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026716184 | +| time-step | 871 | +| y_out | -0.0314 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026029903 | +| time-step | 872 | +| y_out | 0.0212 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026441425 | +| time-step | 873 | +| y_out | -0.0552 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025501873 | +| time-step | 874 | +| y_out | -0.0837 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02523778 | +| time-step | 875 | +| y_out | -0.164 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.025822561 | +| time-step | 876 | +| y_out | -0.0131 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026206236 | +| time-step | 877 | +| y_out | -0.123 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02624933 | +| time-step | 878 | +| y_out | -0.165 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026718482 | +| time-step | 879 | +| y_out | 0.124 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025950437 | +| time-step | 880 | +| y_out | 0.00619 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026844483 | +| time-step | 881 | +| y_out | -0.0278 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026983282 | +| time-step | 882 | +| y_out | -0.0564 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02738451 | +| time-step | 883 | +| y_out | 0.00291 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.028599177 | +| time-step | 884 | +| y_out | 0.002 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029451102 | +| time-step | 885 | +| y_out | -0.0123 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028934142 | +| time-step | 886 | +| y_out | 0.0422 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028447041 | +| time-step | 887 | +| y_out | -0.161 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028218012 | +| time-step | 888 | +| y_out | 0.0181 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02758134 | +| time-step | 889 | +| y_out | -0.0215 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.027639583 | +| time-step | 890 | +| y_out | -0.0336 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027555833 | +| time-step | 891 | +| y_out | 0.0725 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028048292 | +| time-step | 892 | +| y_out | -0.0274 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027543291 | +| time-step | 893 | +| y_out | 0.00231 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027465697 | +| time-step | 894 | +| y_out | -0.126 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028316656 | +| time-step | 895 | +| y_out | -0.0814 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02879639 | +| time-step | 896 | +| y_out | -0.0564 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.028723842 | +| time-step | 897 | +| y_out | -0.048 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028936356 | +| time-step | 898 | +| y_out | 0.00986 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02920806 | +| time-step | 899 | +| y_out | -0.0288 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.028817976 | +| time-step | 900 | +| y_out | -0.0324 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/checkpoint 900 +------------------------------------------------------------ +| perf/mse | 0.028033573 | +| time-step | 901 | +| y_out | 0.0089 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02829403 | +| time-step | 902 | +| y_out | -0.0752 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.028730586 | +| time-step | 903 | +| y_out | 0.0131 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028063823 | +| time-step | 904 | +| y_out | 0.0935 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025938386 | +| time-step | 905 | +| y_out | -0.0405 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026119849 | +| time-step | 906 | +| y_out | -0.154 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025715927 | +| time-step | 907 | +| y_out | -0.0176 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024751632 | +| time-step | 908 | +| y_out | 0.155 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024380798 | +| time-step | 909 | +| y_out | -0.044 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025036756 | +| time-step | 910 | +| y_out | 0.0831 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025187373 | +| time-step | 911 | +| y_out | 0.0395 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02495483 | +| time-step | 912 | +| y_out | -0.00507 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02490298 | +| time-step | 913 | +| y_out | 0.0285 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.024376761 | +| time-step | 914 | +| y_out | 0.00152 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025743822 | +| time-step | 915 | +| y_out | -0.0149 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025639188 | +| time-step | 916 | +| y_out | 0.0524 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026326407 | +| time-step | 917 | +| y_out | -0.087 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026857818 | +| time-step | 918 | +| y_out | -0.148 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0277464 | +| time-step | 919 | +| y_out | -0.0151 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.027267817 | +| time-step | 920 | +| y_out | -0.136 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027652938 | +| time-step | 921 | +| y_out | -0.0302 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027360607 | +| time-step | 922 | +| y_out | -0.0478 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026381547 | +| time-step | 923 | +| y_out | 0.0387 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027794749 | +| time-step | 924 | +| y_out | -0.0593 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027558234 | +| time-step | 925 | +| y_out | -0.0791 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028170202 | +| time-step | 926 | +| y_out | -0.0992 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028961843 | +| time-step | 927 | +| y_out | 0.0038 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030208837 | +| time-step | 928 | +| y_out | -0.0843 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02975759 | +| time-step | 929 | +| y_out | 0.0527 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.030543024 | +| time-step | 930 | +| y_out | 0.0855 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030078053 | +| time-step | 931 | +| y_out | -0.0831 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030241054 | +| time-step | 932 | +| y_out | 0.0363 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03036895 | +| time-step | 933 | +| y_out | -0.0184 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02863724 | +| time-step | 934 | +| y_out | -0.0949 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.028168779 | +| time-step | 935 | +| y_out | -0.0471 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027995277 | +| time-step | 936 | +| y_out | -0.0199 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027488345 | +| time-step | 937 | +| y_out | -0.141 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025942141 | +| time-step | 938 | +| y_out | -0.155 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025795707 | +| time-step | 939 | +| y_out | 0.00123 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024825554 | +| time-step | 940 | +| y_out | 0.195 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024879098 | +| time-step | 941 | +| y_out | 0.0227 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024011394 | +| time-step | 942 | +| y_out | 0.107 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024927912 | +| time-step | 943 | +| y_out | -0.112 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026210299 | +| time-step | 944 | +| y_out | 0.0438 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025937015 | +| time-step | 945 | +| y_out | 0.111 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025181139 | +| time-step | 946 | +| y_out | 0.122 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023741735 | +| time-step | 947 | +| y_out | 0.0911 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02448627 | +| time-step | 948 | +| y_out | 0.112 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.024514308 | +| time-step | 949 | +| y_out | 0.159 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025589922 | +| time-step | 950 | +| y_out | -0.0509 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02536431 | +| time-step | 951 | +| y_out | 0.0318 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026264388 | +| time-step | 952 | +| y_out | 0.00915 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02586641 | +| time-step | 953 | +| y_out | 0.107 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.024535496 | +| time-step | 954 | +| y_out | 0.0696 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025471037 | +| time-step | 955 | +| y_out | 0.0729 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024154559 | +| time-step | 956 | +| y_out | 0.0191 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024299463 | +| time-step | 957 | +| y_out | 0.00666 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02381151 | +| time-step | 958 | +| y_out | 0.00245 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.023751894 | +| time-step | 959 | +| y_out | -0.0185 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022737898 | +| time-step | 960 | +| y_out | 0.00361 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023533579 | +| time-step | 961 | +| y_out | -0.0387 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02360082 | +| time-step | 962 | +| y_out | 0.168 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.023167742 | +| time-step | 963 | +| y_out | -0.0715 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025169145 | +| time-step | 964 | +| y_out | 0.0124 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023714667 | +| time-step | 965 | +| y_out | -0.00294 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025202971 | +| time-step | 966 | +| y_out | 0.0901 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026225414 | +| time-step | 967 | +| y_out | -0.0675 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026297593 | +| time-step | 968 | +| y_out | -0.000455 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026395593 | +| time-step | 969 | +| y_out | 0.052 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027115569 | +| time-step | 970 | +| y_out | 0.0919 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026319344 | +| time-step | 971 | +| y_out | -0.0516 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026511695 | +| time-step | 972 | +| y_out | 0.0503 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026453882 | +| time-step | 973 | +| y_out | 0.0114 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024941832 | +| time-step | 974 | +| y_out | -0.0688 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02557173 | +| time-step | 975 | +| y_out | 0.0917 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026247421 | +| time-step | 976 | +| y_out | 0.0863 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026137274 | +| time-step | 977 | +| y_out | 0.0489 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026858892 | +| time-step | 978 | +| y_out | 0.0182 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026712859 | +| time-step | 979 | +| y_out | 0.117 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02705202 | +| time-step | 980 | +| y_out | 0.0214 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026433576 | +| time-step | 981 | +| y_out | 0.00431 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026189396 | +| time-step | 982 | +| y_out | -0.0829 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026525006 | +| time-step | 983 | +| y_out | 0.054 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026705805 | +| time-step | 984 | +| y_out | 0.0309 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026744345 | +| time-step | 985 | +| y_out | 0.0693 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025746554 | +| time-step | 986 | +| y_out | 0.0867 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026410216 | +| time-step | 987 | +| y_out | 0.0598 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026189258 | +| time-step | 988 | +| y_out | 0.00451 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026101138 | +| time-step | 989 | +| y_out | 0.0191 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02531277 | +| time-step | 990 | +| y_out | -0.0606 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.025077185 | +| time-step | 991 | +| y_out | -0.0938 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024089802 | +| time-step | 992 | +| y_out | -0.0378 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02372467 | +| time-step | 993 | +| y_out | 0.00154 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.024481002 | +| time-step | 994 | +| y_out | 0.11 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024543062 | +| time-step | 995 | +| y_out | 0.0429 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023962129 | +| time-step | 996 | +| y_out | -0.0379 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022777224 | +| time-step | 997 | +| y_out | 0.143 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022034802 | +| time-step | 998 | +| y_out | 0.00331 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021895196 | +| time-step | 999 | +| y_out | 0.079 | +------------------------------------------------------------ diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/progress-[||perf--mse||, ||timestep||].csv b/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/progress-[||perf--mse||, ||timestep||].csv new file mode 100644 index 0000000..2708d8e --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/progress-[||perf--mse||, ||timestep||].csv @@ -0,0 +1,2001 @@ +perf/mse,time-step +,0.0 +, +,1.0 +, +,2.0 +, +,3.0 +, +,4.0 +, +,5.0 +, +,6.0 +, +,7.0 +, +,8.0 +, +0.7536595,9.0 +, +0.7614303,10.0 +, +0.73954237,11.0 +, +0.70386356,12.0 +, +0.6770209,13.0 +, +0.65267324,14.0 +, +0.6346815,15.0 +, +0.6258823,16.0 +, +0.5979749,17.0 +, +0.55063057,18.0 +, +0.5483422,19.0 +, +0.5084941,20.0 +, +0.50091726,21.0 +, +0.49691707,22.0 +, +0.47591686,23.0 +, +0.46730766,24.0 +, +0.4655877,25.0 +, +0.4504355,26.0 +, +0.43825817,27.0 +, +0.42810416,28.0 +, +0.4091662,29.0 +, +0.39756814,30.0 +, +0.39547896,31.0 +, +0.38193163,32.0 +, +0.3848196,33.0 +, +0.3804757,34.0 +, +0.36593375,35.0 +, +0.35520807,36.0 +, +0.34942326,37.0 +, +0.34835225,38.0 +, +0.34093562,39.0 +, +0.33941054,40.0 +, +0.3291096,41.0 +, +0.32265082,42.0 +, +0.3030842,43.0 +, +0.2845729,44.0 +, +0.27790684,45.0 +, +0.27230132,46.0 +, +0.26273435,47.0 +, +0.25933737,48.0 +, +0.26412326,49.0 +, +0.27383024,50.0 +, +0.2696325,51.0 +, +0.2703403,52.0 +, +0.26812977,53.0 +, +0.26405814,54.0 +, +0.26761395,55.0 +, +0.26213422,56.0 +, +0.2602182,57.0 +, +0.26066226,58.0 +, +0.2479376,59.0 +, +0.23060067,60.0 +, +0.22659326,61.0 +, +0.2289532,62.0 +, +0.21603683,63.0 +, +0.22301443,64.0 +, +0.21527323,65.0 +, +0.2119784,66.0 +, +0.21069415,67.0 +, +0.20798007,68.0 +, +0.20300722,69.0 +, +0.20228119,70.0 +, +0.20275107,71.0 +, +0.19388804,72.0 +, +0.20016971,73.0 +, +0.18662246,74.0 +, +0.18414605,75.0 +, +0.18662009,76.0 +, +0.18146111,77.0 +, +0.17184725,78.0 +, +0.17073518,79.0 +, +0.16503216,80.0 +, +0.16086186,81.0 +, +0.1619516,82.0 +, +0.15664205,83.0 +, +0.16488114,84.0 +, +0.15822244,85.0 +, +0.15081719,86.0 +, +0.1494141,87.0 +, +0.14710765,88.0 +, +0.14720626,89.0 +, +0.14446992,90.0 +, +0.1501849,91.0 +, +0.1425922,92.0 +, +0.14148389,93.0 +, +0.13228774,94.0 +, +0.13850872,95.0 +, +0.13413472,96.0 +, +0.1341801,97.0 +, +0.13406035,98.0 +, +0.13296397,99.0 +, +0.13536148,100.0 +, +0.12632269,101.0 +, +0.12709916,102.0 +, +0.12770632,103.0 +, +0.12637927,104.0 +, +0.11823742,105.0 +, +0.120560944,106.0 +, +0.115595795,107.0 +, +0.11589529,108.0 +, +0.112142526,109.0 +, +0.10772308,110.0 +, +0.10829158,111.0 +, +0.11135219,112.0 +, +0.10839609,113.0 +, +0.110289335,114.0 +, +0.11743257,115.0 +, +0.11489244,116.0 +, +0.115033686,117.0 +, +0.1143599,118.0 +, +0.11436614,119.0 +, +0.11219598,120.0 +, +0.10956015,121.0 +, +0.10427566,122.0 +, +0.106453106,123.0 +, +0.103135526,124.0 +, +0.09769255,125.0 +, +0.095179215,126.0 +, +0.093893126,127.0 +, +0.09305087,128.0 +, +0.090363435,129.0 +, +0.09022226,130.0 +, +0.09041275,131.0 +, +0.09001038,132.0 +, +0.091183744,133.0 +, +0.09292256,134.0 +, +0.09379208,135.0 +, +0.09531312,136.0 +, +0.10008483,137.0 +, +0.099591166,138.0 +, +0.101162255,139.0 +, +0.10505815,140.0 +, +0.10293009,141.0 +, +0.10702111,142.0 +, +0.10858023,143.0 +, +0.10915722,144.0 +, +0.10915925,145.0 +, +0.108269,146.0 +, +0.10186194,147.0 +, +0.09985083,148.0 +, +0.100750186,149.0 +, +0.09781083,150.0 +, +0.098306686,151.0 +, +0.09458697,152.0 +, +0.09106726,153.0 +, +0.08781679,154.0 +, +0.08761193,155.0 +, +0.08527299,156.0 +, +0.085666336,157.0 +, +0.08647408,158.0 +, +0.08341716,159.0 +, +0.08342825,160.0 +, +0.080938205,161.0 +, +0.077774964,162.0 +, +0.07537802,163.0 +, +0.076626234,164.0 +, +0.07307533,165.0 +, +0.072913185,166.0 +, +0.07236985,167.0 +, +0.06986389,168.0 +, +0.06895031,169.0 +, +0.07149744,170.0 +, +0.071288966,171.0 +, +0.07429742,172.0 +, +0.071485594,173.0 +, +0.069862366,174.0 +, +0.07156961,175.0 +, +0.07435675,176.0 +, +0.07573581,177.0 +, +0.07466517,178.0 +, +0.07821276,179.0 +, +0.073047474,180.0 +, +0.07462281,181.0 +, +0.07356569,182.0 +, +0.07592135,183.0 +, +0.07851888,184.0 +, +0.081421696,185.0 +, +0.079103336,186.0 +, +0.080199204,187.0 +, +0.081093356,188.0 +, +0.07874111,189.0 +, +0.0806599,190.0 +, +0.08369358,191.0 +, +0.08218878,192.0 +, +0.08088047,193.0 +, +0.07906091,194.0 +, +0.0741044,195.0 +, +0.072809376,196.0 +, +0.07125479,197.0 +, +0.0719644,198.0 +, +0.07198538,199.0 +, +0.070659146,200.0 +, +0.066339575,201.0 +, +0.0688318,202.0 +, +0.06774326,203.0 +, +0.06734158,204.0 +, +0.06919502,205.0 +, +0.07262932,206.0 +, +0.07139654,207.0 +, +0.07193249,208.0 +, +0.0712597,209.0 +, +0.07278111,210.0 +, +0.073609285,211.0 +, +0.07077061,212.0 +, +0.07455244,213.0 +, +0.07383256,214.0 +, +0.07556737,215.0 +, +0.07411288,216.0 +, +0.07299921,217.0 +, +0.07033751,218.0 +, +0.07161388,219.0 +, +0.068507046,220.0 +, +0.07103853,221.0 +, +0.07235795,222.0 +, +0.06829778,223.0 +, +0.06932568,224.0 +, +0.067998655,225.0 +, +0.06521767,226.0 +, +0.06395949,227.0 +, +0.065621085,228.0 +, +0.063318364,229.0 +, +0.06854433,230.0 +, +0.06686604,231.0 +, +0.06609942,232.0 +, +0.067278266,233.0 +, +0.06675903,234.0 +, +0.06772205,235.0 +, +0.07046996,236.0 +, +0.07163824,237.0 +, +0.072859146,238.0 +, +0.075486556,239.0 +, +0.07305653,240.0 +, +0.0736026,241.0 +, +0.0765899,242.0 +, +0.078019395,243.0 +, +0.07583042,244.0 +, +0.07330941,245.0 +, +0.07313369,246.0 +, +0.07583009,247.0 +, +0.07508434,248.0 +, +0.07270874,249.0 +, +0.07287582,250.0 +, +0.07310078,251.0 +, +0.07047896,252.0 +, +0.068328634,253.0 +, +0.0712144,254.0 +, +0.07390735,255.0 +, +0.07300605,256.0 +, +0.07213883,257.0 +, +0.0714982,258.0 +, +0.06990965,259.0 +, +0.06994686,260.0 +, +0.06896425,261.0 +, +0.06738427,262.0 +, +0.06569174,263.0 +, +0.062795445,264.0 +, +0.06213799,265.0 +, +0.06258695,266.0 +, +0.059867553,267.0 +, +0.062483363,268.0 +, +0.06525875,269.0 +, +0.064568534,270.0 +, +0.064529285,271.0 +, +0.06593606,272.0 +, +0.069381185,273.0 +, +0.070490465,274.0 +, +0.06832643,275.0 +, +0.06861231,276.0 +, +0.06918214,277.0 +, +0.06731231,278.0 +, +0.06561977,279.0 +, +0.06458853,280.0 +, +0.063012086,281.0 +, +0.061319232,282.0 +, +0.059950896,283.0 +, +0.060632158,284.0 +, +0.063623376,285.0 +, +0.06250887,286.0 +, +0.0653263,287.0 +, +0.06339609,288.0 +, +0.06357501,289.0 +, +0.06568088,290.0 +, +0.06486209,291.0 +, +0.066144176,292.0 +, +0.06583441,293.0 +, +0.06567614,294.0 +, +0.062682025,295.0 +, +0.062473517,296.0 +, +0.060914338,297.0 +, +0.06190338,298.0 +, +0.06371783,299.0 +, +0.060892522,300.0 +, +0.061561406,301.0 +, +0.05978496,302.0 +, +0.058757592,303.0 +, +0.05701039,304.0 +, +0.058056284,305.0 +, +0.05757015,306.0 +, +0.056466363,307.0 +, +0.057786595,308.0 +, +0.056100674,309.0 +, +0.055892337,310.0 +, +0.056663238,311.0 +, +0.05775717,312.0 +, +0.05662114,313.0 +, +0.05946677,314.0 +, +0.05735783,315.0 +, +0.058225967,316.0 +, +0.059217285,317.0 +, +0.05691106,318.0 +, +0.057017483,319.0 +, +0.059242982,320.0 +, +0.05944742,321.0 +, +0.061292928,322.0 +, +0.06390854,323.0 +, +0.061706442,324.0 +, +0.063138455,325.0 +, +0.062838145,326.0 +, +0.06128608,327.0 +, +0.060820688,328.0 +, +0.05965125,329.0 +, +0.057916872,330.0 +, +0.058904983,331.0 +, +0.057457566,332.0 +, +0.058152925,333.0 +, +0.05647705,334.0 +, +0.05727185,335.0 +, +0.056803744,336.0 +, +0.05602798,337.0 +, +0.058072366,338.0 +, +0.060007293,339.0 +, +0.060237087,340.0 +, +0.060214512,341.0 +, +0.058044933,342.0 +, +0.05564768,343.0 +, +0.056173064,344.0 +, +0.05405266,345.0 +, +0.053636093,346.0 +, +0.05649879,347.0 +, +0.053624135,348.0 +, +0.052668493,349.0 +, +0.054834854,350.0 +, +0.054926433,351.0 +, +0.055627823,352.0 +, +0.055149816,353.0 +, +0.055934835,354.0 +, +0.056229435,355.0 +, +0.05643161,356.0 +, +0.054255534,357.0 +, +0.05489844,358.0 +, +0.055008076,359.0 +, +0.052582312,360.0 +, +0.051539678,361.0 +, +0.05143289,362.0 +, +0.051551152,363.0 +, +0.051219992,364.0 +, +0.053554337,365.0 +, +0.05462113,366.0 +, +0.05408623,367.0 +, +0.05427552,368.0 +, +0.052317858,369.0 +, +0.050932724,370.0 +, +0.050129782,371.0 +, +0.052606583,372.0 +, +0.053700425,373.0 +, +0.053138226,374.0 +, +0.04954926,375.0 +, +0.04844753,376.0 +, +0.047648974,377.0 +, +0.047716357,378.0 +, +0.047496177,379.0 +, +0.049459416,380.0 +, +0.05048915,381.0 +, +0.048765484,382.0 +, +0.048090927,383.0 +, +0.049119245,384.0 +, +0.050285257,385.0 +, +0.04998021,386.0 +, +0.051143028,387.0 +, +0.050728135,388.0 +, +0.05251382,389.0 +, +0.051797282,390.0 +, +0.0528268,391.0 +, +0.051988743,392.0 +, +0.05017187,393.0 +, +0.0493968,394.0 +, +0.048933208,395.0 +, +0.049795378,396.0 +, +0.05128135,397.0 +, +0.049810044,398.0 +, +0.050452936,399.0 +, +0.051612623,400.0 +, +0.049298503,401.0 +, +0.04917501,402.0 +, +0.050548345,403.0 +, +0.05184231,404.0 +, +0.051629175,405.0 +, +0.050516494,406.0 +, +0.04838071,407.0 +, +0.049961284,408.0 +, +0.04932687,409.0 +, +0.04691658,410.0 +, +0.04760117,411.0 +, +0.04678657,412.0 +, +0.04491849,413.0 +, +0.042869948,414.0 +, +0.04428022,415.0 +, +0.04513421,416.0 +, +0.04536701,417.0 +, +0.045004413,418.0 +, +0.04228895,419.0 +, +0.04272204,420.0 +, +0.04088345,421.0 +, +0.042330705,422.0 +, +0.0448047,423.0 +, +0.04717904,424.0 +, +0.04613499,425.0 +, +0.0451278,426.0 +, +0.045091845,427.0 +, +0.047298737,428.0 +, +0.048587345,429.0 +, +0.04786981,430.0 +, +0.046995595,431.0 +, +0.04719137,432.0 +, +0.04599424,433.0 +, +0.044415057,434.0 +, +0.044502713,435.0 +, +0.0450804,436.0 +, +0.04378108,437.0 +, +0.042750355,438.0 +, +0.041916072,439.0 +, +0.041096076,440.0 +, +0.04207965,441.0 +, +0.04124843,442.0 +, +0.04065743,443.0 +, +0.04054389,444.0 +, +0.04050336,445.0 +, +0.039309554,446.0 +, +0.041436084,447.0 +, +0.039484333,448.0 +, +0.04045566,449.0 +, +0.041988704,450.0 +, +0.043819435,451.0 +, +0.045196947,452.0 +, +0.046382874,453.0 +, +0.045947142,454.0 +, +0.045975145,455.0 +, +0.04711535,456.0 +, +0.046774935,457.0 +, +0.04663525,458.0 +, +0.04687738,459.0 +, +0.046076596,460.0 +, +0.04469601,461.0 +, +0.043347925,462.0 +, +0.042185884,463.0 +, +0.041989654,464.0 +, +0.042105682,465.0 +, +0.040245485,466.0 +, +0.039194096,467.0 +, +0.039975733,468.0 +, +0.038464148,469.0 +, +0.038968343,470.0 +, +0.03878829,471.0 +, +0.039112873,472.0 +, +0.03935024,473.0 +, +0.0407045,474.0 +, +0.04014684,475.0 +, +0.04010058,476.0 +, +0.040465403,477.0 +, +0.040812254,478.0 +, +0.040099453,479.0 +, +0.04009784,480.0 +, +0.040263597,481.0 +, +0.040755503,482.0 +, +0.040466808,483.0 +, +0.039717473,484.0 +, +0.04026102,485.0 +, +0.041761823,486.0 +, +0.042971868,487.0 +, +0.042814843,488.0 +, +0.04446888,489.0 +, +0.045741346,490.0 +, +0.045773074,491.0 +, +0.04578921,492.0 +, +0.04678817,493.0 +, +0.047098078,494.0 +, +0.046221964,495.0 +, +0.046291053,496.0 +, +0.044057168,497.0 +, +0.044664633,498.0 +, +0.045550805,499.0 +, +0.043581955,500.0 +, +0.0433195,501.0 +, +0.043495655,502.0 +, +0.043606438,503.0 +, +0.0419158,504.0 +, +0.042762235,505.0 +, +0.04218278,506.0 +, +0.04287967,507.0 +, +0.0417406,508.0 +, +0.040139075,509.0 +, +0.041674577,510.0 +, +0.04270089,511.0 +, +0.041781474,512.0 +, +0.041109428,513.0 +, +0.04133248,514.0 +, +0.04113532,515.0 +, +0.04176956,516.0 +, +0.040870108,517.0 +, +0.042523883,518.0 +, +0.042741444,519.0 +, +0.0416047,520.0 +, +0.040262688,521.0 +, +0.041239403,522.0 +, +0.041240614,523.0 +, +0.042331543,524.0 +, +0.04086683,525.0 +, +0.039828677,526.0 +, +0.039771628,527.0 +, +0.038845032,528.0 +, +0.040037535,529.0 +, +0.04109566,530.0 +, +0.040208463,531.0 +, +0.039192673,532.0 +, +0.039382868,533.0 +, +0.039696056,534.0 +, +0.040804677,535.0 +, +0.04089757,536.0 +, +0.04123577,537.0 +, +0.040962234,538.0 +, +0.0419768,539.0 +, +0.03992503,540.0 +, +0.041555304,541.0 +, +0.04217988,542.0 +, +0.04279113,543.0 +, +0.041717317,544.0 +, +0.041593306,545.0 +, +0.040710445,546.0 +, +0.041528393,547.0 +, +0.04133732,548.0 +, +0.03972288,549.0 +, +0.043103877,550.0 +, +0.04295221,551.0 +, +0.041297276,552.0 +, +0.040485527,553.0 +, +0.040230997,554.0 +, +0.039685823,555.0 +, +0.04062644,556.0 +, +0.03977953,557.0 +, +0.039497703,558.0 +, +0.039897688,559.0 +, +0.03709321,560.0 +, +0.036519706,561.0 +, +0.038696013,562.0 +, +0.03883735,563.0 +, +0.03916894,564.0 +, +0.03973155,565.0 +, +0.041335262,566.0 +, +0.041378096,567.0 +, +0.0416981,568.0 +, +0.043603305,569.0 +, +0.044673316,570.0 +, +0.04417503,571.0 +, +0.042526834,572.0 +, +0.04173949,573.0 +, +0.041181777,574.0 +, +0.04162394,575.0 +, +0.040213548,576.0 +, +0.04056842,577.0 +, +0.041636225,578.0 +, +0.038060185,579.0 +, +0.037322216,580.0 +, +0.037494082,581.0 +, +0.03757308,582.0 +, +0.038125496,583.0 +, +0.038185593,584.0 +, +0.037031632,585.0 +, +0.03636884,586.0 +, +0.036718212,587.0 +, +0.035738792,588.0 +, +0.03630426,589.0 +, +0.03629414,590.0 +, +0.03701472,591.0 +, +0.036893435,592.0 +, +0.03701152,593.0 +, +0.037567534,594.0 +, +0.03869937,595.0 +, +0.040331863,596.0 +, +0.03968043,597.0 +, +0.038565416,598.0 +, +0.03983199,599.0 +, +0.040780813,600.0 +, +0.04040748,601.0 +, +0.039763443,602.0 +, +0.040080987,603.0 +, +0.039690845,604.0 +, +0.038111765,605.0 +, +0.036243714,606.0 +, +0.03605535,607.0 +, +0.037156858,608.0 +, +0.03555821,609.0 +, +0.035048187,610.0 +, +0.034824394,611.0 +, +0.035158224,612.0 +, +0.034627605,613.0 +, +0.036983654,614.0 +, +0.038132165,615.0 +, +0.03982105,616.0 +, +0.03999034,617.0 +, +0.039819263,618.0 +, +0.040619727,619.0 +, +0.040472355,620.0 +, +0.03979265,621.0 +, +0.03958496,622.0 +, +0.041450303,623.0 +, +0.03933242,624.0 +, +0.039508883,625.0 +, +0.037417866,626.0 +, +0.03711041,627.0 +, +0.037317857,628.0 +, +0.0383118,629.0 +, +0.037956122,630.0 +, +0.038879532,631.0 +, +0.03920067,632.0 +, +0.038225017,633.0 +, +0.037791915,634.0 +, +0.037692644,635.0 +, +0.03763432,636.0 +, +0.037584264,637.0 +, +0.036727577,638.0 +, +0.03474323,639.0 +, +0.034990508,640.0 +, +0.035130512,641.0 +, +0.035033457,642.0 +, +0.034520645,643.0 +, +0.034130104,644.0 +, +0.033446677,645.0 +, +0.034531206,646.0 +, +0.035306662,647.0 +, +0.03565969,648.0 +, +0.035442043,649.0 +, +0.035059936,650.0 +, +0.034617852,651.0 +, +0.033822127,652.0 +, +0.032898072,653.0 +, +0.033201367,654.0 +, +0.033928987,655.0 +, +0.03349203,656.0 +, +0.032486964,657.0 +, +0.031624325,658.0 +, +0.033516604,659.0 +, +0.03387384,660.0 +, +0.03485232,661.0 +, +0.036046077,662.0 +, +0.03621802,663.0 +, +0.035767984,664.0 +, +0.0345046,665.0 +, +0.034522187,666.0 +, +0.036395587,667.0 +, +0.037666894,668.0 +, +0.0355506,669.0 +, +0.034635972,670.0 +, +0.03435846,671.0 +, +0.034817446,672.0 +, +0.034293998,673.0 +, +0.03492614,674.0 +, +0.035841107,675.0 +, +0.036643483,676.0 +, +0.035110187,677.0 +, +0.034637656,678.0 +, +0.034472078,679.0 +, +0.034322552,680.0 +, +0.033315394,681.0 +, +0.031849127,682.0 +, +0.032420613,683.0 +, +0.031600617,684.0 +, +0.031020794,685.0 +, +0.029522315,686.0 +, +0.030101735,687.0 +, +0.029611489,688.0 +, +0.030553326,689.0 +, +0.031130135,690.0 +, +0.031407844,691.0 +, +0.033279028,692.0 +, +0.033729516,693.0 +, +0.033430513,694.0 +, +0.034287043,695.0 +, +0.034985255,696.0 +, +0.03490349,697.0 +, +0.034853287,698.0 +, +0.034514718,699.0 +, +0.03458406,700.0 +, +0.033880405,701.0 +, +0.03241182,702.0 +, +0.030682286,703.0 +, +0.031068558,704.0 +, +0.030623829,705.0 +, +0.030694833,706.0 +, +0.031009803,707.0 +, +0.03075462,708.0 +, +0.031132001,709.0 +, +0.032163657,710.0 +, +0.031868786,711.0 +, +0.031574074,712.0 +, +0.03337201,713.0 +, +0.033705104,714.0 +, +0.033566993,715.0 +, +0.033646517,716.0 +, +0.033064827,717.0 +, +0.032034695,718.0 +, +0.031348057,719.0 +, +0.030188825,720.0 +, +0.030938143,721.0 +, +0.031626992,722.0 +, +0.03152649,723.0 +, +0.03144444,724.0 +, +0.03161285,725.0 +, +0.03192906,726.0 +, +0.031762,727.0 +, +0.03284171,728.0 +, +0.03496663,729.0 +, +0.03502272,730.0 +, +0.034854148,731.0 +, +0.034256183,732.0 +, +0.03399481,733.0 +, +0.034413703,734.0 +, +0.033731613,735.0 +, +0.033232715,736.0 +, +0.033324506,737.0 +, +0.03399422,738.0 +, +0.031683613,739.0 +, +0.03147561,740.0 +, +0.033192992,741.0 +, +0.033889122,742.0 +, +0.03453921,743.0 +, +0.034295876,744.0 +, +0.03441958,745.0 +, +0.034893565,746.0 +, +0.035000503,747.0 +, +0.034186408,748.0 +, +0.03489658,749.0 +, +0.034544032,750.0 +, +0.033502202,751.0 +, +0.033249952,752.0 +, +0.032732934,753.0 +, +0.032715775,754.0 +, +0.034088694,755.0 +, +0.034077838,756.0 +, +0.03454442,757.0 +, +0.035190124,758.0 +, +0.03517934,759.0 +, +0.03540191,760.0 +, +0.0355314,761.0 +, +0.035840582,762.0 +, +0.035787575,763.0 +, +0.035666965,764.0 +, +0.03417643,765.0 +, +0.033591874,766.0 +, +0.032676984,767.0 +, +0.033677064,768.0 +, +0.03439086,769.0 +, +0.034344353,770.0 +, +0.03289576,771.0 +, +0.032238055,772.0 +, +0.032016914,773.0 +, +0.032675076,774.0 +, +0.032914568,775.0 +, +0.03223046,776.0 +, +0.031958494,777.0 +, +0.03102837,778.0 +, +0.030204069,779.0 +, +0.031328745,780.0 +, +0.031813454,781.0 +, +0.031569373,782.0 +, +0.030353406,783.0 +, +0.029569939,784.0 +, +0.028947726,785.0 +, +0.029482957,786.0 +, +0.029256474,787.0 +, +0.028287593,788.0 +, +0.027608458,789.0 +, +0.026024941,790.0 +, +0.026200688,791.0 +, +0.027343327,792.0 +, +0.028491667,793.0 +, +0.028277855,794.0 +, +0.028639372,795.0 +, +0.027921278,796.0 +, +0.02821945,797.0 +, +0.02897954,798.0 +, +0.029815987,799.0 +, +0.030650765,800.0 +, +0.029749114,801.0 +, +0.030450022,802.0 +, +0.029640784,803.0 +, +0.029577825,804.0 +, +0.029527217,805.0 +, +0.029465567,806.0 +, +0.02942439,807.0 +, +0.029973114,808.0 +, +0.02865826,809.0 +, +0.02827696,810.0 +, +0.029177418,811.0 +, +0.027264377,812.0 +, +0.02793624,813.0 +, +0.028114026,814.0 +, +0.028837245,815.0 +, +0.029435512,816.0 +, +0.02895026,817.0 +, +0.027444452,818.0 +, +0.02928554,819.0 +, +0.02921555,820.0 +, +0.029565636,821.0 +, +0.030052274,822.0 +, +0.030542308,823.0 +, +0.030573,824.0 +, +0.029855018,825.0 +, +0.029474149,826.0 +, +0.030186277,827.0 +, +0.03139303,828.0 +, +0.03030757,829.0 +, +0.031952985,830.0 +, +0.0318633,831.0 +, +0.031874202,832.0 +, +0.032290168,833.0 +, +0.031817093,834.0 +, +0.031733997,835.0 +, +0.03252268,836.0 +, +0.032422867,837.0 +, +0.032111738,838.0 +, +0.03298972,839.0 +, +0.03135136,840.0 +, +0.030794963,841.0 +, +0.030718062,842.0 +, +0.029161686,843.0 +, +0.030745342,844.0 +, +0.031048447,845.0 +, +0.030652534,846.0 +, +0.030912261,847.0 +, +0.03114942,848.0 +, +0.030947322,849.0 +, +0.031459086,850.0 +, +0.03158531,851.0 +, +0.03080064,852.0 +, +0.031007767,853.0 +, +0.030812617,854.0 +, +0.030408556,855.0 +, +0.031355392,856.0 +, +0.030533958,857.0 +, +0.029457297,858.0 +, +0.028317515,859.0 +, +0.0276384,860.0 +, +0.02652489,861.0 +, +0.027203146,862.0 +, +0.02691786,863.0 +, +0.026311576,864.0 +, +0.026107114,865.0 +, +0.024599604,866.0 +, +0.02489976,867.0 +, +0.025397714,868.0 +, +0.02566601,869.0 +, +0.026150549,870.0 +, +0.026716184,871.0 +, +0.026029903,872.0 +, +0.026441425,873.0 +, +0.025501873,874.0 +, +0.02523778,875.0 +, +0.025822561,876.0 +, +0.026206236,877.0 +, +0.02624933,878.0 +, +0.026718482,879.0 +, +0.025950437,880.0 +, +0.026844483,881.0 +, +0.026983282,882.0 +, +0.02738451,883.0 +, +0.028599177,884.0 +, +0.029451102,885.0 +, +0.028934142,886.0 +, +0.028447041,887.0 +, +0.028218012,888.0 +, +0.02758134,889.0 +, +0.027639583,890.0 +, +0.027555833,891.0 +, +0.028048292,892.0 +, +0.027543291,893.0 +, +0.027465697,894.0 +, +0.028316656,895.0 +, +0.02879639,896.0 +, +0.028723842,897.0 +, +0.028936356,898.0 +, +0.02920806,899.0 +, +0.028817976,900.0 +, +0.028033573,901.0 +, +0.02829403,902.0 +, +0.028730586,903.0 +, +0.028063823,904.0 +, +0.025938386,905.0 +, +0.026119849,906.0 +, +0.025715927,907.0 +, +0.024751632,908.0 +, +0.024380798,909.0 +, +0.025036756,910.0 +, +0.025187373,911.0 +, +0.02495483,912.0 +, +0.02490298,913.0 +, +0.024376761,914.0 +, +0.025743822,915.0 +, +0.025639188,916.0 +, +0.026326407,917.0 +, +0.026857818,918.0 +, +0.0277464,919.0 +, +0.027267817,920.0 +, +0.027652938,921.0 +, +0.027360607,922.0 +, +0.026381547,923.0 +, +0.027794749,924.0 +, +0.027558234,925.0 +, +0.028170202,926.0 +, +0.028961843,927.0 +, +0.030208837,928.0 +, +0.02975759,929.0 +, +0.030543024,930.0 +, +0.030078053,931.0 +, +0.030241054,932.0 +, +0.03036895,933.0 +, +0.02863724,934.0 +, +0.028168779,935.0 +, +0.027995277,936.0 +, +0.027488345,937.0 +, +0.025942141,938.0 +, +0.025795707,939.0 +, +0.024825554,940.0 +, +0.024879098,941.0 +, +0.024011394,942.0 +, +0.024927912,943.0 +, +0.026210299,944.0 +, +0.025937015,945.0 +, +0.025181139,946.0 +, +0.023741735,947.0 +, +0.02448627,948.0 +, +0.024514308,949.0 +, +0.025589922,950.0 +, +0.02536431,951.0 +, +0.026264388,952.0 +, +0.02586641,953.0 +, +0.024535496,954.0 +, +0.025471037,955.0 +, +0.024154559,956.0 +, +0.024299463,957.0 +, +0.02381151,958.0 +, +0.023751894,959.0 +, +0.022737898,960.0 +, +0.023533579,961.0 +, +0.02360082,962.0 +, +0.023167742,963.0 +, +0.025169145,964.0 +, +0.023714667,965.0 +, +0.025202971,966.0 +, +0.026225414,967.0 +, +0.026297593,968.0 +, +0.026395593,969.0 +, +0.027115569,970.0 +, +0.026319344,971.0 +, +0.026511695,972.0 +, +0.026453882,973.0 +, +0.024941832,974.0 +, +0.02557173,975.0 +, +0.026247421,976.0 +, +0.026137274,977.0 +, +0.026858892,978.0 +, +0.026712859,979.0 +, +0.02705202,980.0 +, +0.026433576,981.0 +, +0.026189396,982.0 +, +0.026525006,983.0 +, +0.026705805,984.0 +, +0.026744345,985.0 +, +0.025746554,986.0 +, +0.026410216,987.0 +, +0.026189258,988.0 +, +0.026101138,989.0 +, +0.02531277,990.0 +, +0.025077185,991.0 +, +0.024089802,992.0 +, +0.02372467,993.0 +, +0.024481002,994.0 +, +0.024543062,995.0 +, +0.023962129,996.0 +, +0.022777224,997.0 +, +0.022034802,998.0 +, +0.021895196,999.0 +, diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/progress.csv b/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/progress.csv new file mode 100644 index 0000000..40ade58 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/progress.csv @@ -0,0 +1,2001 @@ +time-step,y_out,perf/mse +0,0.005506453120507404, +,, +1,-0.043655155523065495, +,, +2,0.02109710642065606, +,, +3,0.05421068038338436, +,, +4,-0.09677453120051925, +,, +5,-0.12345978469751198, +,, +6,-0.023256362831105118, +,, +7,0.04790031714300091, +,, +8,0.10084323528822361, +,, +9,0.004957371206200704,0.7536595 +,, +10,0.04059975669509793,0.7614303 +,, +11,0.019252149334951514,0.73954237 +,, +12,0.03743666550253112,0.70386356 +,, +13,0.005512500400988059,0.6770209 +,, +14,0.026584984466776995,0.65267324 +,, +15,-0.08810795209875696,0.6346815 +,, +16,0.10021028698789394,0.6258823 +,, +17,-0.03089393473314262,0.5979749 +,, +18,-0.0440904643382771,0.55063057 +,, +19,-0.04486689834361403,0.5483422 +,, +20,0.10391640771452394,0.5084941 +,, +21,-0.09491513625286295,0.50091726 +,, +22,-0.12540976509900326,0.49691707 +,, +23,0.08385023959279077,0.47591686 +,, +24,-0.008785051310294466,0.46730766 +,, +25,0.05469551522962587,0.4655877 +,, +26,-0.02161986611358424,0.4504355 +,, +27,-0.019033444919671016,0.43825817 +,, +28,0.08636370606809682,0.42810416 +,, +29,0.02621358065747067,0.4091662 +,, +30,0.12247587197200036,0.39756814 +,, +31,-0.0350544319676969,0.39547896 +,, +32,0.011286457007426687,0.38193163 +,, +33,-0.05303046200761006,0.3848196 +,, +34,0.0571848901750914,0.3804757 +,, +35,0.017049312451649406,0.36593375 +,, +36,-0.015740492397643302,0.35520807 +,, +37,0.023563102257075884,0.34942326 +,, +38,-0.06412898717700655,0.34835225 +,, +39,-0.06475545738992337,0.34093562 +,, +40,0.08448150268009641,0.33941054 +,, +41,-0.01776423131143797,0.3291096 +,, +42,-0.034190235691026215,0.32265082 +,, +43,-0.11633488862921544,0.3030842 +,, +44,0.07267250568009469,0.2845729 +,, +45,-0.011480949132144855,0.27790684 +,, +46,0.04600166574346151,0.27230132 +,, +47,-0.013883987121901857,0.26273435 +,, +48,-0.005287471293394033,0.25933737 +,, +49,-0.030346037894959897,0.26412326 +,, +50,0.07698266917799619,0.27383024 +,, +51,0.09328304287512129,0.2696325 +,, +52,-0.06724743627460829,0.2703403 +,, +53,-0.03436334489466149,0.26812977 +,, +54,-0.012013888826319461,0.26405814 +,, +55,0.019314965618450627,0.26761395 +,, +56,-0.04380739006998216,0.26213422 +,, +57,-0.030133868639851524,0.2602182 +,, +58,-0.05922435292574636,0.26066226 +,, +59,-0.013117841174952728,0.2479376 +,, +60,0.016325182793789646,0.23060067 +,, +61,-0.022265651641941712,0.22659326 +,, +62,-0.0036629734246847387,0.2289532 +,, +63,0.14595475135267805,0.21603683 +,, +64,0.01114074330451515,0.22301443 +,, +65,0.07361468548083988,0.21527323 +,, +66,0.02026119230707211,0.2119784 +,, +67,0.04388241074466169,0.21069415 +,, +68,0.12118541904418641,0.20798007 +,, +69,-0.05862835856745205,0.20300722 +,, +70,0.001334487359124531,0.20228119 +,, +71,-0.03162625719558447,0.20275107 +,, +72,-0.002100239193532338,0.19388804 +,, +73,0.019891875648298935,0.20016971 +,, +74,-0.10905312280965929,0.18662246 +,, +75,0.015298526658949482,0.18414605 +,, +76,-0.02609625874549705,0.18662009 +,, +77,0.10959747043475845,0.18146111 +,, +78,0.039187109636404927,0.17184725 +,, +79,0.028114503113788325,0.17073518 +,, +80,-0.003682624115928665,0.16503216 +,, +81,-0.017701750176809403,0.16086186 +,, +82,-0.15057587478771242,0.1619516 +,, +83,0.09022079432219726,0.15664205 +,, +84,-0.08656625617359115,0.16488114 +,, +85,0.02882459964901394,0.15822244 +,, +86,-0.09763397132844676,0.15081719 +,, +87,0.018528635991304512,0.1494141 +,, +88,0.01946633973849234,0.14710765 +,, +89,0.0250224872072949,0.14720626 +,, +90,-0.08012337137542244,0.14446992 +,, +91,-0.03176853661205549,0.1501849 +,, +92,-0.16554298503131482,0.1425922 +,, +93,0.09414651247018974,0.14148389 +,, +94,-0.1261719036847936,0.13228774 +,, +95,0.013417779934320887,0.13850872 +,, +96,-0.018538119697848347,0.13413472 +,, +97,0.038801245862266034,0.1341801 +,, +98,-0.18110173589728396,0.13406035 +,, +99,-0.013412240141055166,0.13296397 +,, +100,0.05975659712424309,0.13536148 +,, +101,0.05888724234101192,0.12632269 +,, +102,0.0696012310645854,0.12709916 +,, +103,-0.015667228908698896,0.12770632 +,, +104,0.03318745194822894,0.12637927 +,, +105,0.024082947823784603,0.11823742 +,, +106,0.004431549816944765,0.120560944 +,, +107,-0.09969837100140198,0.115595795 +,, +108,-0.07411226037162538,0.11589529 +,, +109,-0.08548355954560513,0.112142526 +,, +110,0.0742415663532206,0.10772308 +,, +111,0.06264836310494677,0.10829158 +,, +112,-0.01706854216979449,0.11135219 +,, +113,0.04157282123141889,0.10839609 +,, +114,0.019222367844829544,0.110289335 +,, +115,6.437469701435841e-05,0.11743257 +,, +116,0.07676569119364689,0.11489244 +,, +117,-0.05420171782632073,0.115033686 +,, +118,0.06742108089539828,0.1143599 +,, +119,-0.12314444355858377,0.11436614 +,, +120,0.06668626735132668,0.11219598 +,, +121,-0.045253156479151874,0.10956015 +,, +122,-0.13265602502290924,0.10427566 +,, +123,0.0293074131467135,0.106453106 +,, +124,-0.11308620600327168,0.103135526 +,, +125,0.03709388662118886,0.09769255 +,, +126,-0.15142373956622682,0.095179215 +,, +127,-0.002931773983640796,0.093893126 +,, +128,-0.04970367599918529,0.09305087 +,, +129,-0.06711037523913609,0.090363435 +,, +130,-0.008295171742760038,0.09022226 +,, +131,0.034909627264248455,0.09041275 +,, +132,0.09239154059358043,0.09001038 +,, +133,-0.037590123003011414,0.091183744 +,, +134,0.018184962460559326,0.09292256 +,, +135,-0.03925235379770127,0.09379208 +,, +136,0.02065357673378382,0.09531312 +,, +137,0.0256098494304333,0.10008483 +,, +138,-0.09049070479783956,0.099591166 +,, +139,0.08027145936106107,0.101162255 +,, +140,-0.023991941175910116,0.10505815 +,, +141,0.1993423451535803,0.10293009 +,, +142,-0.1097192720064529,0.10702111 +,, +143,0.009665864373906432,0.10858023 +,, +144,-0.07205719390639591,0.10915722 +,, +145,0.03440894509080558,0.10915925 +,, +146,0.12223694930983658,0.108269 +,, +147,-0.025221347690222575,0.10186194 +,, +148,-0.08650458518704747,0.09985083 +,, +149,-0.08289939366768428,0.100750186 +,, +150,-0.00407834243907703,0.09781083 +,, +151,0.009461830468536518,0.098306686 +,, +152,0.07867356805644853,0.09458697 +,, +153,-0.02982617812613282,0.09106726 +,, +154,-0.0823425950053176,0.08781679 +,, +155,0.08296298099995786,0.08761193 +,, +156,0.07945278618105443,0.08527299 +,, +157,-0.03964586906567867,0.085666336 +,, +158,0.13570520042891018,0.08647408 +,, +159,-0.029470193140542895,0.08341716 +,, +160,0.06755922379811027,0.08342825 +,, +161,-0.02269391111861529,0.080938205 +,, +162,0.003953800910943963,0.077774964 +,, +163,-0.022276412045493806,0.07537802 +,, +164,0.12563317226740406,0.076626234 +,, +165,0.0061664902534836925,0.07307533 +,, +166,0.010174737781031194,0.072913185 +,, +167,-0.00032031066130616334,0.07236985 +,, +168,0.0378131822893948,0.06986389 +,, +169,-0.012866374323216294,0.06895031 +,, +170,-0.03677482134298331,0.07149744 +,, +171,0.010254329262113115,0.071288966 +,, +172,0.0912965638142369,0.07429742 +,, +173,-0.17475250650583157,0.071485594 +,, +174,-0.07780519736948682,0.069862366 +,, +175,-0.015317232421580727,0.07156961 +,, +176,0.027474012207829114,0.07435675 +,, +177,0.019687601607089454,0.07573581 +,, +178,-0.05430557063820974,0.07466517 +,, +179,0.07082231758106143,0.07821276 +,, +180,-0.06021095974271291,0.073047474 +,, +181,0.04832535681655342,0.07462281 +,, +182,-0.13092755356771288,0.07356569 +,, +183,-0.09579640572690126,0.07592135 +,, +184,0.0167215706307922,0.07851888 +,, +185,0.05824243330833355,0.081421696 +,, +186,0.03961487093513337,0.079103336 +,, +187,0.03951028001980193,0.080199204 +,, +188,-0.0652362011459621,0.081093356 +,, +189,0.011145551984142084,0.07874111 +,, +190,0.03187515519921473,0.0806599 +,, +191,-0.0008367828450056188,0.08369358 +,, +192,-0.07476461854628025,0.08218878 +,, +193,0.012132906384405062,0.08088047 +,, +194,-0.05549892623854904,0.07906091 +,, +195,0.03854965321332668,0.0741044 +,, +196,-0.043392869763884644,0.072809376 +,, +197,-0.06247288589702992,0.07125479 +,, +198,-0.002964457826690081,0.0719644 +,, +199,0.02557575698895976,0.07198538 +,, +200,0.009472989538427587,0.070659146 +,, +201,0.018611962188007147,0.066339575 +,, +202,-0.03653606223186781,0.0688318 +,, +203,-0.014372888314517891,0.06774326 +,, +204,0.0731140514394357,0.06734158 +,, +205,-0.07257403134434165,0.06919502 +,, +206,-0.05514849543808743,0.07262932 +,, +207,-0.05692850823503895,0.07139654 +,, +208,-0.04105655626372347,0.07193249 +,, +209,0.1301902296239963,0.0712597 +,, +210,-0.03601869515258868,0.07278111 +,, +211,-0.10231470542960436,0.073609285 +,, +212,-0.02590161682330046,0.07077061 +,, +213,0.003983694493494845,0.07455244 +,, +214,0.040226773542264026,0.07383256 +,, +215,-0.06949644879203906,0.07556737 +,, +216,-0.08587110946272818,0.07411288 +,, +217,-0.08885679972877593,0.07299921 +,, +218,-0.006534140813315319,0.07033751 +,, +219,-0.026278707886000126,0.07161388 +,, +220,0.0018725469504612957,0.068507046 +,, +221,0.02163427768928122,0.07103853 +,, +222,0.07684352671527131,0.07235795 +,, +223,-0.0145754717888176,0.06829778 +,, +224,-0.10133812281056677,0.06932568 +,, +225,0.07287375197819645,0.067998655 +,, +226,0.03682665854159199,0.06521767 +,, +227,0.03189302083124281,0.06395949 +,, +228,0.11772713722373873,0.065621085 +,, +229,-0.034687070499786005,0.063318364 +,, +230,-0.06514234502447416,0.06854433 +,, +231,-0.08576492481995014,0.06686604 +,, +232,-0.019880600163686264,0.06609942 +,, +233,-0.053914626310353486,0.067278266 +,, +234,-0.011642055382679692,0.06675903 +,, +235,-0.03559099540531648,0.06772205 +,, +236,0.06353094122481731,0.07046996 +,, +237,-0.010165859915840991,0.07163824 +,, +238,0.010086982940211117,0.072859146 +,, +239,0.05403482404827935,0.075486556 +,, +240,0.03949438303661295,0.07305653 +,, +241,0.04390157327120818,0.0736026 +,, +242,0.02958160974496113,0.0765899 +,, +243,-0.023497917050029668,0.078019395 +,, +244,0.06797078386219989,0.07583042 +,, +245,0.014569746941137773,0.07330941 +,, +246,-0.033359258949097345,0.07313369 +,, +247,0.05070136428289184,0.07583009 +,, +248,0.12865870058715673,0.07508434 +,, +249,0.08086729419726271,0.07270874 +,, +250,0.06781954709256063,0.07287582 +,, +251,0.039493841255245195,0.07310078 +,, +252,0.09966161259637618,0.07047896 +,, +253,-0.010145727146648381,0.068328634 +,, +254,0.034419497483245,0.0712144 +,, +255,-0.028812423089027248,0.07390735 +,, +256,0.020501031639189805,0.07300605 +,, +257,0.07317102038273857,0.07213883 +,, +258,0.09550682928816834,0.0714982 +,, +259,-0.00152930643979627,0.06990965 +,, +260,-0.06755989923690806,0.06994686 +,, +261,0.03433272224533887,0.06896425 +,, +262,0.05858155352557827,0.06738427 +,, +263,-0.06639480228538329,0.06569174 +,, +264,-0.1209423376372063,0.062795445 +,, +265,-0.033218840655692666,0.06213799 +,, +266,-0.020378007957082146,0.06258695 +,, +267,-0.14107110045544344,0.059867553 +,, +268,-0.0262961364121037,0.062483363 +,, +269,0.1457532940063682,0.06525875 +,, +270,0.0032754417746062737,0.064568534 +,, +271,-0.041571372103373035,0.064529285 +,, +272,-0.05594344575401256,0.06593606 +,, +273,0.12291423390136627,0.069381185 +,, +274,0.11972227496369714,0.070490465 +,, +275,0.056292464911177446,0.06832643 +,, +276,-0.0026043265714363814,0.06861231 +,, +277,-0.0025769523726656713,0.06918214 +,, +278,0.05720785777041875,0.06731231 +,, +279,0.09374843821547013,0.06561977 +,, +280,0.06624694082003421,0.06458853 +,, +281,0.07957198929085571,0.063012086 +,, +282,0.015025467141882907,0.061319232 +,, +283,0.07195287560222909,0.059950896 +,, +284,-0.056933990457620896,0.060632158 +,, +285,0.0924768695896761,0.063623376 +,, +286,0.0206041967774832,0.06250887 +,, +287,-0.015592814525225422,0.0653263 +,, +288,0.019607953354473105,0.06339609 +,, +289,0.07954855481818479,0.06357501 +,, +290,0.03286857307770448,0.06568088 +,, +291,-0.01300651204512478,0.06486209 +,, +292,-0.12239901130117012,0.066144176 +,, +293,-0.0590536966079818,0.06583441 +,, +294,0.0183945050412881,0.06567614 +,, +295,0.03982394260970634,0.062682025 +,, +296,0.12686497046559214,0.062473517 +,, +297,-0.10618889051222988,0.060914338 +,, +298,0.047612675157261995,0.06190338 +,, +299,-0.09391537367904565,0.06371783 +,, +300,-0.025304025863788878,0.060892522 +,, +301,-0.015555143045953984,0.061561406 +,, +302,0.0917782946074335,0.05978496 +,, +303,-0.0837536880500466,0.058757592 +,, +304,-0.003656164958829264,0.05701039 +,, +305,0.10506513536955886,0.058056284 +,, +306,-0.05116151656333359,0.05757015 +,, +307,-0.009670018366764552,0.056466363 +,, +308,-0.1088509176366347,0.057786595 +,, +309,-0.03960800521795453,0.056100674 +,, +310,0.07771685179922065,0.055892337 +,, +311,-0.04705165708419397,0.056663238 +,, +312,0.03804315280129737,0.05775717 +,, +313,-0.0006687829764722465,0.05662114 +,, +314,0.018940272119676096,0.05946677 +,, +315,-0.05557444900138318,0.05735783 +,, +316,-0.05324980524992888,0.058225967 +,, +317,-0.17729364598688785,0.059217285 +,, +318,0.07868189596071194,0.05691106 +,, +319,-0.03961836961473744,0.057017483 +,, +320,0.0428566458408922,0.059242982 +,, +321,0.036361759163764246,0.05944742 +,, +322,-0.02877290807969711,0.061292928 +,, +323,0.16210616728342375,0.06390854 +,, +324,0.010828804593182032,0.061706442 +,, +325,-0.03828725226904851,0.063138455 +,, +326,-0.001938622181276356,0.062838145 +,, +327,0.005178164508532111,0.06128608 +,, +328,0.031119004439373647,0.060820688 +,, +329,0.0881372676454992,0.05965125 +,, +330,0.04646490037063489,0.057916872 +,, +331,0.051373810200191716,0.058904983 +,, +332,-0.04361561492447695,0.057457566 +,, +333,-0.06291886707950209,0.058152925 +,, +334,-0.07409701796516749,0.05647705 +,, +335,-0.04300454457913706,0.05727185 +,, +336,0.018792239577760786,0.056803744 +,, +337,-0.047636346499544416,0.05602798 +,, +338,0.06497008812474733,0.058072366 +,, +339,-0.01504693030612933,0.060007293 +,, +340,0.030166551961723853,0.060237087 +,, +341,0.16301656425377228,0.060214512 +,, +342,-0.027160976869353155,0.058044933 +,, +343,0.07261803818080867,0.05564768 +,, +344,-0.04468801018909023,0.056173064 +,, +345,-0.17349375576764525,0.05405266 +,, +346,-0.061488712017075134,0.053636093 +,, +347,0.07272799129644698,0.05649879 +,, +348,0.0927123820877866,0.053624135 +,, +349,-0.08420206025273458,0.052668493 +,, +350,0.10277894903086195,0.054834854 +,, +351,0.11925625957459848,0.054926433 +,, +352,-0.20646827399971696,0.055627823 +,, +353,0.10889739960850081,0.055149816 +,, +354,-0.019164386872328416,0.055934835 +,, +355,0.08970353043136467,0.056229435 +,, +356,0.09953852408589613,0.05643161 +,, +357,0.0017130900191254066,0.054255534 +,, +358,0.02139370082510264,0.05489844 +,, +359,0.031519970130525356,0.055008076 +,, +360,0.01737404047297314,0.052582312 +,, +361,0.042382752748368197,0.051539678 +,, +362,-0.02945957472930183,0.05143289 +,, +363,-0.07885353849407623,0.051551152 +,, +364,-0.06299925304081946,0.051219992 +,, +365,0.12126450214636969,0.053554337 +,, +366,0.040086876432296754,0.05462113 +,, +367,-0.017793962347667704,0.05408623 +,, +368,-0.019662557459868682,0.05427552 +,, +369,-0.014254153819842741,0.052317858 +,, +370,0.013430645463070753,0.050932724 +,, +371,-0.04637600311854525,0.050129782 +,, +372,-0.050628607996050075,0.052606583 +,, +373,0.02009549100426019,0.053700425 +,, +374,-0.0009389989771977011,0.053138226 +,, +375,0.1184904562653233,0.04954926 +,, +376,-0.09642299558506535,0.04844753 +,, +377,-0.04573119072926948,0.047648974 +,, +378,0.02864852189757703,0.047716357 +,, +379,-0.004714925458973937,0.047496177 +,, +380,-0.07678031907686035,0.049459416 +,, +381,0.12668880146409825,0.05048915 +,, +382,0.022531887593420022,0.048765484 +,, +383,-0.08851125334560637,0.048090927 +,, +384,0.040454544405086466,0.049119245 +,, +385,0.009766029193951715,0.050285257 +,, +386,0.06219377842195928,0.04998021 +,, +387,-0.00915192640061406,0.051143028 +,, +388,0.0285677099566605,0.050728135 +,, +389,-0.0082337069022125,0.05251382 +,, +390,-0.07320053001437365,0.051797282 +,, +391,0.022148517314439155,0.0528268 +,, +392,0.07593086424264232,0.051988743 +,, +393,-0.0024103972363183485,0.05017187 +,, +394,0.04333660379396351,0.0493968 +,, +395,0.00740820955330263,0.048933208 +,, +396,-0.013323392169389284,0.049795378 +,, +397,-0.056809664314758986,0.05128135 +,, +398,0.17241052870456355,0.049810044 +,, +399,-0.023625601293253286,0.050452936 +,, +400,0.003148708317463115,0.051612623 +,, +401,-0.08146869841137042,0.049298503 +,, +402,-0.007372158085499729,0.04917501 +,, +403,-0.10502253233748894,0.050548345 +,, +404,-0.09915833322410517,0.05184231 +,, +405,0.03270905700738544,0.051629175 +,, +406,-0.09900047991417932,0.050516494 +,, +407,0.021556845868869787,0.04838071 +,, +408,0.16196070815861133,0.049961284 +,, +409,0.03753377641399246,0.04932687 +,, +410,0.033710381179189695,0.04691658 +,, +411,0.11331156730973402,0.04760117 +,, +412,0.04938151778673394,0.04678657 +,, +413,-0.13255655646448056,0.04491849 +,, +414,-0.10066432751230545,0.042869948 +,, +415,0.026070216706290512,0.04428022 +,, +416,0.03309776900381932,0.04513421 +,, +417,0.010876509285666316,0.04536701 +,, +418,-0.04769329397317794,0.045004413 +,, +419,-0.04884730452493639,0.04228895 +,, +420,-0.20628875441613215,0.04272204 +,, +421,0.03204550597573123,0.04088345 +,, +422,-0.02143791502220327,0.042330705 +,, +423,0.0421346256966573,0.0448047 +,, +424,0.009164547699600178,0.04717904 +,, +425,-0.010411787090055647,0.04613499 +,, +426,0.029215962919767673,0.0451278 +,, +427,-0.06524502068695791,0.045091845 +,, +428,-0.09196107496220192,0.047298737 +,, +429,0.0755675869694465,0.048587345 +,, +430,-0.09357863359160627,0.04786981 +,, +431,0.06362996398681355,0.046995595 +,, +432,0.15691301532972313,0.04719137 +,, +433,0.06610560152714687,0.04599424 +,, +434,-0.05762294196223229,0.044415057 +,, +435,0.06528495497682651,0.044502713 +,, +436,-0.03755330158835497,0.0450804 +,, +437,-0.014481990700065256,0.04378108 +,, +438,0.0034107791923978607,0.042750355 +,, +439,-0.09445356211358433,0.041916072 +,, +440,0.03142351831559236,0.041096076 +,, +441,-0.021170088066343656,0.04207965 +,, +442,-0.016594946606708804,0.04124843 +,, +443,0.009079697091410585,0.04065743 +,, +444,-0.022604775525773647,0.04054389 +,, +445,0.08841380269538426,0.04050336 +,, +446,0.03950002056671365,0.039309554 +,, +447,0.028148608546636623,0.041436084 +,, +448,-0.07258864873528188,0.039484333 +,, +449,-0.06386335110923629,0.04045566 +,, +450,0.0996021516594546,0.041988704 +,, +451,0.1418095808373941,0.043819435 +,, +452,-0.03094032476734907,0.045196947 +,, +453,0.11224792121585503,0.046382874 +,, +454,-5.636140106168863e-05,0.045947142 +,, +455,0.005170038827560048,0.045975145 +,, +456,0.027372917035397244,0.04711535 +,, +457,-0.12394564070325778,0.046774935 +,, +458,0.019826932648444526,0.04663525 +,, +459,0.004112357827183409,0.04687738 +,, +460,0.01928538154412763,0.046076596 +,, +461,-0.032490603823310524,0.04469601 +,, +462,0.10145452498994027,0.043347925 +,, +463,-0.02112118999777008,0.042185884 +,, +464,-0.02371814293199477,0.041989654 +,, +465,0.0226310304533403,0.042105682 +,, +466,-0.03589890699136588,0.040245485 +,, +467,-0.023621549752041796,0.039194096 +,, +468,-0.026078628848135513,0.039975733 +,, +469,0.07444264075938518,0.038464148 +,, +470,0.05890352718283488,0.038968343 +,, +471,-0.07803410827368895,0.03878829 +,, +472,0.02663156515550631,0.039112873 +,, +473,-0.05589119036517346,0.03935024 +,, +474,0.047920790758827964,0.0407045 +,, +475,-0.007303801418584298,0.04014684 +,, +476,-0.061032123045457555,0.04010058 +,, +477,0.07583566937871955,0.040465403 +,, +478,-0.06868386097187264,0.040812254 +,, +479,-0.05850765933321208,0.040099453 +,, +480,-0.1046307006933169,0.04009784 +,, +481,-0.052833333454467196,0.040263597 +,, +482,0.09779735564213698,0.040755503 +,, +483,0.02490418885606331,0.040466808 +,, +484,0.013146363542197458,0.039717473 +,, +485,0.16700457525534995,0.04026102 +,, +486,-0.03144972315362032,0.041761823 +,, +487,-0.17625548827722456,0.042971868 +,, +488,-0.09254400728808586,0.042814843 +,, +489,-0.06043434025522064,0.04446888 +,, +490,-0.15514914815098238,0.045741346 +,, +491,-0.10017545715520244,0.045773074 +,, +492,0.03106857451060943,0.04578921 +,, +493,0.08299548483001175,0.04678817 +,, +494,-0.01273153263097318,0.047098078 +,, +495,0.030712947349210006,0.046221964 +,, +496,-0.10630771845151966,0.046291053 +,, +497,0.042474296107589946,0.044057168 +,, +498,-0.10665878046696695,0.044664633 +,, +499,-0.017458397850574132,0.045550805 +,, +500,0.0160375719041521,0.043581955 +,, +501,-0.053920414808822,0.0433195 +,, +502,0.07745344543691743,0.043495655 +,, +503,-0.08180626861499882,0.043606438 +,, +504,0.04126759058640791,0.0419158 +,, +505,-0.07337262550185335,0.042762235 +,, +506,0.03394629909119078,0.04218278 +,, +507,0.07238195615681223,0.04287967 +,, +508,0.04118577388367412,0.0417406 +,, +509,-0.04126478965255727,0.040139075 +,, +510,-0.038481892543218765,0.041674577 +,, +511,-0.06572290285328605,0.04270089 +,, +512,0.07574831204277734,0.041781474 +,, +513,-0.05850924005464912,0.041109428 +,, +514,-0.14072412013502317,0.04133248 +,, +515,0.0036235094627636247,0.04113532 +,, +516,0.05418122649331415,0.04176956 +,, +517,-0.03005024724328655,0.040870108 +,, +518,0.12379029365571934,0.042523883 +,, +519,0.0612116227520899,0.042741444 +,, +520,-0.07636769095300441,0.0416047 +,, +521,-0.014222565441257953,0.040262688 +,, +522,-0.07475095244790085,0.041239403 +,, +523,-0.003540881048054629,0.041240614 +,, +524,0.0199478655892611,0.042331543 +,, +525,-0.012427052727665993,0.04086683 +,, +526,0.0876164954533378,0.039828677 +,, +527,-0.04683712556332975,0.039771628 +,, +528,-0.045438332107281425,0.038845032 +,, +529,0.07572240610988887,0.040037535 +,, +530,0.0986932518329034,0.04109566 +,, +531,0.02532898061182413,0.040208463 +,, +532,-0.01931741056685629,0.039192673 +,, +533,-0.05666449123794784,0.039382868 +,, +534,-0.011772871858425467,0.039696056 +,, +535,-0.030274947854052228,0.040804677 +,, +536,-0.025955089808212345,0.04089757 +,, +537,0.008114700511873768,0.04123577 +,, +538,-0.07291384677983943,0.040962234 +,, +539,0.018317749411814466,0.0419768 +,, +540,-0.02453412754818011,0.03992503 +,, +541,-0.07037411741692359,0.041555304 +,, +542,-0.03945807220562398,0.04217988 +,, +543,-0.07824042935954062,0.04279113 +,, +544,-0.05160707540415594,0.041717317 +,, +545,0.035620611961265564,0.041593306 +,, +546,-0.015560045981991677,0.040710445 +,, +547,0.08106406074883421,0.041528393 +,, +548,-0.13916146070364266,0.04133732 +,, +549,0.01407605170716571,0.03972288 +,, +550,0.04829300142036225,0.043103877 +,, +551,0.14421182688284157,0.04295221 +,, +552,0.07499339775120828,0.041297276 +,, +553,0.026348266489320205,0.040485527 +,, +554,-0.03996285013349431,0.040230997 +,, +555,0.09285765579193603,0.039685823 +,, +556,0.06975118607559576,0.04062644 +,, +557,0.1108851016209571,0.03977953 +,, +558,-0.04307774619445896,0.039497703 +,, +559,-0.09147464570171883,0.039897688 +,, +560,-0.07325895121627635,0.03709321 +,, +561,-0.07890765454291127,0.036519706 +,, +562,0.1168428284174066,0.038696013 +,, +563,0.07828793972191517,0.03883735 +,, +564,0.11622615925208148,0.03916894 +,, +565,-0.024207012232430297,0.03973155 +,, +566,0.14662128342589958,0.041335262 +,, +567,0.020756529757807944,0.041378096 +,, +568,0.13096975271030167,0.0416981 +,, +569,-0.10556263040919772,0.043603305 +,, +570,0.03560837073947282,0.044673316 +,, +571,0.05243841168704221,0.04417503 +,, +572,0.004759907498765668,0.042526834 +,, +573,0.03925394475149139,0.04173949 +,, +574,0.057888076783805524,0.041181777 +,, +575,-0.031583158976140946,0.04162394 +,, +576,0.06372111949330617,0.040213548 +,, +577,0.008938719055841884,0.04056842 +,, +578,-0.024688076594376992,0.041636225 +,, +579,0.06146648974328201,0.038060185 +,, +580,-0.009847350522210325,0.037322216 +,, +581,0.003260795452221337,0.037494082 +,, +582,-0.03332461596269674,0.03757308 +,, +583,-0.037960971372876226,0.038125496 +,, +584,-0.003602762596497607,0.038185593 +,, +585,0.06741996789771944,0.037031632 +,, +586,-0.012577639694783621,0.03636884 +,, +587,-0.08893644140949755,0.036718212 +,, +588,0.07372815932692992,0.035738792 +,, +589,-0.06992349705933082,0.03630426 +,, +590,-0.024390291412729276,0.03629414 +,, +591,-0.05918620139709195,0.03701472 +,, +592,0.029772468037629465,0.036893435 +,, +593,-0.029577873323804175,0.03701152 +,, +594,0.03329306814984525,0.037567534 +,, +595,0.0539660362821476,0.03869937 +,, +596,-0.09498973592050591,0.040331863 +,, +597,-0.017772413420095556,0.03968043 +,, +598,0.10593356259478195,0.038565416 +,, +599,-0.051803505175440176,0.03983199 +,, +600,0.16333337058425357,0.040780813 +,, +601,-0.043415126105491045,0.04040748 +,, +602,0.10959212029983377,0.039763443 +,, +603,-0.03730606682815783,0.040080987 +,, +604,0.014694156215950646,0.039690845 +,, +605,-0.019451702626048586,0.038111765 +,, +606,0.0946637589074835,0.036243714 +,, +607,0.06874498776857157,0.03605535 +,, +608,0.01689239573266929,0.037156858 +,, +609,-0.009206574575254308,0.03555821 +,, +610,0.004861522155718598,0.035048187 +,, +611,0.02168572324087662,0.034824394 +,, +612,0.01968616409924854,0.035158224 +,, +613,0.004141396154541656,0.034627605 +,, +614,-0.11079899670098514,0.036983654 +,, +615,0.04944779005213471,0.038132165 +,, +616,-0.05284032782271924,0.03982105 +,, +617,0.11161504519870516,0.03999034 +,, +618,0.0283236336252891,0.039819263 +,, +619,0.04973845653421606,0.040619727 +,, +620,0.07123007597619668,0.040472355 +,, +621,-0.0642528817589597,0.03979265 +,, +622,-0.0376155731979592,0.03958496 +,, +623,0.08847913320517733,0.041450303 +,, +624,0.10793726521977559,0.03933242 +,, +625,0.036168430358905934,0.039508883 +,, +626,0.018122771428446524,0.037417866 +,, +627,-0.002675402276172696,0.03711041 +,, +628,-0.0029149815100946302,0.037317857 +,, +629,-0.04353977270884841,0.0383118 +,, +630,-0.03284270081768759,0.037956122 +,, +631,0.08572407825886838,0.038879532 +,, +632,0.09787263802522635,0.03920067 +,, +633,0.0652144076365608,0.038225017 +,, +634,-0.003000388291028156,0.037791915 +,, +635,-0.07808532335658815,0.037692644 +,, +636,0.07066662887442915,0.03763432 +,, +637,-0.047172558157765214,0.037584264 +,, +638,0.007339022308067003,0.036727577 +,, +639,-0.11050625804923589,0.03474323 +,, +640,-0.07823695308707806,0.034990508 +,, +641,0.026132463921532456,0.035130512 +,, +642,-0.06439366269364942,0.035033457 +,, +643,0.024932039463698895,0.034520645 +,, +644,-0.06909539325754081,0.034130104 +,, +645,0.062879494576355,0.033446677 +,, +646,-0.022130751198705514,0.034531206 +,, +647,-0.07679845968010449,0.035306662 +,, +648,-0.028587039110517982,0.03565969 +,, +649,0.07488872811280595,0.035442043 +,, +650,-0.014559317278965145,0.035059936 +,, +651,0.0714748521253532,0.034617852 +,, +652,-0.011088669692963045,0.033822127 +,, +653,0.02359714351533892,0.032898072 +,, +654,0.12468275104595739,0.033201367 +,, +655,-0.07978062208274787,0.033928987 +,, +656,-0.0044801696398827084,0.03349203 +,, +657,0.11134170074375149,0.032486964 +,, +658,0.05945031112383166,0.031624325 +,, +659,0.06421490256566144,0.033516604 +,, +660,-0.017552203454811698,0.03387384 +,, +661,-0.09739276739003308,0.03485232 +,, +662,0.01346213040237663,0.036046077 +,, +663,-0.0573031075271153,0.03621802 +,, +664,-0.1020768513153895,0.035767984 +,, +665,0.0751542989082943,0.0345046 +,, +666,0.0016319300046880592,0.034522187 +,, +667,0.04004095130485291,0.036395587 +,, +668,0.014563448165883626,0.037666894 +,, +669,0.017896100953362137,0.0355506 +,, +670,0.008826416050565125,0.034635972 +,, +671,-0.07615832182293931,0.03435846 +,, +672,-0.07121467121070627,0.034817446 +,, +673,0.025221101507845737,0.034293998 +,, +674,0.08161354469327413,0.03492614 +,, +675,-0.1666208699835091,0.035841107 +,, +676,0.09149746227518624,0.036643483 +,, +677,0.033584822411470365,0.035110187 +,, +678,0.005671747421621506,0.034637656 +,, +679,0.014947208471041154,0.034472078 +,, +680,0.03190406297724427,0.034322552 +,, +681,0.06190493382507617,0.033315394 +,, +682,-0.03402860654130847,0.031849127 +,, +683,0.034059506663615596,0.032420613 +,, +684,-0.04328238980588582,0.031600617 +,, +685,-0.016746050072890803,0.031020794 +,, +686,0.10345769620766344,0.029522315 +,, +687,0.017069733225636822,0.030101735 +,, +688,0.03496793988698275,0.029611489 +,, +689,0.07197673890753024,0.030553326 +,, +690,0.06928692395624667,0.031130135 +,, +691,-0.09393239740536272,0.031407844 +,, +692,-0.10856353720284757,0.033279028 +,, +693,0.014511231737459487,0.033729516 +,, +694,0.09539014815590449,0.033430513 +,, +695,0.10193167032581499,0.034287043 +,, +696,0.11291055124683311,0.034985255 +,, +697,-0.06007326990190359,0.03490349 +,, +698,-0.1408870125480361,0.034853287 +,, +699,0.00826004331777561,0.034514718 +,, +700,-0.007513948268998271,0.03458406 +,, +701,-0.04062032997847337,0.033880405 +,, +702,0.028496452841849033,0.03241182 +,, +703,-0.06272664485824875,0.030682286 +,, +704,0.035059531692499965,0.031068558 +,, +705,0.0698015018851832,0.030623829 +,, +706,0.07779349976639774,0.030694833 +,, +707,0.06846899304160431,0.031009803 +,, +708,-0.0023535039597419385,0.03075462 +,, +709,-0.04004193374680468,0.031132001 +,, +710,-0.0014446078314218633,0.032163657 +,, +711,-0.07165171184926337,0.031868786 +,, +712,-0.026424587632285244,0.031574074 +,, +713,0.02145771986414924,0.03337201 +,, +714,-0.02072026116344251,0.033705104 +,, +715,-0.07485423917218637,0.033566993 +,, +716,-0.04010433551488142,0.033646517 +,, +717,-0.03768436808129703,0.033064827 +,, +718,0.03506674904446278,0.032034695 +,, +719,0.040148214884549276,0.031348057 +,, +720,-0.08556297415657443,0.030188825 +,, +721,-0.040805932217438314,0.030938143 +,, +722,-0.07020154410628707,0.031626992 +,, +723,0.08326616391234751,0.03152649 +,, +724,-0.05351077473267395,0.03144444 +,, +725,-0.03565042883774088,0.03161285 +,, +726,0.04217108081784507,0.03192906 +,, +727,-0.07404650603997522,0.031762 +,, +728,-0.03338993006636572,0.03284171 +,, +729,0.032089648398838766,0.03496663 +,, +730,-0.06663138175087271,0.03502272 +,, +731,0.0920896438588721,0.034854148 +,, +732,-0.010448419962677232,0.034256183 +,, +733,0.07094176693511563,0.03399481 +,, +734,-0.04539221833085842,0.034413703 +,, +735,-0.056683421377666784,0.033731613 +,, +736,0.09429923275778626,0.033232715 +,, +737,-0.053351161458781576,0.033324506 +,, +738,-0.04443734322898847,0.03399422 +,, +739,-0.005807830919826493,0.031683613 +,, +740,-0.004761958815605281,0.03147561 +,, +741,0.06808468279411443,0.033192992 +,, +742,-0.12776176256829794,0.033889122 +,, +743,0.06144816654132165,0.03453921 +,, +744,-0.11357960661329852,0.034295876 +,, +745,-0.023401638458815335,0.03441958 +,, +746,-0.0054423022864383,0.034893565 +,, +747,-0.09579149867724929,0.035000503 +,, +748,-0.01226193683029915,0.034186408 +,, +749,-0.19445405395509846,0.03489658 +,, +750,0.07139237620556767,0.034544032 +,, +751,0.06498375294966391,0.033502202 +,, +752,0.06378583159707703,0.033249952 +,, +753,0.0030205043181365243,0.032732934 +,, +754,-0.030002937441660545,0.032715775 +,, +755,0.1542701288946845,0.034088694 +,, +756,-0.006741993407173574,0.034077838 +,, +757,0.03996451342128984,0.03454442 +,, +758,0.08375556946631682,0.035190124 +,, +759,-0.025410613377118835,0.03517934 +,, +760,0.10423441208987394,0.03540191 +,, +761,-0.09359177952361374,0.0355314 +,, +762,0.03964561357333281,0.035840582 +,, +763,0.03224812808807096,0.035787575 +,, +764,0.0043600464980161485,0.035666965 +,, +765,-0.05762475974464852,0.03417643 +,, +766,-0.05220439025734549,0.033591874 +,, +767,-0.026957260976024723,0.032676984 +,, +768,0.07956328527626699,0.033677064 +,, +769,0.05944523997458135,0.03439086 +,, +770,0.04137284580931015,0.034344353 +,, +771,-0.011676004548582072,0.03289576 +,, +772,-0.14793609685293255,0.032238055 +,, +773,0.0390706151933015,0.032016914 +,, +774,0.02180720876862245,0.032675076 +,, +775,-0.05029332123654903,0.032914568 +,, +776,0.014882950562703577,0.03223046 +,, +777,0.010745118779435084,0.031958494 +,, +778,-0.08883598451903289,0.03102837 +,, +779,0.08665216240675172,0.030204069 +,, +780,0.07508908469428698,0.031328745 +,, +781,0.08281126926069926,0.031813454 +,, +782,0.016603178993126237,0.031569373 +,, +783,0.058170553305353125,0.030353406 +,, +784,-0.08469437533439043,0.029569939 +,, +785,-0.007510899882401483,0.028947726 +,, +786,0.022718149792876015,0.029482957 +,, +787,-0.08294449446196794,0.029256474 +,, +788,0.04516177539133069,0.028287593 +,, +789,0.04925150198335473,0.027608458 +,, +790,0.07349334731905954,0.026024941 +,, +791,-0.08220092125669087,0.026200688 +,, +792,0.010260147672060994,0.027343327 +,, +793,0.01589767192023642,0.028491667 +,, +794,0.03536688528444649,0.028277855 +,, +795,0.07100650086419322,0.028639372 +,, +796,-0.049042676273480926,0.027921278 +,, +797,-0.04858424538605673,0.02821945 +,, +798,0.03409655454841308,0.02897954 +,, +799,-0.06265013536307847,0.029815987 +,, +800,0.00245494603665955,0.030650765 +,, +801,0.06062800927210375,0.029749114 +,, +802,-0.014277065015469482,0.030450022 +,, +803,0.005401326770659812,0.029640784 +,, +804,0.13973961285696063,0.029577825 +,, +805,0.027948952482248296,0.029527217 +,, +806,0.04775131965107777,0.029465567 +,, +807,0.022733619097919086,0.02942439 +,, +808,-0.09678499049663014,0.029973114 +,, +809,0.1025762191599261,0.02865826 +,, +810,0.007531053910714514,0.02827696 +,, +811,0.042823916219786165,0.029177418 +,, +812,-0.016608705832997183,0.027264377 +,, +813,-0.10737954944294578,0.02793624 +,, +814,0.0875886990025059,0.028114026 +,, +815,-0.08630077689942425,0.028837245 +,, +816,-0.04880364181223673,0.029435512 +,, +817,0.07023770093947765,0.02895026 +,, +818,0.11297248669826553,0.027444452 +,, +819,-0.017158724184305425,0.02928554 +,, +820,0.17243263476828652,0.02921555 +,, +821,-0.008739601193302422,0.029565636 +,, +822,-0.002100092305600496,0.030052274 +,, +823,-0.032861180719363184,0.030542308 +,, +824,0.027574125336260972,0.030573 +,, +825,0.001386086167677724,0.029855018 +,, +826,-0.014135543498714681,0.029474149 +,, +827,0.07370751005824981,0.030186277 +,, +828,0.019730922950807417,0.03139303 +,, +829,-0.04060619069614066,0.03030757 +,, +830,-0.10515535152670233,0.031952985 +,, +831,-0.03997049094986878,0.0318633 +,, +832,0.009013616371393168,0.031874202 +,, +833,-0.09298156325418833,0.032290168 +,, +834,0.04724792756702099,0.031817093 +,, +835,0.04681825538555645,0.031733997 +,, +836,0.05324265467125362,0.03252268 +,, +837,0.057262469203754954,0.032422867 +,, +838,-0.055193969297007914,0.032111738 +,, +839,0.08444479641201912,0.03298972 +,, +840,-0.0525329186086107,0.03135136 +,, +841,0.07680914615762098,0.030794963 +,, +842,-0.06513639066034435,0.030718062 +,, +843,-0.0209359342575893,0.029161686 +,, +844,0.02230952894053502,0.030745342 +,, +845,-0.010409460891147075,0.031048447 +,, +846,0.07600229458420513,0.030652534 +,, +847,-0.045719886582847515,0.030912261 +,, +848,-0.04740977532255421,0.03114942 +,, +849,0.027637592786011217,0.030947322 +,, +850,0.05334567128476054,0.031459086 +,, +851,-0.12556471461884997,0.03158531 +,, +852,-0.045152598476630675,0.03080064 +,, +853,0.03551136295678916,0.031007767 +,, +854,0.04524918345278266,0.030812617 +,, +855,0.0430100274655657,0.030408556 +,, +856,-0.07079986996466928,0.031355392 +,, +857,-0.09763762344206657,0.030533958 +,, +858,0.1927645523166974,0.029457297 +,, +859,0.04187246581098948,0.028317515 +,, +860,-0.011957187586355146,0.0276384 +,, +861,0.051337867632135735,0.02652489 +,, +862,-0.052020773999835374,0.027203146 +,, +863,0.06793568870396252,0.02691786 +,, +864,0.14274295031808937,0.026311576 +,, +865,0.07472091107573786,0.026107114 +,, +866,0.05503197292700769,0.024599604 +,, +867,-0.10483681537159756,0.02489976 +,, +868,-0.11659282859729543,0.025397714 +,, +869,-0.013735852678345428,0.02566601 +,, +870,0.030806205829268588,0.026150549 +,, +871,-0.03143416487122891,0.026716184 +,, +872,0.02124545210996892,0.026029903 +,, +873,-0.055209733847613116,0.026441425 +,, +874,-0.08371267850679164,0.025501873 +,, +875,-0.16417815422260063,0.02523778 +,, +876,-0.0130672139409151,0.025822561 +,, +877,-0.12323285740415084,0.026206236 +,, +878,-0.16490194236357397,0.02624933 +,, +879,0.12430817069440359,0.026718482 +,, +880,0.0061903355657508125,0.025950437 +,, +881,-0.02777852420372085,0.026844483 +,, +882,-0.056366430023905324,0.026983282 +,, +883,0.0029148062098874813,0.02738451 +,, +884,0.001997365756625343,0.028599177 +,, +885,-0.012253254350168358,0.029451102 +,, +886,0.042223566124519336,0.028934142 +,, +887,-0.1612401411424942,0.028447041 +,, +888,0.018081464953763983,0.028218012 +,, +889,-0.021482487422921043,0.02758134 +,, +890,-0.033591823883509744,0.027639583 +,, +891,0.07247469941588157,0.027555833 +,, +892,-0.027387277336246584,0.028048292 +,, +893,0.002308400133509827,0.027543291 +,, +894,-0.12563531829475963,0.027465697 +,, +895,-0.08141089198924127,0.028316656 +,, +896,-0.05642956145210071,0.02879639 +,, +897,-0.048044325131713084,0.028723842 +,, +898,0.009861105951412291,0.028936356 +,, +899,-0.028830031006971603,0.02920806 +,, +900,-0.03235596700400088,0.028817976 +,, +901,0.008904557568071014,0.028033573 +,, +902,-0.07523458041288707,0.02829403 +,, +903,0.013071971561841315,0.028730586 +,, +904,0.0934834477274532,0.028063823 +,, +905,-0.04053242874322349,0.025938386 +,, +906,-0.15388335204051912,0.026119849 +,, +907,-0.017610245699196572,0.025715927 +,, +908,0.15522173055833005,0.024751632 +,, +909,-0.04402677526625179,0.024380798 +,, +910,0.08310131099019166,0.025036756 +,, +911,0.03949370292774143,0.025187373 +,, +912,-0.0050705308903662965,0.02495483 +,, +913,0.028529884856694124,0.02490298 +,, +914,0.00152366478585678,0.024376761 +,, +915,-0.014919638130997049,0.025743822 +,, +916,0.0524499132969505,0.025639188 +,, +917,-0.0869860424937354,0.026326407 +,, +918,-0.14841324339632023,0.026857818 +,, +919,-0.015068762870262823,0.0277464 +,, +920,-0.13627989496999127,0.027267817 +,, +921,-0.030193602916700646,0.027652938 +,, +922,-0.047841920236801276,0.027360607 +,, +923,0.038658372602709504,0.026381547 +,, +924,-0.05925787636719683,0.027794749 +,, +925,-0.07910928814389451,0.027558234 +,, +926,-0.09920494387183554,0.028170202 +,, +927,0.003797751570890493,0.028961843 +,, +928,-0.08426050647059752,0.030208837 +,, +929,0.052702810860881535,0.02975759 +,, +930,0.08552509704875551,0.030543024 +,, +931,-0.08310779411351286,0.030078053 +,, +932,0.03630166168132504,0.030241054 +,, +933,-0.018421364484138943,0.03036895 +,, +934,-0.09494849109627715,0.02863724 +,, +935,-0.047099856701185716,0.028168779 +,, +936,-0.019941562592866786,0.027995277 +,, +937,-0.14087350939878673,0.027488345 +,, +938,-0.15450161154656278,0.025942141 +,, +939,0.0012284372976687497,0.025795707 +,, +940,0.19529543463908247,0.024825554 +,, +941,0.022730029592299014,0.024879098 +,, +942,0.10684890102322855,0.024011394 +,, +943,-0.1120347721715523,0.024927912 +,, +944,0.043803828598912804,0.026210299 +,, +945,0.11121088375511853,0.025937015 +,, +946,0.12166234809755419,0.025181139 +,, +947,0.09106208778072791,0.023741735 +,, +948,0.11185937812086787,0.02448627 +,, +949,0.15896703211824426,0.024514308 +,, +950,-0.05091128022150942,0.025589922 +,, +951,0.03178601135937146,0.02536431 +,, +952,0.00915442764678926,0.026264388 +,, +953,0.10656427186099189,0.02586641 +,, +954,0.06959647186848111,0.024535496 +,, +955,0.0729307731683454,0.025471037 +,, +956,0.019121210121135185,0.024154559 +,, +957,0.006662658935123522,0.024299463 +,, +958,0.0024462920960798204,0.02381151 +,, +959,-0.018486212264694685,0.023751894 +,, +960,0.0036098187623368264,0.022737898 +,, +961,-0.03871239110443164,0.023533579 +,, +962,0.1675375280038725,0.02360082 +,, +963,-0.07153114760024035,0.023167742 +,, +964,0.012413921788539548,0.025169145 +,, +965,-0.002938350517885612,0.023714667 +,, +966,0.0900859530925164,0.025202971 +,, +967,-0.06754969797128546,0.026225414 +,, +968,-0.00045524643909457263,0.026297593 +,, +969,0.051997359792516046,0.026395593 +,, +970,0.0919065002734132,0.027115569 +,, +971,-0.05157837658418177,0.026319344 +,, +972,0.05030593348309322,0.026511695 +,, +973,0.01136592547207713,0.026453882 +,, +974,-0.06878432548943259,0.024941832 +,, +975,0.09166146252481182,0.02557173 +,, +976,0.08627168537482494,0.026247421 +,, +977,0.04891159815477748,0.026137274 +,, +978,0.018214734888171387,0.026858892 +,, +979,0.11688770471809765,0.026712859 +,, +980,0.021371720977268208,0.02705202 +,, +981,0.004310134127608438,0.026433576 +,, +982,-0.08294001714425922,0.026189396 +,, +983,0.0539579685826807,0.026525006 +,, +984,0.03087171393669849,0.026705805 +,, +985,0.0692765474481776,0.026744345 +,, +986,0.08672202091027804,0.025746554 +,, +987,0.05978197479753656,0.026410216 +,, +988,0.004507529481353426,0.026189258 +,, +989,0.01909596636545132,0.026101138 +,, +990,-0.06062417490332365,0.02531277 +,, +991,-0.09376965779394521,0.025077185 +,, +992,-0.0378217006069418,0.024089802 +,, +993,0.001538486247929259,0.02372467 +,, +994,0.10951095460606053,0.024481002 +,, +995,0.04292719682313828,0.024543062 +,, +996,-0.03794737590277095,0.023962129 +,, +997,0.14300356221258015,0.022777224 +,, +998,0.003314467473023424,0.022034802 +,, +999,0.07901592213390074,0.021895196 +,, diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/tb/events/events.out.tfevents.1646140386.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/tb/events/events.out.tfevents.1646140386.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..644ee98 Binary files /dev/null and b/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/tb/events/events.out.tfevents.1646140386.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/warn.txt b/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/warn.txt new file mode 100644 index 0000000..f7e0929 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/warn.txt @@ -0,0 +1,8 @@ +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/backup.txt b/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/backup.txt new file mode 100644 index 0000000..0dc856b --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/backup.txt @@ -0,0 +1,7 @@ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.01 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 88 diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/log.txt b/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/log.txt new file mode 100644 index 0000000..3c5378d --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/log.txt @@ -0,0 +1,5048 @@ +Logging to ../log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/ +log dir: ../log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/ +pkl_file: ../archive_tester/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01.pkl +checkpoint_dir: ../checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/ +results_dir: ../results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.01 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 88 +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +--------------------------------------------------------- +| time-step | 0 | +| y_out | -0.0733 | +--------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint 0 +--------------------------------------------------------- +| time-step | 1 | +| y_out | 0.0674 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 2 | +| y_out | -0.0221 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 3 | +| y_out | 0.0157 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 4 | +| y_out | -0.0122 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 5 | +| y_out | -0.122 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 6 | +| y_out | -0.0238 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 7 | +| y_out | 0.0193 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 8 | +| y_out | 0.074 | +--------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26031023 | +| time-step | 9 | +| y_out | 0.00655 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21351269 | +| time-step | 10 | +| y_out | 0.0145 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18336979 | +| time-step | 11 | +| y_out | -0.0601 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15505561 | +| time-step | 12 | +| y_out | 0.000709 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13367245 | +| time-step | 13 | +| y_out | -0.103 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12379172 | +| time-step | 14 | +| y_out | -0.0563 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1196655 | +| time-step | 15 | +| y_out | 0.0535 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10415129 | +| time-step | 16 | +| y_out | 0.000784 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09134625 | +| time-step | 17 | +| y_out | -0.0506 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07917899 | +| time-step | 18 | +| y_out | 0.0583 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07524745 | +| time-step | 19 | +| y_out | -0.0654 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06702645 | +| time-step | 20 | +| y_out | -0.0397 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.061725102 | +| time-step | 21 | +| y_out | -0.0573 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.057398804 | +| time-step | 22 | +| y_out | -0.00388 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.055527873 | +| time-step | 23 | +| y_out | 0.00144 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05091731 | +| time-step | 24 | +| y_out | -0.0146 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04761921 | +| time-step | 25 | +| y_out | 0.0195 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.043828513 | +| time-step | 26 | +| y_out | 0.0372 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041592363 | +| time-step | 27 | +| y_out | -0.0433 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039872997 | +| time-step | 28 | +| y_out | -0.0343 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037364412 | +| time-step | 29 | +| y_out | -0.0109 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035988085 | +| time-step | 30 | +| y_out | -0.0835 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036347017 | +| time-step | 31 | +| y_out | -0.0531 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035212535 | +| time-step | 32 | +| y_out | -0.0974 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032537967 | +| time-step | 33 | +| y_out | 0.0847 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03250489 | +| time-step | 34 | +| y_out | 0.0319 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031569332 | +| time-step | 35 | +| y_out | 0.0534 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029569631 | +| time-step | 36 | +| y_out | 0.0642 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026859771 | +| time-step | 37 | +| y_out | 0.0876 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024990764 | +| time-step | 38 | +| y_out | 0.107 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02430394 | +| time-step | 39 | +| y_out | -0.0244 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.023186047 | +| time-step | 40 | +| y_out | 0.00518 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020670911 | +| time-step | 41 | +| y_out | -0.0359 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0198818 | +| time-step | 42 | +| y_out | 0.0908 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.019569468 | +| time-step | 43 | +| y_out | -0.0447 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018605178 | +| time-step | 44 | +| y_out | -0.00846 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01806185 | +| time-step | 45 | +| y_out | 0.0322 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01870245 | +| time-step | 46 | +| y_out | 0.0359 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.018544752 | +| time-step | 47 | +| y_out | 0.118 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017930094 | +| time-step | 48 | +| y_out | -0.0887 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016933622 | +| time-step | 49 | +| y_out | 0.0639 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016479034 | +| time-step | 50 | +| y_out | -0.0348 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016017461 | +| time-step | 51 | +| y_out | -0.0767 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015107287 | +| time-step | 52 | +| y_out | -0.0663 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014478793 | +| time-step | 53 | +| y_out | -0.0666 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013966963 | +| time-step | 54 | +| y_out | 0.00879 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013132383 | +| time-step | 55 | +| y_out | -0.0423 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012082603 | +| time-step | 56 | +| y_out | 0.088 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011799296 | +| time-step | 57 | +| y_out | 0.00427 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01203368 | +| time-step | 58 | +| y_out | -0.0279 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.011613684 | +| time-step | 59 | +| y_out | 0.076 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011724345 | +| time-step | 60 | +| y_out | -0.0132 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011878715 | +| time-step | 61 | +| y_out | -0.00401 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012243206 | +| time-step | 62 | +| y_out | 0.113 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012304836 | +| time-step | 63 | +| y_out | 0.0154 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012427358 | +| time-step | 64 | +| y_out | -0.0405 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012178169 | +| time-step | 65 | +| y_out | -0.0247 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012319158 | +| time-step | 66 | +| y_out | -0.0597 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012303159 | +| time-step | 67 | +| y_out | -0.0777 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012027314 | +| time-step | 68 | +| y_out | -0.0329 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011956895 | +| time-step | 69 | +| y_out | 0.0964 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011164153 | +| time-step | 70 | +| y_out | -0.0164 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011343891 | +| time-step | 71 | +| y_out | 0.102 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011425108 | +| time-step | 72 | +| y_out | 0.0973 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01146083 | +| time-step | 73 | +| y_out | 0.0222 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.011823762 | +| time-step | 74 | +| y_out | 0.0866 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011945274 | +| time-step | 75 | +| y_out | -0.153 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011839587 | +| time-step | 76 | +| y_out | -0.117 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011633513 | +| time-step | 77 | +| y_out | -0.0638 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011656511 | +| time-step | 78 | +| y_out | -0.0167 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01172599 | +| time-step | 79 | +| y_out | -0.0982 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.011577224 | +| time-step | 80 | +| y_out | -0.00113 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011471375 | +| time-step | 81 | +| y_out | 0.0153 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011363814 | +| time-step | 82 | +| y_out | 0.0724 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011001265 | +| time-step | 83 | +| y_out | -0.0164 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010873512 | +| time-step | 84 | +| y_out | -0.0532 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01137321 | +| time-step | 85 | +| y_out | 0.046 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01110844 | +| time-step | 86 | +| y_out | -0.0428 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.011072291 | +| time-step | 87 | +| y_out | -0.00239 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010852053 | +| time-step | 88 | +| y_out | -0.0804 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011062831 | +| time-step | 89 | +| y_out | -0.0596 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011090169 | +| time-step | 90 | +| y_out | -0.0482 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011159094 | +| time-step | 91 | +| y_out | -0.0419 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01138119 | +| time-step | 92 | +| y_out | 0.0889 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01147932 | +| time-step | 93 | +| y_out | -0.0562 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.011230049 | +| time-step | 94 | +| y_out | -0.00708 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01104031 | +| time-step | 95 | +| y_out | -0.0441 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010987503 | +| time-step | 96 | +| y_out | -0.0395 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011121065 | +| time-step | 97 | +| y_out | -0.0647 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010915167 | +| time-step | 98 | +| y_out | -0.0314 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010247631 | +| time-step | 99 | +| y_out | 0.0419 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010305108 | +| time-step | 100 | +| y_out | 0.131 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint 100 +------------------------------------------------------------ +| perf/mse | 0.010660535 | +| time-step | 101 | +| y_out | -0.0347 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010309954 | +| time-step | 102 | +| y_out | -0.00651 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010640209 | +| time-step | 103 | +| y_out | -0.145 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010558878 | +| time-step | 104 | +| y_out | 0.102 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010505226 | +| time-step | 105 | +| y_out | -0.0213 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010820939 | +| time-step | 106 | +| y_out | 0.0962 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010339354 | +| time-step | 107 | +| y_out | 0.0175 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010475488 | +| time-step | 108 | +| y_out | 0.0066 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010944723 | +| time-step | 109 | +| y_out | 0.108 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010873228 | +| time-step | 110 | +| y_out | -0.0569 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010329481 | +| time-step | 111 | +| y_out | 0.0658 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0100920275 | +| time-step | 112 | +| y_out | 0.116 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009621786 | +| time-step | 113 | +| y_out | -0.0769 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009209978 | +| time-step | 114 | +| y_out | 0.0436 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008970896 | +| time-step | 115 | +| y_out | 0.0435 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00884672 | +| time-step | 116 | +| y_out | 0.134 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009148502 | +| time-step | 117 | +| y_out | 0.13 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008988777 | +| time-step | 118 | +| y_out | -0.0132 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008639535 | +| time-step | 119 | +| y_out | 0.054 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008648804 | +| time-step | 120 | +| y_out | -0.0634 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008502534 | +| time-step | 121 | +| y_out | -0.0703 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008378643 | +| time-step | 122 | +| y_out | 0.0372 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008391513 | +| time-step | 123 | +| y_out | -0.00715 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008633414 | +| time-step | 124 | +| y_out | 0.123 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008756106 | +| time-step | 125 | +| y_out | 0.0371 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008520562 | +| time-step | 126 | +| y_out | -0.0951 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008229163 | +| time-step | 127 | +| y_out | -0.0981 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00833922 | +| time-step | 128 | +| y_out | -0.0449 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008834759 | +| time-step | 129 | +| y_out | 0.0858 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008692222 | +| time-step | 130 | +| y_out | -0.000844 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008742148 | +| time-step | 131 | +| y_out | 0.0313 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00919948 | +| time-step | 132 | +| y_out | 0.0152 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0093329735 | +| time-step | 133 | +| y_out | 0.00194 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0096267015 | +| time-step | 134 | +| y_out | -0.0275 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00945548 | +| time-step | 135 | +| y_out | -0.0337 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009729335 | +| time-step | 136 | +| y_out | 0.016 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0101147685 | +| time-step | 137 | +| y_out | 0.131 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009680775 | +| time-step | 138 | +| y_out | -0.0648 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0092971735 | +| time-step | 139 | +| y_out | -0.0343 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009679349 | +| time-step | 140 | +| y_out | 0.136 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009776584 | +| time-step | 141 | +| y_out | -0.0136 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009558963 | +| time-step | 142 | +| y_out | 0.00176 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0096537825 | +| time-step | 143 | +| y_out | 0.157 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009238768 | +| time-step | 144 | +| y_out | -0.0999 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009039121 | +| time-step | 145 | +| y_out | 0.0282 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009134624 | +| time-step | 146 | +| y_out | -0.0482 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008712808 | +| time-step | 147 | +| y_out | -0.0459 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008852864 | +| time-step | 148 | +| y_out | -0.00626 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008944349 | +| time-step | 149 | +| y_out | 0.00774 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008603865 | +| time-step | 150 | +| y_out | -0.0209 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008121284 | +| time-step | 151 | +| y_out | 0.0948 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007980691 | +| time-step | 152 | +| y_out | -0.0431 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0076287724 | +| time-step | 153 | +| y_out | -0.0117 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0076569216 | +| time-step | 154 | +| y_out | -0.0862 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00757899 | +| time-step | 155 | +| y_out | -0.0688 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0070884502 | +| time-step | 156 | +| y_out | 0.00218 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007514848 | +| time-step | 157 | +| y_out | 0.0939 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0074733854 | +| time-step | 158 | +| y_out | 0.0565 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007117582 | +| time-step | 159 | +| y_out | -0.0453 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007110757 | +| time-step | 160 | +| y_out | 0.0345 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0071210256 | +| time-step | 161 | +| y_out | -0.0508 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0069531323 | +| time-step | 162 | +| y_out | 0.0665 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0072190105 | +| time-step | 163 | +| y_out | -0.0518 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006955318 | +| time-step | 164 | +| y_out | -0.00207 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0070700618 | +| time-step | 165 | +| y_out | -0.00238 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007488442 | +| time-step | 166 | +| y_out | 0.0604 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007107269 | +| time-step | 167 | +| y_out | -0.114 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007080859 | +| time-step | 168 | +| y_out | -0.0185 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007167834 | +| time-step | 169 | +| y_out | 0.0771 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0069548436 | +| time-step | 170 | +| y_out | -0.0688 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0070898533 | +| time-step | 171 | +| y_out | 0.00152 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007524592 | +| time-step | 172 | +| y_out | 0.0702 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0071449913 | +| time-step | 173 | +| y_out | 0.0714 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0071817026 | +| time-step | 174 | +| y_out | 0.0292 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007101299 | +| time-step | 175 | +| y_out | 0.00933 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0068930946 | +| time-step | 176 | +| y_out | 0.0788 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0066107744 | +| time-step | 177 | +| y_out | -0.00554 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0064534033 | +| time-step | 178 | +| y_out | -0.0581 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006479381 | +| time-step | 179 | +| y_out | -0.0563 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0063861934 | +| time-step | 180 | +| y_out | 0.133 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0064704185 | +| time-step | 181 | +| y_out | -0.175 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006569355 | +| time-step | 182 | +| y_out | -0.132 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0067012487 | +| time-step | 183 | +| y_out | -0.0501 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0068758912 | +| time-step | 184 | +| y_out | -0.00386 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0069683283 | +| time-step | 185 | +| y_out | 0.00795 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006742413 | +| time-step | 186 | +| y_out | -0.069 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0070079966 | +| time-step | 187 | +| y_out | -0.0244 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0074630426 | +| time-step | 188 | +| y_out | -0.0627 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0071394816 | +| time-step | 189 | +| y_out | 0.137 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0075824684 | +| time-step | 190 | +| y_out | 0.0159 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007266394 | +| time-step | 191 | +| y_out | -0.0235 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006797208 | +| time-step | 192 | +| y_out | 0.0197 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00663698 | +| time-step | 193 | +| y_out | 0.119 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0064894995 | +| time-step | 194 | +| y_out | -0.119 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0065049604 | +| time-step | 195 | +| y_out | 0.079 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0065847985 | +| time-step | 196 | +| y_out | 0.0854 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006266739 | +| time-step | 197 | +| y_out | -0.022 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005874417 | +| time-step | 198 | +| y_out | -0.0101 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0060962318 | +| time-step | 199 | +| y_out | 0.148 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0056852703 | +| time-step | 200 | +| y_out | 0.00375 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint 200 +------------------------------------------------------------- +| perf/mse | 0.0056905826 | +| time-step | 201 | +| y_out | -0.0461 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0056968005 | +| time-step | 202 | +| y_out | -0.0284 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0059170853 | +| time-step | 203 | +| y_out | -0.0369 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005800717 | +| time-step | 204 | +| y_out | 0.0524 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0054552252 | +| time-step | 205 | +| y_out | 0.00161 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005533154 | +| time-step | 206 | +| y_out | 0.194 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005827756 | +| time-step | 207 | +| y_out | 0.0368 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0059373435 | +| time-step | 208 | +| y_out | 0.00418 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006007456 | +| time-step | 209 | +| y_out | -0.0446 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005976817 | +| time-step | 210 | +| y_out | 0.0574 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0061158566 | +| time-step | 211 | +| y_out | 0.0554 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005955133 | +| time-step | 212 | +| y_out | -0.07 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005852655 | +| time-step | 213 | +| y_out | 0.0174 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0058372607 | +| time-step | 214 | +| y_out | 0.0388 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0061067664 | +| time-step | 215 | +| y_out | -0.0266 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0058830264 | +| time-step | 216 | +| y_out | -0.0452 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0059009306 | +| time-step | 217 | +| y_out | 0.154 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0057516405 | +| time-step | 218 | +| y_out | -0.0367 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005689205 | +| time-step | 219 | +| y_out | -0.0868 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005685425 | +| time-step | 220 | +| y_out | -0.124 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0055836244 | +| time-step | 221 | +| y_out | 0.0853 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005851838 | +| time-step | 222 | +| y_out | 0.000309 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005647618 | +| time-step | 223 | +| y_out | 0.141 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0056630773 | +| time-step | 224 | +| y_out | -0.114 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005676373 | +| time-step | 225 | +| y_out | -0.0723 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00574146 | +| time-step | 226 | +| y_out | -0.0297 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0056439033 | +| time-step | 227 | +| y_out | -0.036 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0056503955 | +| time-step | 228 | +| y_out | -0.0478 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005390475 | +| time-step | 229 | +| y_out | 0.029 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0054510543 | +| time-step | 230 | +| y_out | 0.0827 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005657955 | +| time-step | 231 | +| y_out | 0.0621 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0054920064 | +| time-step | 232 | +| y_out | -0.0329 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0057251537 | +| time-step | 233 | +| y_out | -0.0822 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0057805083 | +| time-step | 234 | +| y_out | 0.071 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005538959 | +| time-step | 235 | +| y_out | -0.0181 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005525657 | +| time-step | 236 | +| y_out | 0.132 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0056345984 | +| time-step | 237 | +| y_out | 0.014 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0057900175 | +| time-step | 238 | +| y_out | 0.0269 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0058385995 | +| time-step | 239 | +| y_out | 0.0633 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005932725 | +| time-step | 240 | +| y_out | 0.0878 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0059852153 | +| time-step | 241 | +| y_out | -0.0502 | +------------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0059008 | +| time-step | 242 | +| y_out | 0.0314 | +---------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0058916872 | +| time-step | 243 | +| y_out | 0.0125 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006113454 | +| time-step | 244 | +| y_out | 0.0267 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006300458 | +| time-step | 245 | +| y_out | 0.038 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006252008 | +| time-step | 246 | +| y_out | 0.041 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006121675 | +| time-step | 247 | +| y_out | 0.0694 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006164758 | +| time-step | 248 | +| y_out | -0.0384 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0063201278 | +| time-step | 249 | +| y_out | 0.026 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0061799046 | +| time-step | 250 | +| y_out | 0.0308 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0056938594 | +| time-step | 251 | +| y_out | 0.0242 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005799958 | +| time-step | 252 | +| y_out | 0.0937 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0057879714 | +| time-step | 253 | +| y_out | 0.0304 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054863626 | +| time-step | 254 | +| y_out | 0.0163 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005453122 | +| time-step | 255 | +| y_out | 0.0353 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0055143707 | +| time-step | 256 | +| y_out | -0.00536 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053968215 | +| time-step | 257 | +| y_out | -0.141 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053051896 | +| time-step | 258 | +| y_out | 0.071 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053464267 | +| time-step | 259 | +| y_out | 0.0116 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053339684 | +| time-step | 260 | +| y_out | 0.0113 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005537163 | +| time-step | 261 | +| y_out | 0.005 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0056337644 | +| time-step | 262 | +| y_out | 0.0265 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0055603823 | +| time-step | 263 | +| y_out | -0.0274 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0055800793 | +| time-step | 264 | +| y_out | -0.0619 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005743446 | +| time-step | 265 | +| y_out | -0.0378 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0057869824 | +| time-step | 266 | +| y_out | -0.0436 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0058582886 | +| time-step | 267 | +| y_out | 0.196 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0057696034 | +| time-step | 268 | +| y_out | 0.0295 | +------------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0058006 | +| time-step | 269 | +| y_out | 0.00851 | +---------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0058288774 | +| time-step | 270 | +| y_out | 0.0299 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005862211 | +| time-step | 271 | +| y_out | 0.0698 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0055047823 | +| time-step | 272 | +| y_out | -0.0172 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054702526 | +| time-step | 273 | +| y_out | 0.0411 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0055995346 | +| time-step | 274 | +| y_out | 0.121 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0051725837 | +| time-step | 275 | +| y_out | 0.0267 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005104615 | +| time-step | 276 | +| y_out | -0.00406 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004917266 | +| time-step | 277 | +| y_out | 0.075 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0051001003 | +| time-step | 278 | +| y_out | 0.0736 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0049710376 | +| time-step | 279 | +| y_out | -0.0587 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0051388624 | +| time-step | 280 | +| y_out | 0.0122 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0050842958 | +| time-step | 281 | +| y_out | 0.0693 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005420475 | +| time-step | 282 | +| y_out | 0.0741 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0053245174 | +| time-step | 283 | +| y_out | -0.00115 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053305677 | +| time-step | 284 | +| y_out | -0.0295 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005521316 | +| time-step | 285 | +| y_out | -0.0894 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0053106486 | +| time-step | 286 | +| y_out | 0.00486 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00569501 | +| time-step | 287 | +| y_out | 0.013 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054959194 | +| time-step | 288 | +| y_out | -0.0979 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005306167 | +| time-step | 289 | +| y_out | -0.0268 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005315619 | +| time-step | 290 | +| y_out | 0.0255 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005450518 | +| time-step | 291 | +| y_out | -0.0844 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0051769167 | +| time-step | 292 | +| y_out | 0.208 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005234494 | +| time-step | 293 | +| y_out | -0.0382 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005097677 | +| time-step | 294 | +| y_out | -0.039 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005130583 | +| time-step | 295 | +| y_out | 0.0344 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005126798 | +| time-step | 296 | +| y_out | -0.00368 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0048689307 | +| time-step | 297 | +| y_out | 0.0587 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00480453 | +| time-step | 298 | +| y_out | -0.0115 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004892632 | +| time-step | 299 | +| y_out | -0.168 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0045462097 | +| time-step | 300 | +| y_out | 0.0511 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint 300 +------------------------------------------------------------ +| perf/mse | 0.004359688 | +| time-step | 301 | +| y_out | 0.0158 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004396187 | +| time-step | 302 | +| y_out | 0.00161 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0045867893 | +| time-step | 303 | +| y_out | -0.00954 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0044956906 | +| time-step | 304 | +| y_out | 0.0204 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004379426 | +| time-step | 305 | +| y_out | -0.0783 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004473804 | +| time-step | 306 | +| y_out | -0.0598 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0043944838 | +| time-step | 307 | +| y_out | -0.136 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0045137657 | +| time-step | 308 | +| y_out | -0.0457 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0045762104 | +| time-step | 309 | +| y_out | 0.0418 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047158636 | +| time-step | 310 | +| y_out | -0.0554 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00456644 | +| time-step | 311 | +| y_out | -0.085 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004636108 | +| time-step | 312 | +| y_out | 0.0383 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0043530185 | +| time-step | 313 | +| y_out | 0.0231 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0045791133 | +| time-step | 314 | +| y_out | 0.098 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047738934 | +| time-step | 315 | +| y_out | 0.162 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047483435 | +| time-step | 316 | +| y_out | -0.0338 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004779514 | +| time-step | 317 | +| y_out | 0.0724 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004636596 | +| time-step | 318 | +| y_out | 0.0345 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0046113627 | +| time-step | 319 | +| y_out | 0.0211 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004428326 | +| time-step | 320 | +| y_out | -0.0302 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0046538087 | +| time-step | 321 | +| y_out | 0.0793 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0046236417 | +| time-step | 322 | +| y_out | 0.0291 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004737603 | +| time-step | 323 | +| y_out | 0.0345 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0044686804 | +| time-step | 324 | +| y_out | -0.0901 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0040447116 | +| time-step | 325 | +| y_out | 0.0969 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004052042 | +| time-step | 326 | +| y_out | -0.0629 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0041114376 | +| time-step | 327 | +| y_out | 0.0992 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0040254313 | +| time-step | 328 | +| y_out | 0.00626 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039073573 | +| time-step | 329 | +| y_out | 0.0539 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003980251 | +| time-step | 330 | +| y_out | 0.0982 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0037475578 | +| time-step | 331 | +| y_out | -0.0355 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003618455 | +| time-step | 332 | +| y_out | -0.0836 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0035154175 | +| time-step | 333 | +| y_out | 0.0291 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035970851 | +| time-step | 334 | +| y_out | -0.0406 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036502003 | +| time-step | 335 | +| y_out | -0.0314 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035669014 | +| time-step | 336 | +| y_out | -0.0647 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003383059 | +| time-step | 337 | +| y_out | -0.0222 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0034307358 | +| time-step | 338 | +| y_out | -0.0938 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033943546 | +| time-step | 339 | +| y_out | -0.064 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034319449 | +| time-step | 340 | +| y_out | -0.0805 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036122575 | +| time-step | 341 | +| y_out | 0.0189 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037124418 | +| time-step | 342 | +| y_out | -0.0246 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036883645 | +| time-step | 343 | +| y_out | -0.0299 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037975118 | +| time-step | 344 | +| y_out | -0.00647 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038647472 | +| time-step | 345 | +| y_out | -0.135 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039787465 | +| time-step | 346 | +| y_out | -0.108 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004058059 | +| time-step | 347 | +| y_out | 0.097 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040088957 | +| time-step | 348 | +| y_out | 0.0157 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004138083 | +| time-step | 349 | +| y_out | -0.00724 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040200637 | +| time-step | 350 | +| y_out | -0.0345 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038482684 | +| time-step | 351 | +| y_out | 0.000321 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00375184 | +| time-step | 352 | +| y_out | -0.0134 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003710435 | +| time-step | 353 | +| y_out | 0.139 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0035248343 | +| time-step | 354 | +| y_out | 0.124 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036025282 | +| time-step | 355 | +| y_out | 0.0407 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035022337 | +| time-step | 356 | +| y_out | 0.0857 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034867008 | +| time-step | 357 | +| y_out | 0.0444 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034245285 | +| time-step | 358 | +| y_out | 0.0107 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032818771 | +| time-step | 359 | +| y_out | -0.016 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003363476 | +| time-step | 360 | +| y_out | 0.0692 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0032919352 | +| time-step | 361 | +| y_out | 0.0153 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032907515 | +| time-step | 362 | +| y_out | -0.121 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033411705 | +| time-step | 363 | +| y_out | -0.0205 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032866194 | +| time-step | 364 | +| y_out | 0.0639 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032076626 | +| time-step | 365 | +| y_out | -0.0391 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032435365 | +| time-step | 366 | +| y_out | 0.097 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031282164 | +| time-step | 367 | +| y_out | -0.0145 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032171588 | +| time-step | 368 | +| y_out | 0.0348 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031775683 | +| time-step | 369 | +| y_out | 0.0723 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030347174 | +| time-step | 370 | +| y_out | 0.0121 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030330648 | +| time-step | 371 | +| y_out | 0.0426 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030724104 | +| time-step | 372 | +| y_out | -0.0397 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030502945 | +| time-step | 373 | +| y_out | 0.0228 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002985191 | +| time-step | 374 | +| y_out | 0.0608 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0028567456 | +| time-step | 375 | +| y_out | -0.0859 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027451396 | +| time-step | 376 | +| y_out | -0.101 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026854528 | +| time-step | 377 | +| y_out | 0.114 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027308264 | +| time-step | 378 | +| y_out | -0.0231 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002766747 | +| time-step | 379 | +| y_out | -0.00318 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0027897893 | +| time-step | 380 | +| y_out | -0.165 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028267715 | +| time-step | 381 | +| y_out | 0.0794 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027630434 | +| time-step | 382 | +| y_out | 0.126 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027344238 | +| time-step | 383 | +| y_out | -0.114 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002815619 | +| time-step | 384 | +| y_out | -0.00961 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0029575939 | +| time-step | 385 | +| y_out | 0.063 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003051009 | +| time-step | 386 | +| y_out | 0.0707 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0031477264 | +| time-step | 387 | +| y_out | 0.0476 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030540498 | +| time-step | 388 | +| y_out | 0.0324 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031411506 | +| time-step | 389 | +| y_out | 0.221 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031523048 | +| time-step | 390 | +| y_out | -0.0302 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003295749 | +| time-step | 391 | +| y_out | -0.0629 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0032405376 | +| time-step | 392 | +| y_out | -0.00234 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031862468 | +| time-step | 393 | +| y_out | -0.0205 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031066793 | +| time-step | 394 | +| y_out | -0.042 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029888048 | +| time-step | 395 | +| y_out | -0.0261 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028266455 | +| time-step | 396 | +| y_out | 0.00682 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027447361 | +| time-step | 397 | +| y_out | -0.0124 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027547204 | +| time-step | 398 | +| y_out | 0.0341 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026042599 | +| time-step | 399 | +| y_out | -0.136 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027166272 | +| time-step | 400 | +| y_out | 0.015 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint 400 +------------------------------------------------------------ +| perf/mse | 0.002676873 | +| time-step | 401 | +| y_out | -0.0788 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002675979 | +| time-step | 402 | +| y_out | 0.0993 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0026569306 | +| time-step | 403 | +| y_out | -0.0555 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027379273 | +| time-step | 404 | +| y_out | 0.0413 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027675773 | +| time-step | 405 | +| y_out | 0.0476 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028112398 | +| time-step | 406 | +| y_out | 0.068 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028223158 | +| time-step | 407 | +| y_out | -0.0432 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028645063 | +| time-step | 408 | +| y_out | -0.0889 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030290063 | +| time-step | 409 | +| y_out | 0.0359 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002875284 | +| time-step | 410 | +| y_out | -0.00441 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00272735 | +| time-step | 411 | +| y_out | -0.0698 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002780829 | +| time-step | 412 | +| y_out | 0.0261 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0029790043 | +| time-step | 413 | +| y_out | 0.0533 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002979803 | +| time-step | 414 | +| y_out | 0.0784 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0030229974 | +| time-step | 415 | +| y_out | 0.0637 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031487495 | +| time-step | 416 | +| y_out | -0.119 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032071434 | +| time-step | 417 | +| y_out | 0.14 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032605317 | +| time-step | 418 | +| y_out | 0.0827 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031939088 | +| time-step | 419 | +| y_out | -0.0431 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032815754 | +| time-step | 420 | +| y_out | -0.0434 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003370655 | +| time-step | 421 | +| y_out | 0.0151 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0034016422 | +| time-step | 422 | +| y_out | -0.0598 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031806983 | +| time-step | 423 | +| y_out | -0.0882 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031204994 | +| time-step | 424 | +| y_out | -0.0459 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003251347 | +| time-step | 425 | +| y_out | 0.0396 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0033099924 | +| time-step | 426 | +| y_out | 0.0266 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033190246 | +| time-step | 427 | +| y_out | 0.0366 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032771747 | +| time-step | 428 | +| y_out | -0.0232 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032331583 | +| time-step | 429 | +| y_out | 0.145 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032746133 | +| time-step | 430 | +| y_out | -0.00724 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033960561 | +| time-step | 431 | +| y_out | 0.102 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034853958 | +| time-step | 432 | +| y_out | -0.00559 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036518336 | +| time-step | 433 | +| y_out | 0.0185 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038200952 | +| time-step | 434 | +| y_out | 0.0693 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003672272 | +| time-step | 435 | +| y_out | -0.018 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0037124723 | +| time-step | 436 | +| y_out | -0.00863 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038609966 | +| time-step | 437 | +| y_out | -0.0609 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038170596 | +| time-step | 438 | +| y_out | -0.0829 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036541256 | +| time-step | 439 | +| y_out | 0.0195 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003855871 | +| time-step | 440 | +| y_out | 0.114 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00367743 | +| time-step | 441 | +| y_out | 0.0208 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003791449 | +| time-step | 442 | +| y_out | -0.0272 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0038086295 | +| time-step | 443 | +| y_out | -0.059 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036459353 | +| time-step | 444 | +| y_out | 0.123 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038562906 | +| time-step | 445 | +| y_out | -0.0903 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036505803 | +| time-step | 446 | +| y_out | -0.0238 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033768122 | +| time-step | 447 | +| y_out | -0.0213 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033907418 | +| time-step | 448 | +| y_out | -0.00123 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003505027 | +| time-step | 449 | +| y_out | -0.0661 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003177321 | +| time-step | 450 | +| y_out | -0.138 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0031363026 | +| time-step | 451 | +| y_out | 0.134 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027600173 | +| time-step | 452 | +| y_out | -0.0716 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002515526 | +| time-step | 453 | +| y_out | 0.0989 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0025456373 | +| time-step | 454 | +| y_out | -0.0396 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00228338 | +| time-step | 455 | +| y_out | -0.0403 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023438004 | +| time-step | 456 | +| y_out | 0.0164 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025289222 | +| time-step | 457 | +| y_out | -0.00588 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002416496 | +| time-step | 458 | +| y_out | -0.0819 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0025297415 | +| time-step | 459 | +| y_out | 0.0414 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025940458 | +| time-step | 460 | +| y_out | -0.0214 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026486102 | +| time-step | 461 | +| y_out | -0.0646 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002723851 | +| time-step | 462 | +| y_out | 0.025 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0028438596 | +| time-step | 463 | +| y_out | -0.0975 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002761069 | +| time-step | 464 | +| y_out | -0.0641 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0028378738 | +| time-step | 465 | +| y_out | -0.0553 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027785497 | +| time-step | 466 | +| y_out | 0.0139 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002699546 | +| time-step | 467 | +| y_out | -0.0662 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0027790226 | +| time-step | 468 | +| y_out | -0.144 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002822285 | +| time-step | 469 | +| y_out | -0.0368 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002787628 | +| time-step | 470 | +| y_out | -0.0386 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0028056267 | +| time-step | 471 | +| y_out | -0.122 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030464206 | +| time-step | 472 | +| y_out | -0.00104 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030079607 | +| time-step | 473 | +| y_out | -0.109 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031134698 | +| time-step | 474 | +| y_out | 0.0334 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030813986 | +| time-step | 475 | +| y_out | -0.0036 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003052196 | +| time-step | 476 | +| y_out | 0.0469 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0030555069 | +| time-step | 477 | +| y_out | -0.0625 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029650487 | +| time-step | 478 | +| y_out | -0.0213 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002779623 | +| time-step | 479 | +| y_out | -0.179 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0027619165 | +| time-step | 480 | +| y_out | 0.097 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027293614 | +| time-step | 481 | +| y_out | 0.0632 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025570656 | +| time-step | 482 | +| y_out | -0.111 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002629723 | +| time-step | 483 | +| y_out | 0.0248 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0024707608 | +| time-step | 484 | +| y_out | -0.0446 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023626718 | +| time-step | 485 | +| y_out | -0.0561 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023490011 | +| time-step | 486 | +| y_out | -0.051 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022600389 | +| time-step | 487 | +| y_out | -0.0461 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002234936 | +| time-step | 488 | +| y_out | -0.089 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0023461932 | +| time-step | 489 | +| y_out | 0.1 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002299776 | +| time-step | 490 | +| y_out | -0.16 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0023411014 | +| time-step | 491 | +| y_out | 0.182 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023036448 | +| time-step | 492 | +| y_out | 0.00504 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021829254 | +| time-step | 493 | +| y_out | 0.0272 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021960933 | +| time-step | 494 | +| y_out | -0.151 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023803338 | +| time-step | 495 | +| y_out | 0.0225 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002331805 | +| time-step | 496 | +| y_out | -0.0696 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00233934 | +| time-step | 497 | +| y_out | 0.161 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024229854 | +| time-step | 498 | +| y_out | 0.00285 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022554558 | +| time-step | 499 | +| y_out | 0.0966 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022238677 | +| time-step | 500 | +| y_out | -0.00512 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint 500 +------------------------------------------------------------- +| perf/mse | 0.0021433183 | +| time-step | 501 | +| y_out | -0.0189 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002113535 | +| time-step | 502 | +| y_out | -0.0897 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002100234 | +| time-step | 503 | +| y_out | 0.0105 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0021240811 | +| time-step | 504 | +| y_out | -0.0581 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019771294 | +| time-step | 505 | +| y_out | -0.0993 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020351703 | +| time-step | 506 | +| y_out | -0.0601 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020447446 | +| time-step | 507 | +| y_out | -0.00244 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019718576 | +| time-step | 508 | +| y_out | -0.0819 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020063096 | +| time-step | 509 | +| y_out | -0.0449 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020783716 | +| time-step | 510 | +| y_out | -0.0284 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020546622 | +| time-step | 511 | +| y_out | 0.00401 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020450833 | +| time-step | 512 | +| y_out | -0.0165 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021281638 | +| time-step | 513 | +| y_out | -0.0339 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002143634 | +| time-step | 514 | +| y_out | 0.0293 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0022015078 | +| time-step | 515 | +| y_out | 0.0224 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021475754 | +| time-step | 516 | +| y_out | 0.0598 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022269427 | +| time-step | 517 | +| y_out | -0.00662 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023432763 | +| time-step | 518 | +| y_out | 0.0485 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002401222 | +| time-step | 519 | +| y_out | 0.0741 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0024662379 | +| time-step | 520 | +| y_out | 0.0489 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024707017 | +| time-step | 521 | +| y_out | -0.0195 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025454203 | +| time-step | 522 | +| y_out | -0.0201 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024890187 | +| time-step | 523 | +| y_out | 0.0287 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002505992 | +| time-step | 524 | +| y_out | 0.0109 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0026073395 | +| time-step | 525 | +| y_out | 0.00733 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025565855 | +| time-step | 526 | +| y_out | -0.0424 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024391564 | +| time-step | 527 | +| y_out | 0.0453 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024392153 | +| time-step | 528 | +| y_out | -0.089 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024006793 | +| time-step | 529 | +| y_out | -0.043 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002292173 | +| time-step | 530 | +| y_out | -0.0022 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0024059769 | +| time-step | 531 | +| y_out | -0.0893 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024055324 | +| time-step | 532 | +| y_out | -0.0218 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024946951 | +| time-step | 533 | +| y_out | -0.0259 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024668395 | +| time-step | 534 | +| y_out | 0.0455 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023326012 | +| time-step | 535 | +| y_out | -0.0783 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002443885 | +| time-step | 536 | +| y_out | -0.0663 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0025234304 | +| time-step | 537 | +| y_out | -0.0149 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024664085 | +| time-step | 538 | +| y_out | -0.0484 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002584805 | +| time-step | 539 | +| y_out | -0.0376 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0025890027 | +| time-step | 540 | +| y_out | 0.118 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025133213 | +| time-step | 541 | +| y_out | -0.0494 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026952599 | +| time-step | 542 | +| y_out | -0.0879 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027123834 | +| time-step | 543 | +| y_out | 0.0681 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002689264 | +| time-step | 544 | +| y_out | 0.063 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0027741035 | +| time-step | 545 | +| y_out | -0.0289 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027414158 | +| time-step | 546 | +| y_out | 0.0981 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027187539 | +| time-step | 547 | +| y_out | 0.0381 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002805574 | +| time-step | 548 | +| y_out | 0.0597 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00282604 | +| time-step | 549 | +| y_out | 0.0145 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028716237 | +| time-step | 550 | +| y_out | -0.00545 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028156699 | +| time-step | 551 | +| y_out | 0.00647 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026442178 | +| time-step | 552 | +| y_out | 0.0445 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025296258 | +| time-step | 553 | +| y_out | 0.0179 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026639043 | +| time-step | 554 | +| y_out | 0.18 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026615947 | +| time-step | 555 | +| y_out | -0.0226 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026516842 | +| time-step | 556 | +| y_out | -0.00498 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026206903 | +| time-step | 557 | +| y_out | 0.00986 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024968733 | +| time-step | 558 | +| y_out | -0.00153 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002526144 | +| time-step | 559 | +| y_out | 0.111 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0024777227 | +| time-step | 560 | +| y_out | -0.0197 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024897256 | +| time-step | 561 | +| y_out | -0.0101 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023758558 | +| time-step | 562 | +| y_out | -0.129 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024036537 | +| time-step | 563 | +| y_out | -0.0395 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022878686 | +| time-step | 564 | +| y_out | -0.0903 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020820925 | +| time-step | 565 | +| y_out | 0.0562 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020221476 | +| time-step | 566 | +| y_out | -0.0534 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001976047 | +| time-step | 567 | +| y_out | -0.0749 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0019488174 | +| time-step | 568 | +| y_out | -0.0119 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018191446 | +| time-step | 569 | +| y_out | -0.0231 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017933354 | +| time-step | 570 | +| y_out | -0.0903 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017584019 | +| time-step | 571 | +| y_out | -0.0175 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017262285 | +| time-step | 572 | +| y_out | 0.0341 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016989928 | +| time-step | 573 | +| y_out | 0.00451 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016640241 | +| time-step | 574 | +| y_out | -0.0501 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017585425 | +| time-step | 575 | +| y_out | -0.156 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019102652 | +| time-step | 576 | +| y_out | -0.0729 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018732961 | +| time-step | 577 | +| y_out | 0.00512 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018699842 | +| time-step | 578 | +| y_out | -0.0346 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017665562 | +| time-step | 579 | +| y_out | -0.056 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017897019 | +| time-step | 580 | +| y_out | 0.0517 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017840561 | +| time-step | 581 | +| y_out | 0.104 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017592997 | +| time-step | 582 | +| y_out | 0.0892 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017076783 | +| time-step | 583 | +| y_out | 0.0428 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016387952 | +| time-step | 584 | +| y_out | 0.117 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015810037 | +| time-step | 585 | +| y_out | -0.029 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014622647 | +| time-step | 586 | +| y_out | -0.0366 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014957235 | +| time-step | 587 | +| y_out | -0.0571 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014543158 | +| time-step | 588 | +| y_out | -0.0813 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014812534 | +| time-step | 589 | +| y_out | 0.00692 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001367893 | +| time-step | 590 | +| y_out | 0.0753 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0013970856 | +| time-step | 591 | +| y_out | -0.119 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015061393 | +| time-step | 592 | +| y_out | 0.0535 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015357451 | +| time-step | 593 | +| y_out | -0.0124 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016547425 | +| time-step | 594 | +| y_out | -0.0396 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016331424 | +| time-step | 595 | +| y_out | 0.0337 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016304584 | +| time-step | 596 | +| y_out | -0.0556 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016652457 | +| time-step | 597 | +| y_out | 0.137 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017786825 | +| time-step | 598 | +| y_out | -0.146 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017203672 | +| time-step | 599 | +| y_out | 0.0228 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001786032 | +| time-step | 600 | +| y_out | 0.0544 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint 600 +------------------------------------------------------------- +| perf/mse | 0.0017361853 | +| time-step | 601 | +| y_out | -0.158 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016937058 | +| time-step | 602 | +| y_out | -0.0661 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016890537 | +| time-step | 603 | +| y_out | 0.0392 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016218744 | +| time-step | 604 | +| y_out | 0.073 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001601972 | +| time-step | 605 | +| y_out | -0.0042 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015790925 | +| time-step | 606 | +| y_out | 0.0866 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001564561 | +| time-step | 607 | +| y_out | 0.0371 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015015571 | +| time-step | 608 | +| y_out | 0.00672 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001535351 | +| time-step | 609 | +| y_out | -0.0276 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015155817 | +| time-step | 610 | +| y_out | 0.0612 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015155214 | +| time-step | 611 | +| y_out | 0.0585 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015362937 | +| time-step | 612 | +| y_out | -0.0808 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015615993 | +| time-step | 613 | +| y_out | 0.0438 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015777744 | +| time-step | 614 | +| y_out | -0.000711 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016566053 | +| time-step | 615 | +| y_out | -0.0558 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016467813 | +| time-step | 616 | +| y_out | 0.139 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016113274 | +| time-step | 617 | +| y_out | 0.0899 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015947443 | +| time-step | 618 | +| y_out | 0.0197 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015654413 | +| time-step | 619 | +| y_out | 0.000611 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015996281 | +| time-step | 620 | +| y_out | 0.0676 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001612214 | +| time-step | 621 | +| y_out | 0.15 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015322065 | +| time-step | 622 | +| y_out | 0.0423 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015821314 | +| time-step | 623 | +| y_out | -0.0125 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015103245 | +| time-step | 624 | +| y_out | 0.143 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014455387 | +| time-step | 625 | +| y_out | 0.0634 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015303436 | +| time-step | 626 | +| y_out | -0.0292 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015454928 | +| time-step | 627 | +| y_out | -0.0324 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015097434 | +| time-step | 628 | +| y_out | -0.045 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016027406 | +| time-step | 629 | +| y_out | -0.0699 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016061461 | +| time-step | 630 | +| y_out | 0.156 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016446331 | +| time-step | 631 | +| y_out | 0.0275 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016633548 | +| time-step | 632 | +| y_out | 0.0133 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015085164 | +| time-step | 633 | +| y_out | -0.0618 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016138197 | +| time-step | 634 | +| y_out | 0.0466 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016143487 | +| time-step | 635 | +| y_out | 0.102 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016096967 | +| time-step | 636 | +| y_out | -0.094 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015991589 | +| time-step | 637 | +| y_out | 0.0541 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015933309 | +| time-step | 638 | +| y_out | 0.146 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015239471 | +| time-step | 639 | +| y_out | 0.0643 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015452319 | +| time-step | 640 | +| y_out | 0.0564 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015790348 | +| time-step | 641 | +| y_out | -0.0195 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015637142 | +| time-step | 642 | +| y_out | -0.0122 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001596322 | +| time-step | 643 | +| y_out | -0.0364 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0016201679 | +| time-step | 644 | +| y_out | 0.0591 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016536374 | +| time-step | 645 | +| y_out | -0.127 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015769384 | +| time-step | 646 | +| y_out | -0.0047 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001606236 | +| time-step | 647 | +| y_out | -0.0209 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0016799301 | +| time-step | 648 | +| y_out | -0.00193 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016352783 | +| time-step | 649 | +| y_out | 0.013 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015815415 | +| time-step | 650 | +| y_out | 0.00157 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015611749 | +| time-step | 651 | +| y_out | -0.0634 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015601789 | +| time-step | 652 | +| y_out | -0.028 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015590788 | +| time-step | 653 | +| y_out | 0.0249 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014543917 | +| time-step | 654 | +| y_out | 0.111 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015145291 | +| time-step | 655 | +| y_out | -0.0858 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001510774 | +| time-step | 656 | +| y_out | -0.0187 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015026423 | +| time-step | 657 | +| y_out | -0.0209 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014829512 | +| time-step | 658 | +| y_out | -0.0825 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015394397 | +| time-step | 659 | +| y_out | 0.0509 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016067823 | +| time-step | 660 | +| y_out | -0.0165 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015210335 | +| time-step | 661 | +| y_out | -0.0278 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015509999 | +| time-step | 662 | +| y_out | -0.0483 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015882564 | +| time-step | 663 | +| y_out | -0.0339 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001610259 | +| time-step | 664 | +| y_out | -0.176 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0014971425 | +| time-step | 665 | +| y_out | -0.055 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014673668 | +| time-step | 666 | +| y_out | 0.0444 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001393267 | +| time-step | 667 | +| y_out | -0.00825 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0013340584 | +| time-step | 668 | +| y_out | -0.00333 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012605786 | +| time-step | 669 | +| y_out | 0.0217 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011792941 | +| time-step | 670 | +| y_out | 0.0266 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012000287 | +| time-step | 671 | +| y_out | -0.0999 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011347297 | +| time-step | 672 | +| y_out | 0.0699 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010909894 | +| time-step | 673 | +| y_out | 0.00284 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010138055 | +| time-step | 674 | +| y_out | 0.0708 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010394409 | +| time-step | 675 | +| y_out | 0.0369 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010418305 | +| time-step | 676 | +| y_out | 0.0754 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010731874 | +| time-step | 677 | +| y_out | 0.000942 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011011984 | +| time-step | 678 | +| y_out | 0.06 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010700924 | +| time-step | 679 | +| y_out | -0.0203 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011639296 | +| time-step | 680 | +| y_out | -0.0141 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011387598 | +| time-step | 681 | +| y_out | 0.0212 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001194834 | +| time-step | 682 | +| y_out | 0.0667 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.001205616 | +| time-step | 683 | +| y_out | 0.0462 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0013037976 | +| time-step | 684 | +| y_out | 0.00651 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012929349 | +| time-step | 685 | +| y_out | -0.0564 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013014317 | +| time-step | 686 | +| y_out | -0.00108 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013446751 | +| time-step | 687 | +| y_out | 0.0223 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013919927 | +| time-step | 688 | +| y_out | -0.0276 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014260157 | +| time-step | 689 | +| y_out | 0.116 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013734181 | +| time-step | 690 | +| y_out | 0.0455 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014188963 | +| time-step | 691 | +| y_out | 0.104 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013775916 | +| time-step | 692 | +| y_out | 0.0455 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013906041 | +| time-step | 693 | +| y_out | 0.0966 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013371798 | +| time-step | 694 | +| y_out | -0.0381 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013418801 | +| time-step | 695 | +| y_out | 0.111 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014211164 | +| time-step | 696 | +| y_out | -0.0118 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013470534 | +| time-step | 697 | +| y_out | -0.102 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001315282 | +| time-step | 698 | +| y_out | -0.077 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0014131407 | +| time-step | 699 | +| y_out | -0.093 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014734557 | +| time-step | 700 | +| y_out | -0.0509 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint 700 +------------------------------------------------------------- +| perf/mse | 0.0014704582 | +| time-step | 701 | +| y_out | -0.00454 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015474182 | +| time-step | 702 | +| y_out | 0.0674 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015651288 | +| time-step | 703 | +| y_out | -0.0166 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017819578 | +| time-step | 704 | +| y_out | -0.0351 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018381958 | +| time-step | 705 | +| y_out | 0.0381 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017886732 | +| time-step | 706 | +| y_out | -0.14 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018567903 | +| time-step | 707 | +| y_out | -0.0659 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018964342 | +| time-step | 708 | +| y_out | 0.00112 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001857879 | +| time-step | 709 | +| y_out | -0.0614 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0017472741 | +| time-step | 710 | +| y_out | -0.033 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017861892 | +| time-step | 711 | +| y_out | 0.0929 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017209474 | +| time-step | 712 | +| y_out | 0.0251 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017688789 | +| time-step | 713 | +| y_out | -0.0124 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015929053 | +| time-step | 714 | +| y_out | 0.165 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001603996 | +| time-step | 715 | +| y_out | -0.0575 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0016065843 | +| time-step | 716 | +| y_out | -0.0294 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015911171 | +| time-step | 717 | +| y_out | -0.0256 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015900119 | +| time-step | 718 | +| y_out | -0.0305 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016427931 | +| time-step | 719 | +| y_out | -0.0563 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017046925 | +| time-step | 720 | +| y_out | -0.00659 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016059477 | +| time-step | 721 | +| y_out | -0.025 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015981235 | +| time-step | 722 | +| y_out | -0.0168 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015169577 | +| time-step | 723 | +| y_out | 0.0864 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014766265 | +| time-step | 724 | +| y_out | -0.0489 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014610193 | +| time-step | 725 | +| y_out | 0.00706 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014538435 | +| time-step | 726 | +| y_out | -0.00828 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014114145 | +| time-step | 727 | +| y_out | 0.000232 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013742128 | +| time-step | 728 | +| y_out | 0.113 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012903323 | +| time-step | 729 | +| y_out | 0.113 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012526093 | +| time-step | 730 | +| y_out | -0.0744 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013000371 | +| time-step | 731 | +| y_out | -0.0465 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012952009 | +| time-step | 732 | +| y_out | -0.0348 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001311125 | +| time-step | 733 | +| y_out | 0.0863 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.001357936 | +| time-step | 734 | +| y_out | -0.0123 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0012625211 | +| time-step | 735 | +| y_out | 0.018 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012506814 | +| time-step | 736 | +| y_out | 0.149 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012420781 | +| time-step | 737 | +| y_out | -0.0448 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012601435 | +| time-step | 738 | +| y_out | -0.12 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014245887 | +| time-step | 739 | +| y_out | 0.0258 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014529482 | +| time-step | 740 | +| y_out | -0.0333 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00143737 | +| time-step | 741 | +| y_out | -0.0421 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015056904 | +| time-step | 742 | +| y_out | 0.00851 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014822015 | +| time-step | 743 | +| y_out | -0.144 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015202237 | +| time-step | 744 | +| y_out | -0.0552 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016448621 | +| time-step | 745 | +| y_out | 0.0979 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016346775 | +| time-step | 746 | +| y_out | -0.123 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017506303 | +| time-step | 747 | +| y_out | -0.128 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017088789 | +| time-step | 748 | +| y_out | -0.0626 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016231742 | +| time-step | 749 | +| y_out | 0.0195 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016619973 | +| time-step | 750 | +| y_out | -0.00275 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016811952 | +| time-step | 751 | +| y_out | -0.105 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016501654 | +| time-step | 752 | +| y_out | -0.0402 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016279487 | +| time-step | 753 | +| y_out | -0.144 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015456935 | +| time-step | 754 | +| y_out | 0.04 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014450427 | +| time-step | 755 | +| y_out | -0.0277 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014441294 | +| time-step | 756 | +| y_out | -0.085 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013843784 | +| time-step | 757 | +| y_out | 0.00969 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013719222 | +| time-step | 758 | +| y_out | 0.0614 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012864972 | +| time-step | 759 | +| y_out | -0.0584 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012014253 | +| time-step | 760 | +| y_out | 0.0485 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011534083 | +| time-step | 761 | +| y_out | -0.0739 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011047863 | +| time-step | 762 | +| y_out | 0.0311 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011721404 | +| time-step | 763 | +| y_out | 0.0071 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001141215 | +| time-step | 764 | +| y_out | -0.105 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0011649055 | +| time-step | 765 | +| y_out | -0.0391 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011541259 | +| time-step | 766 | +| y_out | -0.011 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00104775 | +| time-step | 767 | +| y_out | 0.114 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011247257 | +| time-step | 768 | +| y_out | -0.0895 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011293389 | +| time-step | 769 | +| y_out | -0.0606 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011369591 | +| time-step | 770 | +| y_out | 0.0634 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012278683 | +| time-step | 771 | +| y_out | 0.046 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012642798 | +| time-step | 772 | +| y_out | 0.00485 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012869451 | +| time-step | 773 | +| y_out | -0.075 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013297705 | +| time-step | 774 | +| y_out | 0.0379 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014186993 | +| time-step | 775 | +| y_out | 0.0641 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014338037 | +| time-step | 776 | +| y_out | -0.0524 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015006268 | +| time-step | 777 | +| y_out | 0.0438 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014273908 | +| time-step | 778 | +| y_out | -0.0373 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014415398 | +| time-step | 779 | +| y_out | 0.0927 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014662341 | +| time-step | 780 | +| y_out | -0.0142 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014124663 | +| time-step | 781 | +| y_out | -0.0195 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013342763 | +| time-step | 782 | +| y_out | -0.116 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012971035 | +| time-step | 783 | +| y_out | -0.0061 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013647781 | +| time-step | 784 | +| y_out | -0.0569 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012315961 | +| time-step | 785 | +| y_out | 0.0728 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013444985 | +| time-step | 786 | +| y_out | -0.024 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013571052 | +| time-step | 787 | +| y_out | 0.155 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015096015 | +| time-step | 788 | +| y_out | -0.122 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015455248 | +| time-step | 789 | +| y_out | 0.0256 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00158327 | +| time-step | 790 | +| y_out | 0.0974 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016062756 | +| time-step | 791 | +| y_out | 0.00874 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001755878 | +| time-step | 792 | +| y_out | 0.12 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0018160173 | +| time-step | 793 | +| y_out | 0.0364 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001725144 | +| time-step | 794 | +| y_out | -0.000483 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0018430974 | +| time-step | 795 | +| y_out | -0.0413 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001736924 | +| time-step | 796 | +| y_out | -0.0119 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0017135529 | +| time-step | 797 | +| y_out | 0.0067 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015935239 | +| time-step | 798 | +| y_out | 0.0978 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015165628 | +| time-step | 799 | +| y_out | 0.152 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001427565 | +| time-step | 800 | +| y_out | -0.0389 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint 800 +------------------------------------------------------------- +| perf/mse | 0.0014683085 | +| time-step | 801 | +| y_out | 0.0625 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013958691 | +| time-step | 802 | +| y_out | -0.0324 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013081672 | +| time-step | 803 | +| y_out | -0.0387 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013625949 | +| time-step | 804 | +| y_out | 0.0589 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001324336 | +| time-step | 805 | +| y_out | 0.0364 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0013276704 | +| time-step | 806 | +| y_out | -0.0553 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001321068 | +| time-step | 807 | +| y_out | -0.0622 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.001273401 | +| time-step | 808 | +| y_out | 0.00404 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0013072513 | +| time-step | 809 | +| y_out | -0.136 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001314732 | +| time-step | 810 | +| y_out | -0.0756 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0012413089 | +| time-step | 811 | +| y_out | -0.00212 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011837102 | +| time-step | 812 | +| y_out | -0.013 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011893586 | +| time-step | 813 | +| y_out | -0.0211 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011229325 | +| time-step | 814 | +| y_out | -0.0414 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010628313 | +| time-step | 815 | +| y_out | -0.0804 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010642329 | +| time-step | 816 | +| y_out | 0.15 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010910208 | +| time-step | 817 | +| y_out | 0.0473 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011212986 | +| time-step | 818 | +| y_out | -0.0432 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011733446 | +| time-step | 819 | +| y_out | -0.00866 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012428403 | +| time-step | 820 | +| y_out | 0.0318 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001248314 | +| time-step | 821 | +| y_out | 0.000581 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0012810953 | +| time-step | 822 | +| y_out | 0.0461 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013508647 | +| time-step | 823 | +| y_out | -0.00859 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013772693 | +| time-step | 824 | +| y_out | 0.0947 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013980384 | +| time-step | 825 | +| y_out | 0.074 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00138821 | +| time-step | 826 | +| y_out | 0.0537 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013410014 | +| time-step | 827 | +| y_out | 0.0943 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013588734 | +| time-step | 828 | +| y_out | 0.0687 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001329851 | +| time-step | 829 | +| y_out | -0.0169 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0012443231 | +| time-step | 830 | +| y_out | -0.0312 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012349149 | +| time-step | 831 | +| y_out | -0.145 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012319392 | +| time-step | 832 | +| y_out | -0.12 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011614606 | +| time-step | 833 | +| y_out | 0.0293 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011276733 | +| time-step | 834 | +| y_out | -0.0722 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010807078 | +| time-step | 835 | +| y_out | -0.0739 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010470602 | +| time-step | 836 | +| y_out | -0.0207 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010900875 | +| time-step | 837 | +| y_out | 0.124 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010210907 | +| time-step | 838 | +| y_out | -0.00345 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00096073514 | +| time-step | 839 | +| y_out | 0.0811 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009749979 | +| time-step | 840 | +| y_out | 0.0687 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000950004 | +| time-step | 841 | +| y_out | 0.0908 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.00090250437 | +| time-step | 842 | +| y_out | -0.0235 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008825554 | +| time-step | 843 | +| y_out | -0.0102 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00088453403 | +| time-step | 844 | +| y_out | 0.0455 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00088095694 | +| time-step | 845 | +| y_out | 0.0073 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00094369927 | +| time-step | 846 | +| y_out | -0.0202 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00089537894 | +| time-step | 847 | +| y_out | -0.012 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009072519 | +| time-step | 848 | +| y_out | -0.0434 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00090577395 | +| time-step | 849 | +| y_out | 0.00482 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00087266986 | +| time-step | 850 | +| y_out | 0.0293 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008591614 | +| time-step | 851 | +| y_out | 0.0289 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008527847 | +| time-step | 852 | +| y_out | 0.0848 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008234946 | +| time-step | 853 | +| y_out | 0.123 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000811027 | +| time-step | 854 | +| y_out | -0.0435 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0007940723 | +| time-step | 855 | +| y_out | 0.0199 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007123447 | +| time-step | 856 | +| y_out | -0.0438 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007456819 | +| time-step | 857 | +| y_out | 0.00646 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007648327 | +| time-step | 858 | +| y_out | -0.0322 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00075889734 | +| time-step | 859 | +| y_out | 0.0521 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00075010036 | +| time-step | 860 | +| y_out | 0.00192 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00075250247 | +| time-step | 861 | +| y_out | -0.0174 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00079283176 | +| time-step | 862 | +| y_out | -0.0545 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00079905073 | +| time-step | 863 | +| y_out | 0.0395 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00083459896 | +| time-step | 864 | +| y_out | 0.0235 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008675875 | +| time-step | 865 | +| y_out | 0.114 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00089134945 | +| time-step | 866 | +| y_out | 0.0404 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008580085 | +| time-step | 867 | +| y_out | -0.00098 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008368505 | +| time-step | 868 | +| y_out | -0.0246 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008652442 | +| time-step | 869 | +| y_out | 0.0326 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000889382 | +| time-step | 870 | +| y_out | -0.103 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0009333716 | +| time-step | 871 | +| y_out | 0.0174 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00090401433 | +| time-step | 872 | +| y_out | 0.161 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009614569 | +| time-step | 873 | +| y_out | 0.0103 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00094830774 | +| time-step | 874 | +| y_out | -0.0654 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009295023 | +| time-step | 875 | +| y_out | 0.035 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009667568 | +| time-step | 876 | +| y_out | -0.0175 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010561368 | +| time-step | 877 | +| y_out | -0.0648 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011167463 | +| time-step | 878 | +| y_out | 0.0742 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010872628 | +| time-step | 879 | +| y_out | -0.0489 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010925243 | +| time-step | 880 | +| y_out | -0.0742 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010628749 | +| time-step | 881 | +| y_out | -0.0404 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011242713 | +| time-step | 882 | +| y_out | -0.00225 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010577763 | +| time-step | 883 | +| y_out | 0.0801 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010546888 | +| time-step | 884 | +| y_out | 0.0478 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010812151 | +| time-step | 885 | +| y_out | 0.0659 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010511944 | +| time-step | 886 | +| y_out | -0.0589 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009707517 | +| time-step | 887 | +| y_out | -0.00206 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009104345 | +| time-step | 888 | +| y_out | -0.00883 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009550046 | +| time-step | 889 | +| y_out | 0.105 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009679996 | +| time-step | 890 | +| y_out | -0.00534 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009916811 | +| time-step | 891 | +| y_out | 0.0967 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009463288 | +| time-step | 892 | +| y_out | 0.101 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009712934 | +| time-step | 893 | +| y_out | 0.0861 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009714325 | +| time-step | 894 | +| y_out | -0.0928 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00095690443 | +| time-step | 895 | +| y_out | 0.023 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00092052575 | +| time-step | 896 | +| y_out | 0.00601 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00091311504 | +| time-step | 897 | +| y_out | -0.0262 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00096675847 | +| time-step | 898 | +| y_out | 0.069 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009459886 | +| time-step | 899 | +| y_out | -0.0118 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009249424 | +| time-step | 900 | +| y_out | -0.0401 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/checkpoint 900 +------------------------------------------------------------- +| perf/mse | 0.0008659684 | +| time-step | 901 | +| y_out | 0.0251 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00087528676 | +| time-step | 902 | +| y_out | 0.017 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008926176 | +| time-step | 903 | +| y_out | -0.0452 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008806799 | +| time-step | 904 | +| y_out | -0.0547 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009170914 | +| time-step | 905 | +| y_out | 0.0967 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000926555 | +| time-step | 906 | +| y_out | 0.0579 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0009437663 | +| time-step | 907 | +| y_out | -0.0616 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00088814646 | +| time-step | 908 | +| y_out | 0.00115 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008562465 | +| time-step | 909 | +| y_out | -0.084 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008396214 | +| time-step | 910 | +| y_out | -0.137 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008597195 | +| time-step | 911 | +| y_out | 0.012 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008533724 | +| time-step | 912 | +| y_out | 0.115 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008084908 | +| time-step | 913 | +| y_out | -0.089 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007821477 | +| time-step | 914 | +| y_out | 0.0517 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007664033 | +| time-step | 915 | +| y_out | 0.0025 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00075741246 | +| time-step | 916 | +| y_out | -0.0125 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007603846 | +| time-step | 917 | +| y_out | -0.00113 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00076967257 | +| time-step | 918 | +| y_out | 0.032 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008119568 | +| time-step | 919 | +| y_out | -0.0186 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00080182095 | +| time-step | 920 | +| y_out | -0.0766 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00081231864 | +| time-step | 921 | +| y_out | 0.0521 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008213698 | +| time-step | 922 | +| y_out | 0.0289 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00084424485 | +| time-step | 923 | +| y_out | -0.0586 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008768731 | +| time-step | 924 | +| y_out | 0.0607 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00085797894 | +| time-step | 925 | +| y_out | -0.00773 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008982549 | +| time-step | 926 | +| y_out | -0.0431 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008574022 | +| time-step | 927 | +| y_out | 0.015 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00083125883 | +| time-step | 928 | +| y_out | 0.0657 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007904358 | +| time-step | 929 | +| y_out | -0.129 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000884543 | +| time-step | 930 | +| y_out | -0.105 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0008903014 | +| time-step | 931 | +| y_out | 0.0638 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00090680167 | +| time-step | 932 | +| y_out | 0.042 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008860087 | +| time-step | 933 | +| y_out | -0.0562 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00088993553 | +| time-step | 934 | +| y_out | -0.0414 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009092687 | +| time-step | 935 | +| y_out | 0.022 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00093270215 | +| time-step | 936 | +| y_out | 0.0173 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010453409 | +| time-step | 937 | +| y_out | 0.0519 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010436832 | +| time-step | 938 | +| y_out | 0.0327 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010768556 | +| time-step | 939 | +| y_out | -0.0136 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011166579 | +| time-step | 940 | +| y_out | -0.00695 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011120068 | +| time-step | 941 | +| y_out | -0.0337 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010790712 | +| time-step | 942 | +| y_out | 0.109 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010900488 | +| time-step | 943 | +| y_out | -0.00302 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010846038 | +| time-step | 944 | +| y_out | -0.0841 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010881622 | +| time-step | 945 | +| y_out | 0.106 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010369209 | +| time-step | 946 | +| y_out | 0.0858 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000958197 | +| time-step | 947 | +| y_out | -0.0191 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0009943258 | +| time-step | 948 | +| y_out | -0.0866 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00095832284 | +| time-step | 949 | +| y_out | 0.0215 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00089429447 | +| time-step | 950 | +| y_out | -0.073 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008669936 | +| time-step | 951 | +| y_out | -0.0502 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00088033994 | +| time-step | 952 | +| y_out | -0.167 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00090450404 | +| time-step | 953 | +| y_out | -0.0431 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009026959 | +| time-step | 954 | +| y_out | 0.0365 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009001582 | +| time-step | 955 | +| y_out | 0.119 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009041087 | +| time-step | 956 | +| y_out | -0.0181 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009324748 | +| time-step | 957 | +| y_out | -0.0288 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009592011 | +| time-step | 958 | +| y_out | 0.0013 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009986355 | +| time-step | 959 | +| y_out | 0.0557 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010354888 | +| time-step | 960 | +| y_out | 0.0232 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010847688 | +| time-step | 961 | +| y_out | -0.00514 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012233548 | +| time-step | 962 | +| y_out | -0.0284 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012245846 | +| time-step | 963 | +| y_out | -0.0458 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012466544 | +| time-step | 964 | +| y_out | 0.0574 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012322072 | +| time-step | 965 | +| y_out | -0.0423 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001287719 | +| time-step | 966 | +| y_out | 0.0974 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0013349492 | +| time-step | 967 | +| y_out | -0.0305 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012873553 | +| time-step | 968 | +| y_out | -0.0502 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012826284 | +| time-step | 969 | +| y_out | 0.0165 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012041006 | +| time-step | 970 | +| y_out | 0.137 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012921549 | +| time-step | 971 | +| y_out | -0.00789 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011927082 | +| time-step | 972 | +| y_out | 0.00105 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001251634 | +| time-step | 973 | +| y_out | -0.00693 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0012371795 | +| time-step | 974 | +| y_out | -0.0969 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012494758 | +| time-step | 975 | +| y_out | 0.0196 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011932516 | +| time-step | 976 | +| y_out | -0.104 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001124379 | +| time-step | 977 | +| y_out | -0.137 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0011223556 | +| time-step | 978 | +| y_out | -0.0495 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011355677 | +| time-step | 979 | +| y_out | 0.00167 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011295741 | +| time-step | 980 | +| y_out | -0.0639 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010005261 | +| time-step | 981 | +| y_out | 0.0917 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010080469 | +| time-step | 982 | +| y_out | -0.0584 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009275223 | +| time-step | 983 | +| y_out | -0.0491 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009599176 | +| time-step | 984 | +| y_out | -0.024 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009332071 | +| time-step | 985 | +| y_out | 0.0332 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00094071275 | +| time-step | 986 | +| y_out | -0.0278 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009337614 | +| time-step | 987 | +| y_out | 0.0824 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009953778 | +| time-step | 988 | +| y_out | 0.169 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00097034377 | +| time-step | 989 | +| y_out | -0.085 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009424101 | +| time-step | 990 | +| y_out | -0.0224 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010057773 | +| time-step | 991 | +| y_out | -0.000685 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009446338 | +| time-step | 992 | +| y_out | 0.133 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010100038 | +| time-step | 993 | +| y_out | 0.056 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010010041 | +| time-step | 994 | +| y_out | -0.105 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010454252 | +| time-step | 995 | +| y_out | 0.00146 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001104085 | +| time-step | 996 | +| y_out | -0.103 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0012256686 | +| time-step | 997 | +| y_out | 0.118 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001233397 | +| time-step | 998 | +| y_out | -0.00785 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0013019892 | +| time-step | 999 | +| y_out | 0.0491 | +------------------------------------------------------------- diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/progress-[||perf--mse||, ||timestep||].csv b/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/progress-[||perf--mse||, ||timestep||].csv new file mode 100644 index 0000000..7be1ad7 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/progress-[||perf--mse||, ||timestep||].csv @@ -0,0 +1,2001 @@ +perf/mse,time-step +,0.0 +, +,1.0 +, +,2.0 +, +,3.0 +, +,4.0 +, +,5.0 +, +,6.0 +, +,7.0 +, +,8.0 +, +0.26031023,9.0 +, +0.21351269,10.0 +, +0.18336979,11.0 +, +0.15505561,12.0 +, +0.13367245,13.0 +, +0.12379172,14.0 +, +0.1196655,15.0 +, +0.10415129,16.0 +, +0.09134625,17.0 +, +0.07917899,18.0 +, +0.07524745,19.0 +, +0.06702645,20.0 +, +0.061725102,21.0 +, +0.057398804,22.0 +, +0.055527873,23.0 +, +0.05091731,24.0 +, +0.04761921,25.0 +, +0.043828513,26.0 +, +0.041592363,27.0 +, +0.039872997,28.0 +, +0.037364412,29.0 +, +0.035988085,30.0 +, +0.036347017,31.0 +, +0.035212535,32.0 +, +0.032537967,33.0 +, +0.03250489,34.0 +, +0.031569332,35.0 +, +0.029569631,36.0 +, +0.026859771,37.0 +, +0.024990764,38.0 +, +0.02430394,39.0 +, +0.023186047,40.0 +, +0.020670911,41.0 +, +0.0198818,42.0 +, +0.019569468,43.0 +, +0.018605178,44.0 +, +0.01806185,45.0 +, +0.01870245,46.0 +, +0.018544752,47.0 +, +0.017930094,48.0 +, +0.016933622,49.0 +, +0.016479034,50.0 +, +0.016017461,51.0 +, +0.015107287,52.0 +, +0.014478793,53.0 +, +0.013966963,54.0 +, +0.013132383,55.0 +, +0.012082603,56.0 +, +0.011799296,57.0 +, +0.01203368,58.0 +, +0.011613684,59.0 +, +0.011724345,60.0 +, +0.011878715,61.0 +, +0.012243206,62.0 +, +0.012304836,63.0 +, +0.012427358,64.0 +, +0.012178169,65.0 +, +0.012319158,66.0 +, +0.012303159,67.0 +, +0.012027314,68.0 +, +0.011956895,69.0 +, +0.011164153,70.0 +, +0.011343891,71.0 +, +0.011425108,72.0 +, +0.01146083,73.0 +, +0.011823762,74.0 +, +0.011945274,75.0 +, +0.011839587,76.0 +, +0.011633513,77.0 +, +0.011656511,78.0 +, +0.01172599,79.0 +, +0.011577224,80.0 +, +0.011471375,81.0 +, +0.011363814,82.0 +, +0.011001265,83.0 +, +0.010873512,84.0 +, +0.01137321,85.0 +, +0.01110844,86.0 +, +0.011072291,87.0 +, +0.010852053,88.0 +, +0.011062831,89.0 +, +0.011090169,90.0 +, +0.011159094,91.0 +, +0.01138119,92.0 +, +0.01147932,93.0 +, +0.011230049,94.0 +, +0.01104031,95.0 +, +0.010987503,96.0 +, +0.011121065,97.0 +, +0.010915167,98.0 +, +0.010247631,99.0 +, +0.010305108,100.0 +, +0.010660535,101.0 +, +0.010309954,102.0 +, +0.010640209,103.0 +, +0.010558878,104.0 +, +0.010505226,105.0 +, +0.010820939,106.0 +, +0.010339354,107.0 +, +0.010475488,108.0 +, +0.010944723,109.0 +, +0.010873228,110.0 +, +0.010329481,111.0 +, +0.0100920275,112.0 +, +0.009621786,113.0 +, +0.009209978,114.0 +, +0.008970896,115.0 +, +0.00884672,116.0 +, +0.009148502,117.0 +, +0.008988777,118.0 +, +0.008639535,119.0 +, +0.008648804,120.0 +, +0.008502534,121.0 +, +0.008378643,122.0 +, +0.008391513,123.0 +, +0.008633414,124.0 +, +0.008756106,125.0 +, +0.008520562,126.0 +, +0.008229163,127.0 +, +0.00833922,128.0 +, +0.008834759,129.0 +, +0.008692222,130.0 +, +0.008742148,131.0 +, +0.00919948,132.0 +, +0.0093329735,133.0 +, +0.0096267015,134.0 +, +0.00945548,135.0 +, +0.009729335,136.0 +, +0.0101147685,137.0 +, +0.009680775,138.0 +, +0.0092971735,139.0 +, +0.009679349,140.0 +, +0.009776584,141.0 +, +0.009558963,142.0 +, +0.0096537825,143.0 +, +0.009238768,144.0 +, +0.009039121,145.0 +, +0.009134624,146.0 +, +0.008712808,147.0 +, +0.008852864,148.0 +, +0.008944349,149.0 +, +0.008603865,150.0 +, +0.008121284,151.0 +, +0.007980691,152.0 +, +0.0076287724,153.0 +, +0.0076569216,154.0 +, +0.00757899,155.0 +, +0.0070884502,156.0 +, +0.007514848,157.0 +, +0.0074733854,158.0 +, +0.007117582,159.0 +, +0.007110757,160.0 +, +0.0071210256,161.0 +, +0.0069531323,162.0 +, +0.0072190105,163.0 +, +0.006955318,164.0 +, +0.0070700618,165.0 +, +0.007488442,166.0 +, +0.007107269,167.0 +, +0.007080859,168.0 +, +0.007167834,169.0 +, +0.0069548436,170.0 +, +0.0070898533,171.0 +, +0.007524592,172.0 +, +0.0071449913,173.0 +, +0.0071817026,174.0 +, +0.007101299,175.0 +, +0.0068930946,176.0 +, +0.0066107744,177.0 +, +0.0064534033,178.0 +, +0.006479381,179.0 +, +0.0063861934,180.0 +, +0.0064704185,181.0 +, +0.006569355,182.0 +, +0.0067012487,183.0 +, +0.0068758912,184.0 +, +0.0069683283,185.0 +, +0.006742413,186.0 +, +0.0070079966,187.0 +, +0.0074630426,188.0 +, +0.0071394816,189.0 +, +0.0075824684,190.0 +, +0.007266394,191.0 +, +0.006797208,192.0 +, +0.00663698,193.0 +, +0.0064894995,194.0 +, +0.0065049604,195.0 +, +0.0065847985,196.0 +, +0.006266739,197.0 +, +0.005874417,198.0 +, +0.0060962318,199.0 +, +0.0056852703,200.0 +, +0.0056905826,201.0 +, +0.0056968005,202.0 +, +0.0059170853,203.0 +, +0.005800717,204.0 +, +0.0054552252,205.0 +, +0.005533154,206.0 +, +0.005827756,207.0 +, +0.0059373435,208.0 +, +0.006007456,209.0 +, +0.005976817,210.0 +, +0.0061158566,211.0 +, +0.005955133,212.0 +, +0.005852655,213.0 +, +0.0058372607,214.0 +, +0.0061067664,215.0 +, +0.0058830264,216.0 +, +0.0059009306,217.0 +, +0.0057516405,218.0 +, +0.005689205,219.0 +, +0.005685425,220.0 +, +0.0055836244,221.0 +, +0.005851838,222.0 +, +0.005647618,223.0 +, +0.0056630773,224.0 +, +0.005676373,225.0 +, +0.00574146,226.0 +, +0.0056439033,227.0 +, +0.0056503955,228.0 +, +0.005390475,229.0 +, +0.0054510543,230.0 +, +0.005657955,231.0 +, +0.0054920064,232.0 +, +0.0057251537,233.0 +, +0.0057805083,234.0 +, +0.005538959,235.0 +, +0.005525657,236.0 +, +0.0056345984,237.0 +, +0.0057900175,238.0 +, +0.0058385995,239.0 +, +0.005932725,240.0 +, +0.0059852153,241.0 +, +0.0059008,242.0 +, +0.0058916872,243.0 +, +0.006113454,244.0 +, +0.006300458,245.0 +, +0.006252008,246.0 +, +0.006121675,247.0 +, +0.006164758,248.0 +, +0.0063201278,249.0 +, +0.0061799046,250.0 +, +0.0056938594,251.0 +, +0.005799958,252.0 +, +0.0057879714,253.0 +, +0.0054863626,254.0 +, +0.005453122,255.0 +, +0.0055143707,256.0 +, +0.0053968215,257.0 +, +0.0053051896,258.0 +, +0.0053464267,259.0 +, +0.0053339684,260.0 +, +0.005537163,261.0 +, +0.0056337644,262.0 +, +0.0055603823,263.0 +, +0.0055800793,264.0 +, +0.005743446,265.0 +, +0.0057869824,266.0 +, +0.0058582886,267.0 +, +0.0057696034,268.0 +, +0.0058006,269.0 +, +0.0058288774,270.0 +, +0.005862211,271.0 +, +0.0055047823,272.0 +, +0.0054702526,273.0 +, +0.0055995346,274.0 +, +0.0051725837,275.0 +, +0.005104615,276.0 +, +0.004917266,277.0 +, +0.0051001003,278.0 +, +0.0049710376,279.0 +, +0.0051388624,280.0 +, +0.0050842958,281.0 +, +0.005420475,282.0 +, +0.0053245174,283.0 +, +0.0053305677,284.0 +, +0.005521316,285.0 +, +0.0053106486,286.0 +, +0.00569501,287.0 +, +0.0054959194,288.0 +, +0.005306167,289.0 +, +0.005315619,290.0 +, +0.005450518,291.0 +, +0.0051769167,292.0 +, +0.005234494,293.0 +, +0.005097677,294.0 +, +0.005130583,295.0 +, +0.005126798,296.0 +, +0.0048689307,297.0 +, +0.00480453,298.0 +, +0.004892632,299.0 +, +0.0045462097,300.0 +, +0.004359688,301.0 +, +0.004396187,302.0 +, +0.0045867893,303.0 +, +0.0044956906,304.0 +, +0.004379426,305.0 +, +0.004473804,306.0 +, +0.0043944838,307.0 +, +0.0045137657,308.0 +, +0.0045762104,309.0 +, +0.0047158636,310.0 +, +0.00456644,311.0 +, +0.004636108,312.0 +, +0.0043530185,313.0 +, +0.0045791133,314.0 +, +0.0047738934,315.0 +, +0.0047483435,316.0 +, +0.004779514,317.0 +, +0.004636596,318.0 +, +0.0046113627,319.0 +, +0.004428326,320.0 +, +0.0046538087,321.0 +, +0.0046236417,322.0 +, +0.004737603,323.0 +, +0.0044686804,324.0 +, +0.0040447116,325.0 +, +0.004052042,326.0 +, +0.0041114376,327.0 +, +0.0040254313,328.0 +, +0.0039073573,329.0 +, +0.003980251,330.0 +, +0.0037475578,331.0 +, +0.003618455,332.0 +, +0.0035154175,333.0 +, +0.0035970851,334.0 +, +0.0036502003,335.0 +, +0.0035669014,336.0 +, +0.003383059,337.0 +, +0.0034307358,338.0 +, +0.0033943546,339.0 +, +0.0034319449,340.0 +, +0.0036122575,341.0 +, +0.0037124418,342.0 +, +0.0036883645,343.0 +, +0.0037975118,344.0 +, +0.0038647472,345.0 +, +0.0039787465,346.0 +, +0.004058059,347.0 +, +0.0040088957,348.0 +, +0.004138083,349.0 +, +0.0040200637,350.0 +, +0.0038482684,351.0 +, +0.00375184,352.0 +, +0.003710435,353.0 +, +0.0035248343,354.0 +, +0.0036025282,355.0 +, +0.0035022337,356.0 +, +0.0034867008,357.0 +, +0.0034245285,358.0 +, +0.0032818771,359.0 +, +0.003363476,360.0 +, +0.0032919352,361.0 +, +0.0032907515,362.0 +, +0.0033411705,363.0 +, +0.0032866194,364.0 +, +0.0032076626,365.0 +, +0.0032435365,366.0 +, +0.0031282164,367.0 +, +0.0032171588,368.0 +, +0.0031775683,369.0 +, +0.0030347174,370.0 +, +0.0030330648,371.0 +, +0.0030724104,372.0 +, +0.0030502945,373.0 +, +0.002985191,374.0 +, +0.0028567456,375.0 +, +0.0027451396,376.0 +, +0.0026854528,377.0 +, +0.0027308264,378.0 +, +0.002766747,379.0 +, +0.0027897893,380.0 +, +0.0028267715,381.0 +, +0.0027630434,382.0 +, +0.0027344238,383.0 +, +0.002815619,384.0 +, +0.0029575939,385.0 +, +0.003051009,386.0 +, +0.0031477264,387.0 +, +0.0030540498,388.0 +, +0.0031411506,389.0 +, +0.0031523048,390.0 +, +0.003295749,391.0 +, +0.0032405376,392.0 +, +0.0031862468,393.0 +, +0.0031066793,394.0 +, +0.0029888048,395.0 +, +0.0028266455,396.0 +, +0.0027447361,397.0 +, +0.0027547204,398.0 +, +0.0026042599,399.0 +, +0.0027166272,400.0 +, +0.002676873,401.0 +, +0.002675979,402.0 +, +0.0026569306,403.0 +, +0.0027379273,404.0 +, +0.0027675773,405.0 +, +0.0028112398,406.0 +, +0.0028223158,407.0 +, +0.0028645063,408.0 +, +0.0030290063,409.0 +, +0.002875284,410.0 +, +0.00272735,411.0 +, +0.002780829,412.0 +, +0.0029790043,413.0 +, +0.002979803,414.0 +, +0.0030229974,415.0 +, +0.0031487495,416.0 +, +0.0032071434,417.0 +, +0.0032605317,418.0 +, +0.0031939088,419.0 +, +0.0032815754,420.0 +, +0.003370655,421.0 +, +0.0034016422,422.0 +, +0.0031806983,423.0 +, +0.0031204994,424.0 +, +0.003251347,425.0 +, +0.0033099924,426.0 +, +0.0033190246,427.0 +, +0.0032771747,428.0 +, +0.0032331583,429.0 +, +0.0032746133,430.0 +, +0.0033960561,431.0 +, +0.0034853958,432.0 +, +0.0036518336,433.0 +, +0.0038200952,434.0 +, +0.003672272,435.0 +, +0.0037124723,436.0 +, +0.0038609966,437.0 +, +0.0038170596,438.0 +, +0.0036541256,439.0 +, +0.003855871,440.0 +, +0.00367743,441.0 +, +0.003791449,442.0 +, +0.0038086295,443.0 +, +0.0036459353,444.0 +, +0.0038562906,445.0 +, +0.0036505803,446.0 +, +0.0033768122,447.0 +, +0.0033907418,448.0 +, +0.003505027,449.0 +, +0.003177321,450.0 +, +0.0031363026,451.0 +, +0.0027600173,452.0 +, +0.002515526,453.0 +, +0.0025456373,454.0 +, +0.00228338,455.0 +, +0.0023438004,456.0 +, +0.0025289222,457.0 +, +0.002416496,458.0 +, +0.0025297415,459.0 +, +0.0025940458,460.0 +, +0.0026486102,461.0 +, +0.002723851,462.0 +, +0.0028438596,463.0 +, +0.002761069,464.0 +, +0.0028378738,465.0 +, +0.0027785497,466.0 +, +0.002699546,467.0 +, +0.0027790226,468.0 +, +0.002822285,469.0 +, +0.002787628,470.0 +, +0.0028056267,471.0 +, +0.0030464206,472.0 +, +0.0030079607,473.0 +, +0.0031134698,474.0 +, +0.0030813986,475.0 +, +0.003052196,476.0 +, +0.0030555069,477.0 +, +0.0029650487,478.0 +, +0.002779623,479.0 +, +0.0027619165,480.0 +, +0.0027293614,481.0 +, +0.0025570656,482.0 +, +0.002629723,483.0 +, +0.0024707608,484.0 +, +0.0023626718,485.0 +, +0.0023490011,486.0 +, +0.0022600389,487.0 +, +0.002234936,488.0 +, +0.0023461932,489.0 +, +0.002299776,490.0 +, +0.0023411014,491.0 +, +0.0023036448,492.0 +, +0.0021829254,493.0 +, +0.0021960933,494.0 +, +0.0023803338,495.0 +, +0.002331805,496.0 +, +0.00233934,497.0 +, +0.0024229854,498.0 +, +0.0022554558,499.0 +, +0.0022238677,500.0 +, +0.0021433183,501.0 +, +0.002113535,502.0 +, +0.002100234,503.0 +, +0.0021240811,504.0 +, +0.0019771294,505.0 +, +0.0020351703,506.0 +, +0.0020447446,507.0 +, +0.0019718576,508.0 +, +0.0020063096,509.0 +, +0.0020783716,510.0 +, +0.0020546622,511.0 +, +0.0020450833,512.0 +, +0.0021281638,513.0 +, +0.002143634,514.0 +, +0.0022015078,515.0 +, +0.0021475754,516.0 +, +0.0022269427,517.0 +, +0.0023432763,518.0 +, +0.002401222,519.0 +, +0.0024662379,520.0 +, +0.0024707017,521.0 +, +0.0025454203,522.0 +, +0.0024890187,523.0 +, +0.002505992,524.0 +, +0.0026073395,525.0 +, +0.0025565855,526.0 +, +0.0024391564,527.0 +, +0.0024392153,528.0 +, +0.0024006793,529.0 +, +0.002292173,530.0 +, +0.0024059769,531.0 +, +0.0024055324,532.0 +, +0.0024946951,533.0 +, +0.0024668395,534.0 +, +0.0023326012,535.0 +, +0.002443885,536.0 +, +0.0025234304,537.0 +, +0.0024664085,538.0 +, +0.002584805,539.0 +, +0.0025890027,540.0 +, +0.0025133213,541.0 +, +0.0026952599,542.0 +, +0.0027123834,543.0 +, +0.002689264,544.0 +, +0.0027741035,545.0 +, +0.0027414158,546.0 +, +0.0027187539,547.0 +, +0.002805574,548.0 +, +0.00282604,549.0 +, +0.0028716237,550.0 +, +0.0028156699,551.0 +, +0.0026442178,552.0 +, +0.0025296258,553.0 +, +0.0026639043,554.0 +, +0.0026615947,555.0 +, +0.0026516842,556.0 +, +0.0026206903,557.0 +, +0.0024968733,558.0 +, +0.002526144,559.0 +, +0.0024777227,560.0 +, +0.0024897256,561.0 +, +0.0023758558,562.0 +, +0.0024036537,563.0 +, +0.0022878686,564.0 +, +0.0020820925,565.0 +, +0.0020221476,566.0 +, +0.001976047,567.0 +, +0.0019488174,568.0 +, +0.0018191446,569.0 +, +0.0017933354,570.0 +, +0.0017584019,571.0 +, +0.0017262285,572.0 +, +0.0016989928,573.0 +, +0.0016640241,574.0 +, +0.0017585425,575.0 +, +0.0019102652,576.0 +, +0.0018732961,577.0 +, +0.0018699842,578.0 +, +0.0017665562,579.0 +, +0.0017897019,580.0 +, +0.0017840561,581.0 +, +0.0017592997,582.0 +, +0.0017076783,583.0 +, +0.0016387952,584.0 +, +0.0015810037,585.0 +, +0.0014622647,586.0 +, +0.0014957235,587.0 +, +0.0014543158,588.0 +, +0.0014812534,589.0 +, +0.001367893,590.0 +, +0.0013970856,591.0 +, +0.0015061393,592.0 +, +0.0015357451,593.0 +, +0.0016547425,594.0 +, +0.0016331424,595.0 +, +0.0016304584,596.0 +, +0.0016652457,597.0 +, +0.0017786825,598.0 +, +0.0017203672,599.0 +, +0.001786032,600.0 +, +0.0017361853,601.0 +, +0.0016937058,602.0 +, +0.0016890537,603.0 +, +0.0016218744,604.0 +, +0.001601972,605.0 +, +0.0015790925,606.0 +, +0.001564561,607.0 +, +0.0015015571,608.0 +, +0.001535351,609.0 +, +0.0015155817,610.0 +, +0.0015155214,611.0 +, +0.0015362937,612.0 +, +0.0015615993,613.0 +, +0.0015777744,614.0 +, +0.0016566053,615.0 +, +0.0016467813,616.0 +, +0.0016113274,617.0 +, +0.0015947443,618.0 +, +0.0015654413,619.0 +, +0.0015996281,620.0 +, +0.001612214,621.0 +, +0.0015322065,622.0 +, +0.0015821314,623.0 +, +0.0015103245,624.0 +, +0.0014455387,625.0 +, +0.0015303436,626.0 +, +0.0015454928,627.0 +, +0.0015097434,628.0 +, +0.0016027406,629.0 +, +0.0016061461,630.0 +, +0.0016446331,631.0 +, +0.0016633548,632.0 +, +0.0015085164,633.0 +, +0.0016138197,634.0 +, +0.0016143487,635.0 +, +0.0016096967,636.0 +, +0.0015991589,637.0 +, +0.0015933309,638.0 +, +0.0015239471,639.0 +, +0.0015452319,640.0 +, +0.0015790348,641.0 +, +0.0015637142,642.0 +, +0.001596322,643.0 +, +0.0016201679,644.0 +, +0.0016536374,645.0 +, +0.0015769384,646.0 +, +0.001606236,647.0 +, +0.0016799301,648.0 +, +0.0016352783,649.0 +, +0.0015815415,650.0 +, +0.0015611749,651.0 +, +0.0015601789,652.0 +, +0.0015590788,653.0 +, +0.0014543917,654.0 +, +0.0015145291,655.0 +, +0.001510774,656.0 +, +0.0015026423,657.0 +, +0.0014829512,658.0 +, +0.0015394397,659.0 +, +0.0016067823,660.0 +, +0.0015210335,661.0 +, +0.0015509999,662.0 +, +0.0015882564,663.0 +, +0.001610259,664.0 +, +0.0014971425,665.0 +, +0.0014673668,666.0 +, +0.001393267,667.0 +, +0.0013340584,668.0 +, +0.0012605786,669.0 +, +0.0011792941,670.0 +, +0.0012000287,671.0 +, +0.0011347297,672.0 +, +0.0010909894,673.0 +, +0.0010138055,674.0 +, +0.0010394409,675.0 +, +0.0010418305,676.0 +, +0.0010731874,677.0 +, +0.0011011984,678.0 +, +0.0010700924,679.0 +, +0.0011639296,680.0 +, +0.0011387598,681.0 +, +0.001194834,682.0 +, +0.001205616,683.0 +, +0.0013037976,684.0 +, +0.0012929349,685.0 +, +0.0013014317,686.0 +, +0.0013446751,687.0 +, +0.0013919927,688.0 +, +0.0014260157,689.0 +, +0.0013734181,690.0 +, +0.0014188963,691.0 +, +0.0013775916,692.0 +, +0.0013906041,693.0 +, +0.0013371798,694.0 +, +0.0013418801,695.0 +, +0.0014211164,696.0 +, +0.0013470534,697.0 +, +0.001315282,698.0 +, +0.0014131407,699.0 +, +0.0014734557,700.0 +, +0.0014704582,701.0 +, +0.0015474182,702.0 +, +0.0015651288,703.0 +, +0.0017819578,704.0 +, +0.0018381958,705.0 +, +0.0017886732,706.0 +, +0.0018567903,707.0 +, +0.0018964342,708.0 +, +0.001857879,709.0 +, +0.0017472741,710.0 +, +0.0017861892,711.0 +, +0.0017209474,712.0 +, +0.0017688789,713.0 +, +0.0015929053,714.0 +, +0.001603996,715.0 +, +0.0016065843,716.0 +, +0.0015911171,717.0 +, +0.0015900119,718.0 +, +0.0016427931,719.0 +, +0.0017046925,720.0 +, +0.0016059477,721.0 +, +0.0015981235,722.0 +, +0.0015169577,723.0 +, +0.0014766265,724.0 +, +0.0014610193,725.0 +, +0.0014538435,726.0 +, +0.0014114145,727.0 +, +0.0013742128,728.0 +, +0.0012903323,729.0 +, +0.0012526093,730.0 +, +0.0013000371,731.0 +, +0.0012952009,732.0 +, +0.001311125,733.0 +, +0.001357936,734.0 +, +0.0012625211,735.0 +, +0.0012506814,736.0 +, +0.0012420781,737.0 +, +0.0012601435,738.0 +, +0.0014245887,739.0 +, +0.0014529482,740.0 +, +0.00143737,741.0 +, +0.0015056904,742.0 +, +0.0014822015,743.0 +, +0.0015202237,744.0 +, +0.0016448621,745.0 +, +0.0016346775,746.0 +, +0.0017506303,747.0 +, +0.0017088789,748.0 +, +0.0016231742,749.0 +, +0.0016619973,750.0 +, +0.0016811952,751.0 +, +0.0016501654,752.0 +, +0.0016279487,753.0 +, +0.0015456935,754.0 +, +0.0014450427,755.0 +, +0.0014441294,756.0 +, +0.0013843784,757.0 +, +0.0013719222,758.0 +, +0.0012864972,759.0 +, +0.0012014253,760.0 +, +0.0011534083,761.0 +, +0.0011047863,762.0 +, +0.0011721404,763.0 +, +0.001141215,764.0 +, +0.0011649055,765.0 +, +0.0011541259,766.0 +, +0.00104775,767.0 +, +0.0011247257,768.0 +, +0.0011293389,769.0 +, +0.0011369591,770.0 +, +0.0012278683,771.0 +, +0.0012642798,772.0 +, +0.0012869451,773.0 +, +0.0013297705,774.0 +, +0.0014186993,775.0 +, +0.0014338037,776.0 +, +0.0015006268,777.0 +, +0.0014273908,778.0 +, +0.0014415398,779.0 +, +0.0014662341,780.0 +, +0.0014124663,781.0 +, +0.0013342763,782.0 +, +0.0012971035,783.0 +, +0.0013647781,784.0 +, +0.0012315961,785.0 +, +0.0013444985,786.0 +, +0.0013571052,787.0 +, +0.0015096015,788.0 +, +0.0015455248,789.0 +, +0.00158327,790.0 +, +0.0016062756,791.0 +, +0.001755878,792.0 +, +0.0018160173,793.0 +, +0.001725144,794.0 +, +0.0018430974,795.0 +, +0.001736924,796.0 +, +0.0017135529,797.0 +, +0.0015935239,798.0 +, +0.0015165628,799.0 +, +0.001427565,800.0 +, +0.0014683085,801.0 +, +0.0013958691,802.0 +, +0.0013081672,803.0 +, +0.0013625949,804.0 +, +0.001324336,805.0 +, +0.0013276704,806.0 +, +0.001321068,807.0 +, +0.001273401,808.0 +, +0.0013072513,809.0 +, +0.001314732,810.0 +, +0.0012413089,811.0 +, +0.0011837102,812.0 +, +0.0011893586,813.0 +, +0.0011229325,814.0 +, +0.0010628313,815.0 +, +0.0010642329,816.0 +, +0.0010910208,817.0 +, +0.0011212986,818.0 +, +0.0011733446,819.0 +, +0.0012428403,820.0 +, +0.001248314,821.0 +, +0.0012810953,822.0 +, +0.0013508647,823.0 +, +0.0013772693,824.0 +, +0.0013980384,825.0 +, +0.00138821,826.0 +, +0.0013410014,827.0 +, +0.0013588734,828.0 +, +0.001329851,829.0 +, +0.0012443231,830.0 +, +0.0012349149,831.0 +, +0.0012319392,832.0 +, +0.0011614606,833.0 +, +0.0011276733,834.0 +, +0.0010807078,835.0 +, +0.0010470602,836.0 +, +0.0010900875,837.0 +, +0.0010210907,838.0 +, +0.00096073514,839.0 +, +0.0009749979,840.0 +, +0.000950004,841.0 +, +0.00090250437,842.0 +, +0.0008825554,843.0 +, +0.00088453403,844.0 +, +0.00088095694,845.0 +, +0.00094369927,846.0 +, +0.00089537894,847.0 +, +0.0009072519,848.0 +, +0.00090577395,849.0 +, +0.00087266986,850.0 +, +0.0008591614,851.0 +, +0.0008527847,852.0 +, +0.0008234946,853.0 +, +0.000811027,854.0 +, +0.0007940723,855.0 +, +0.0007123447,856.0 +, +0.0007456819,857.0 +, +0.0007648327,858.0 +, +0.00075889734,859.0 +, +0.00075010036,860.0 +, +0.00075250247,861.0 +, +0.00079283176,862.0 +, +0.00079905073,863.0 +, +0.00083459896,864.0 +, +0.0008675875,865.0 +, +0.00089134945,866.0 +, +0.0008580085,867.0 +, +0.0008368505,868.0 +, +0.0008652442,869.0 +, +0.000889382,870.0 +, +0.0009333716,871.0 +, +0.00090401433,872.0 +, +0.0009614569,873.0 +, +0.00094830774,874.0 +, +0.0009295023,875.0 +, +0.0009667568,876.0 +, +0.0010561368,877.0 +, +0.0011167463,878.0 +, +0.0010872628,879.0 +, +0.0010925243,880.0 +, +0.0010628749,881.0 +, +0.0011242713,882.0 +, +0.0010577763,883.0 +, +0.0010546888,884.0 +, +0.0010812151,885.0 +, +0.0010511944,886.0 +, +0.0009707517,887.0 +, +0.0009104345,888.0 +, +0.0009550046,889.0 +, +0.0009679996,890.0 +, +0.0009916811,891.0 +, +0.0009463288,892.0 +, +0.0009712934,893.0 +, +0.0009714325,894.0 +, +0.00095690443,895.0 +, +0.00092052575,896.0 +, +0.00091311504,897.0 +, +0.00096675847,898.0 +, +0.0009459886,899.0 +, +0.0009249424,900.0 +, +0.0008659684,901.0 +, +0.00087528676,902.0 +, +0.0008926176,903.0 +, +0.0008806799,904.0 +, +0.0009170914,905.0 +, +0.000926555,906.0 +, +0.0009437663,907.0 +, +0.00088814646,908.0 +, +0.0008562465,909.0 +, +0.0008396214,910.0 +, +0.0008597195,911.0 +, +0.0008533724,912.0 +, +0.0008084908,913.0 +, +0.0007821477,914.0 +, +0.0007664033,915.0 +, +0.00075741246,916.0 +, +0.0007603846,917.0 +, +0.00076967257,918.0 +, +0.0008119568,919.0 +, +0.00080182095,920.0 +, +0.00081231864,921.0 +, +0.0008213698,922.0 +, +0.00084424485,923.0 +, +0.0008768731,924.0 +, +0.00085797894,925.0 +, +0.0008982549,926.0 +, +0.0008574022,927.0 +, +0.00083125883,928.0 +, +0.0007904358,929.0 +, +0.000884543,930.0 +, +0.0008903014,931.0 +, +0.00090680167,932.0 +, +0.0008860087,933.0 +, +0.00088993553,934.0 +, +0.0009092687,935.0 +, +0.00093270215,936.0 +, +0.0010453409,937.0 +, +0.0010436832,938.0 +, +0.0010768556,939.0 +, +0.0011166579,940.0 +, +0.0011120068,941.0 +, +0.0010790712,942.0 +, +0.0010900488,943.0 +, +0.0010846038,944.0 +, +0.0010881622,945.0 +, +0.0010369209,946.0 +, +0.000958197,947.0 +, +0.0009943258,948.0 +, +0.00095832284,949.0 +, +0.00089429447,950.0 +, +0.0008669936,951.0 +, +0.00088033994,952.0 +, +0.00090450404,953.0 +, +0.0009026959,954.0 +, +0.0009001582,955.0 +, +0.0009041087,956.0 +, +0.0009324748,957.0 +, +0.0009592011,958.0 +, +0.0009986355,959.0 +, +0.0010354888,960.0 +, +0.0010847688,961.0 +, +0.0012233548,962.0 +, +0.0012245846,963.0 +, +0.0012466544,964.0 +, +0.0012322072,965.0 +, +0.001287719,966.0 +, +0.0013349492,967.0 +, +0.0012873553,968.0 +, +0.0012826284,969.0 +, +0.0012041006,970.0 +, +0.0012921549,971.0 +, +0.0011927082,972.0 +, +0.001251634,973.0 +, +0.0012371795,974.0 +, +0.0012494758,975.0 +, +0.0011932516,976.0 +, +0.001124379,977.0 +, +0.0011223556,978.0 +, +0.0011355677,979.0 +, +0.0011295741,980.0 +, +0.0010005261,981.0 +, +0.0010080469,982.0 +, +0.0009275223,983.0 +, +0.0009599176,984.0 +, +0.0009332071,985.0 +, +0.00094071275,986.0 +, +0.0009337614,987.0 +, +0.0009953778,988.0 +, +0.00097034377,989.0 +, +0.0009424101,990.0 +, +0.0010057773,991.0 +, +0.0009446338,992.0 +, +0.0010100038,993.0 +, +0.0010010041,994.0 +, +0.0010454252,995.0 +, +0.001104085,996.0 +, +0.0012256686,997.0 +, +0.001233397,998.0 +, +0.0013019892,999.0 +, diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/progress.csv b/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/progress.csv new file mode 100644 index 0000000..cb571c6 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/progress.csv @@ -0,0 +1,2001 @@ +time-step,y_out,perf/mse +0,-0.07333369702888046, +,, +1,0.06737295505149024, +,, +2,-0.022067952395016223, +,, +3,0.015721909623563332, +,, +4,-0.012224176117775196, +,, +5,-0.12195898330977357, +,, +6,-0.023845097785492046, +,, +7,0.01925473331751529, +,, +8,0.07399779526410619, +,, +9,0.006551442505075847,0.26031023 +,, +10,0.014525165251478997,0.21351269 +,, +11,-0.060132096900042536,0.18336979 +,, +12,0.0007089711519250811,0.15505561 +,, +13,-0.10290360729263064,0.13367245 +,, +14,-0.056302473459690805,0.12379172 +,, +15,0.053547281622929224,0.1196655 +,, +16,0.0007841871685734941,0.10415129 +,, +17,-0.050621262940753795,0.09134625 +,, +18,0.058329665202811576,0.07917899 +,, +19,-0.06536773326110626,0.07524745 +,, +20,-0.03974763394887725,0.06702645 +,, +21,-0.057258402440565404,0.061725102 +,, +22,-0.0038828972281104157,0.057398804 +,, +23,0.0014413025756312599,0.055527873 +,, +24,-0.014607590306906296,0.05091731 +,, +25,0.01952185140902899,0.04761921 +,, +26,0.037173761962379336,0.043828513 +,, +27,-0.04332588402885947,0.041592363 +,, +28,-0.03431551113809722,0.039872997 +,, +29,-0.010887414738725676,0.037364412 +,, +30,-0.08352310752344233,0.035988085 +,, +31,-0.05308222722943455,0.036347017 +,, +32,-0.09736436898982734,0.035212535 +,, +33,0.0846900598028691,0.032537967 +,, +34,0.03188599524939089,0.03250489 +,, +35,0.05337903255815415,0.031569332 +,, +36,0.06420122604835601,0.029569631 +,, +37,0.08763522549924704,0.026859771 +,, +38,0.10657037088245518,0.024990764 +,, +39,-0.02437059895735257,0.02430394 +,, +40,0.0051769025135575755,0.023186047 +,, +41,-0.03592282926015363,0.020670911 +,, +42,0.09079210089382826,0.0198818 +,, +43,-0.044687034085580536,0.019569468 +,, +44,-0.008463325054463303,0.018605178 +,, +45,0.03223728485778217,0.01806185 +,, +46,0.035855920385329046,0.01870245 +,, +47,0.11843772660624098,0.018544752 +,, +48,-0.08874327484329671,0.017930094 +,, +49,0.06385808464356957,0.016933622 +,, +50,-0.03479175116603195,0.016479034 +,, +51,-0.07670397220340067,0.016017461 +,, +52,-0.06630641012075802,0.015107287 +,, +53,-0.0665696512669846,0.014478793 +,, +54,0.008788837496537246,0.013966963 +,, +55,-0.04226340045547139,0.013132383 +,, +56,0.08800056594925941,0.012082603 +,, +57,0.0042680058211639164,0.011799296 +,, +58,-0.02786198758662191,0.01203368 +,, +59,0.07604627056414161,0.011613684 +,, +60,-0.013164993983114544,0.011724345 +,, +61,-0.004006666863071428,0.011878715 +,, +62,0.11311535335423537,0.012243206 +,, +63,0.01541434923587194,0.012304836 +,, +64,-0.04045308701914635,0.012427358 +,, +65,-0.02474693375676154,0.012178169 +,, +66,-0.0596678038742282,0.012319158 +,, +67,-0.07774880606525679,0.012303159 +,, +68,-0.032908859922647984,0.012027314 +,, +69,0.09641918447681547,0.011956895 +,, +70,-0.016352321629472033,0.011164153 +,, +71,0.10218576485944238,0.011343891 +,, +72,0.0972731008896792,0.011425108 +,, +73,0.02216664318869236,0.01146083 +,, +74,0.08657307867162305,0.011823762 +,, +75,-0.1527292080130203,0.011945274 +,, +76,-0.11703377015595967,0.011839587 +,, +77,-0.06382696585202731,0.011633513 +,, +78,-0.016674926786895975,0.011656511 +,, +79,-0.09816245582270759,0.01172599 +,, +80,-0.0011276875893992885,0.011577224 +,, +81,0.015268657096293235,0.011471375 +,, +82,0.07236849374533072,0.011363814 +,, +83,-0.01640075845766445,0.011001265 +,, +84,-0.05324835673935971,0.010873512 +,, +85,0.04601506287233917,0.01137321 +,, +86,-0.04282556234156144,0.01110844 +,, +87,-0.002385315729719605,0.011072291 +,, +88,-0.08039871630429356,0.010852053 +,, +89,-0.05959292543102741,0.011062831 +,, +90,-0.04815793501783048,0.011090169 +,, +91,-0.04189707347963448,0.011159094 +,, +92,0.08885475749880424,0.01138119 +,, +93,-0.05624007162417745,0.01147932 +,, +94,-0.007081302409119292,0.011230049 +,, +95,-0.04409703078301305,0.01104031 +,, +96,-0.03945556234615568,0.010987503 +,, +97,-0.06466672742435323,0.011121065 +,, +98,-0.031424977201498255,0.010915167 +,, +99,0.041937602914459964,0.010247631 +,, +100,0.1313058916010718,0.010305108 +,, +101,-0.034731974863031895,0.010660535 +,, +102,-0.00650648803132468,0.010309954 +,, +103,-0.14513962661361357,0.010640209 +,, +104,0.101713691676658,0.010558878 +,, +105,-0.021275521394036698,0.010505226 +,, +106,0.09616425221321001,0.010820939 +,, +107,0.017497444188726168,0.010339354 +,, +108,0.006602469291396948,0.010475488 +,, +109,0.10849296143282894,0.010944723 +,, +110,-0.05692825603422505,0.010873228 +,, +111,0.06580968053091468,0.010329481 +,, +112,0.1155052213238561,0.0100920275 +,, +113,-0.07692882789949881,0.009621786 +,, +114,0.04355195201516281,0.009209978 +,, +115,0.04345250051185343,0.008970896 +,, +116,0.1343164441013214,0.00884672 +,, +117,0.13033926168708315,0.009148502 +,, +118,-0.013239575803428112,0.008988777 +,, +119,0.053969275229603375,0.008639535 +,, +120,-0.06344467535745987,0.008648804 +,, +121,-0.07026662497989711,0.008502534 +,, +122,0.037241907363723306,0.008378643 +,, +123,-0.00714870128620243,0.008391513 +,, +124,0.12344384928004404,0.008633414 +,, +125,0.03709077394475954,0.008756106 +,, +126,-0.09512904373486515,0.008520562 +,, +127,-0.09809745185685072,0.008229163 +,, +128,-0.044879081011465004,0.00833922 +,, +129,0.08583501645483513,0.008834759 +,, +130,-0.0008438688314316573,0.008692222 +,, +131,0.03128616323240456,0.008742148 +,, +132,0.015243366512231123,0.00919948 +,, +133,0.0019369815443640755,0.0093329735 +,, +134,-0.027499601390103563,0.0096267015 +,, +135,-0.033734009078776286,0.00945548 +,, +136,0.016000549464640412,0.009729335 +,, +137,0.13107951648245053,0.0101147685 +,, +138,-0.06484483893207076,0.009680775 +,, +139,-0.034306760103342285,0.0092971735 +,, +140,0.13566410253496758,0.009679349 +,, +141,-0.01362100137685385,0.009776584 +,, +142,0.0017563048139527526,0.009558963 +,, +143,0.1572548131643895,0.0096537825 +,, +144,-0.09993218293633269,0.009238768 +,, +145,0.028198259131300252,0.009039121 +,, +146,-0.04824123148029606,0.009134624 +,, +147,-0.0459281410113804,0.008712808 +,, +148,-0.006258839106934755,0.008852864 +,, +149,0.007737202864202389,0.008944349 +,, +150,-0.02085230463916523,0.008603865 +,, +151,0.0947946898562443,0.008121284 +,, +152,-0.04306791495665782,0.007980691 +,, +153,-0.011708638368739054,0.0076287724 +,, +154,-0.08616393174498144,0.0076569216 +,, +155,-0.06881575827441366,0.00757899 +,, +156,0.002182863115035308,0.0070884502 +,, +157,0.0938910873802894,0.007514848 +,, +158,0.05653642891944714,0.0074733854 +,, +159,-0.04532900412605026,0.007117582 +,, +160,0.0345359030692383,0.007110757 +,, +161,-0.05082803778840048,0.0071210256 +,, +162,0.06651116836685708,0.0069531323 +,, +163,-0.05179138404790748,0.0072190105 +,, +164,-0.0020746694176525596,0.006955318 +,, +165,-0.0023792844327958224,0.0070700618 +,, +166,0.06043864137738784,0.007488442 +,, +167,-0.11368077506737594,0.007107269 +,, +168,-0.018536583866720968,0.007080859 +,, +169,0.07706046516443106,0.007167834 +,, +170,-0.06884963910392888,0.0069548436 +,, +171,0.0015192097141244077,0.0070898533 +,, +172,0.0702494647215546,0.007524592 +,, +173,0.07137228573537954,0.0071449913 +,, +174,0.029152709120579122,0.0071817026 +,, +175,0.009334121759462091,0.007101299 +,, +176,0.07880233139840831,0.0068930946 +,, +177,-0.005543618524953081,0.0066107744 +,, +178,-0.058139067978221014,0.0064534033 +,, +179,-0.056271398069677944,0.006479381 +,, +180,0.13342745470801387,0.0063861934 +,, +181,-0.1753807243392312,0.0064704185 +,, +182,-0.13175786883782514,0.006569355 +,, +183,-0.050073867853173755,0.0067012487 +,, +184,-0.0038606587266919457,0.0068758912 +,, +185,0.007946037153713201,0.0069683283 +,, +186,-0.06899076232517883,0.006742413 +,, +187,-0.02441063492209996,0.0070079966 +,, +188,-0.06265000488151633,0.0074630426 +,, +189,0.1374888235355637,0.0071394816 +,, +190,0.01591946484240997,0.0075824684 +,, +191,-0.023455533016556,0.007266394 +,, +192,0.01974138803775834,0.006797208 +,, +193,0.1190231739020845,0.00663698 +,, +194,-0.11898708332718137,0.0064894995 +,, +195,0.07902971885156276,0.0065049604 +,, +196,0.08535964445748524,0.0065847985 +,, +197,-0.022039021101297778,0.006266739 +,, +198,-0.0101059109801057,0.005874417 +,, +199,0.14837007458278084,0.0060962318 +,, +200,0.003750730528241226,0.0056852703 +,, +201,-0.046087945191433,0.0056905826 +,, +202,-0.028387547097089485,0.0056968005 +,, +203,-0.03685237277118696,0.0059170853 +,, +204,0.052427622128766685,0.005800717 +,, +205,0.001613958768120198,0.0054552252 +,, +206,0.1939282321354766,0.005533154 +,, +207,0.03684553918622602,0.005827756 +,, +208,0.004178888222501988,0.0059373435 +,, +209,-0.04462784684872543,0.006007456 +,, +210,0.057404245637918544,0.005976817 +,, +211,0.055430638786178335,0.0061158566 +,, +212,-0.06998665893097103,0.005955133 +,, +213,0.01744544930856405,0.005852655 +,, +214,0.038802383350864736,0.0058372607 +,, +215,-0.026575970512310768,0.0061067664 +,, +216,-0.045195374133730724,0.0058830264 +,, +217,0.1543659712699574,0.0059009306 +,, +218,-0.036662057888323586,0.0057516405 +,, +219,-0.08682943931875807,0.005689205 +,, +220,-0.12417478927738079,0.005685425 +,, +221,0.0852927992774017,0.0055836244 +,, +222,0.00030902602986650554,0.005851838 +,, +223,0.141450326708687,0.005647618 +,, +224,-0.11447785219679359,0.0056630773 +,, +225,-0.07232946356129936,0.005676373 +,, +226,-0.029660575884031447,0.00574146 +,, +227,-0.03599313974787594,0.0056439033 +,, +228,-0.04777557926935096,0.0056503955 +,, +229,0.028969195436233566,0.005390475 +,, +230,0.08266936150587625,0.0054510543 +,, +231,0.06214958379071807,0.005657955 +,, +232,-0.032933308494724145,0.0054920064 +,, +233,-0.08222260582907578,0.0057251537 +,, +234,0.0710134547192225,0.0057805083 +,, +235,-0.01814199608211621,0.005538959 +,, +236,0.1320606262280042,0.005525657 +,, +237,0.01404912569318326,0.0056345984 +,, +238,0.02691407251796457,0.0057900175 +,, +239,0.063314234530351,0.0058385995 +,, +240,0.08776707709805097,0.005932725 +,, +241,-0.050225117124320866,0.0059852153 +,, +242,0.03138972449763466,0.0059008 +,, +243,0.012478329315429006,0.0058916872 +,, +244,0.02674571826932234,0.006113454 +,, +245,0.03796084313140814,0.006300458 +,, +246,0.04098702307191541,0.006252008 +,, +247,0.0694461709480246,0.006121675 +,, +248,-0.03842489113044664,0.006164758 +,, +249,0.025962302701363182,0.0063201278 +,, +250,0.030764826601996066,0.0061799046 +,, +251,0.024163931287804453,0.0056938594 +,, +252,0.09366523661406309,0.005799958 +,, +253,0.030418169197282074,0.0057879714 +,, +254,0.01626713942812838,0.0054863626 +,, +255,0.03533117799154409,0.005453122 +,, +256,-0.00536069460664651,0.0055143707 +,, +257,-0.1409187748583854,0.0053968215 +,, +258,0.07099733370464349,0.0053051896 +,, +259,0.01163741433055479,0.0053464267 +,, +260,0.011323069477846379,0.0053339684 +,, +261,0.0050005951375050525,0.005537163 +,, +262,0.026502688109333185,0.0056337644 +,, +263,-0.02741037610815141,0.0055603823 +,, +264,-0.06193057081625937,0.0055800793 +,, +265,-0.0377922912251234,0.005743446 +,, +266,-0.04360642327487474,0.0057869824 +,, +267,0.1959946538543869,0.0058582886 +,, +268,0.029492111484914044,0.0057696034 +,, +269,0.008513105930847056,0.0058006 +,, +270,0.029863636325487938,0.0058288774 +,, +271,0.06978457576346021,0.005862211 +,, +272,-0.01723699722961835,0.0055047823 +,, +273,0.04107102291373557,0.0054702526 +,, +274,0.12069139274329342,0.0055995346 +,, +275,0.026681056469747146,0.0051725837 +,, +276,-0.004064066847535096,0.005104615 +,, +277,0.07502137181365534,0.004917266 +,, +278,0.07362886520598619,0.0051001003 +,, +279,-0.05867455050758078,0.0049710376 +,, +280,0.0121731591557219,0.0051388624 +,, +281,0.06932361001997975,0.0050842958 +,, +282,0.07407818705030683,0.005420475 +,, +283,-0.0011505942121584553,0.0053245174 +,, +284,-0.029496131463499834,0.0053305677 +,, +285,-0.08936352931239858,0.005521316 +,, +286,0.004856416388538606,0.0053106486 +,, +287,0.013046559567831385,0.00569501 +,, +288,-0.09793177690174575,0.0054959194 +,, +289,-0.026836105565406547,0.005306167 +,, +290,0.025459671109863247,0.005315619 +,, +291,-0.08440722626295881,0.005450518 +,, +292,0.20820863506236198,0.0051769167 +,, +293,-0.0381891588754841,0.005234494 +,, +294,-0.039000955238872224,0.005097677 +,, +295,0.03444434917827731,0.005130583 +,, +296,-0.003675696441072407,0.005126798 +,, +297,0.05872069641557655,0.0048689307 +,, +298,-0.011548891642257957,0.00480453 +,, +299,-0.16773655993356207,0.004892632 +,, +300,0.051069485626356895,0.0045462097 +,, +301,0.015766784023670953,0.004359688 +,, +302,0.0016149244439079419,0.004396187 +,, +303,-0.009544038505232989,0.0045867893 +,, +304,0.020372988511604555,0.0044956906 +,, +305,-0.0782918207248832,0.004379426 +,, +306,-0.05982039770286257,0.004473804 +,, +307,-0.1356535003881038,0.0043944838 +,, +308,-0.045677967255513235,0.0045137657 +,, +309,0.04178132775058857,0.0045762104 +,, +310,-0.05535719978706713,0.0047158636 +,, +311,-0.08497931010503278,0.00456644 +,, +312,0.038338811611275996,0.004636108 +,, +313,0.023072583488241538,0.0043530185 +,, +314,0.09801073008168067,0.0045791133 +,, +315,0.16167475585826757,0.0047738934 +,, +316,-0.03375217192020112,0.0047483435 +,, +317,0.07243179605395461,0.004779514 +,, +318,0.034485023791670184,0.004636596 +,, +319,0.021051192444224084,0.0046113627 +,, +320,-0.030190032854166615,0.004428326 +,, +321,0.0792682382016755,0.0046538087 +,, +322,0.029133294762779285,0.0046236417 +,, +323,0.03449832927080928,0.004737603 +,, +324,-0.09012222945263007,0.0044686804 +,, +325,0.09685045975297749,0.0040447116 +,, +326,-0.06293710910370763,0.004052042 +,, +327,0.09922810844734092,0.0041114376 +,, +328,0.006257172722931116,0.0040254313 +,, +329,0.05385333676167986,0.0039073573 +,, +330,0.0982090923730015,0.003980251 +,, +331,-0.03553341120473216,0.0037475578 +,, +332,-0.08360327203513881,0.003618455 +,, +333,0.029083870502344223,0.0035154175 +,, +334,-0.04062060859697339,0.0035970851 +,, +335,-0.03137230896764083,0.0036502003 +,, +336,-0.0647197725825207,0.0035669014 +,, +337,-0.02216504509346919,0.003383059 +,, +338,-0.09382734097158812,0.0034307358 +,, +339,-0.06401614312705131,0.0033943546 +,, +340,-0.08051628741316258,0.0034319449 +,, +341,0.018907709530579832,0.0036122575 +,, +342,-0.024581696181266422,0.0037124418 +,, +343,-0.029853343736342686,0.0036883645 +,, +344,-0.006467952361506189,0.0037975118 +,, +345,-0.13494751187253412,0.0038647472 +,, +346,-0.10811289541853024,0.0039787465 +,, +347,0.09696811832872952,0.004058059 +,, +348,0.015747193987549035,0.0040088957 +,, +349,-0.007242020181435625,0.004138083 +,, +350,-0.03450107548670528,0.0040200637 +,, +351,0.00032069716348774244,0.0038482684 +,, +352,-0.013378779300987525,0.00375184 +,, +353,0.13861853165016935,0.003710435 +,, +354,0.1236820233342949,0.0035248343 +,, +355,0.04070563202134081,0.0036025282 +,, +356,0.08569154776461431,0.0035022337 +,, +357,0.044379891961457,0.0034867008 +,, +358,0.010683872215206815,0.0034245285 +,, +359,-0.01600057154357841,0.0032818771 +,, +360,0.06917950146089083,0.003363476 +,, +361,0.015326264853534173,0.0032919352 +,, +362,-0.12057375934807785,0.0032907515 +,, +363,-0.02051363858973314,0.0033411705 +,, +364,0.06392619378801961,0.0032866194 +,, +365,-0.03914571017344032,0.0032076626 +,, +366,0.09695648376986664,0.0032435365 +,, +367,-0.014518933214217433,0.0031282164 +,, +368,0.03480299399033192,0.0032171588 +,, +369,0.07233900659092565,0.0031775683 +,, +370,0.012101367348525238,0.0030347174 +,, +371,0.0426431983973995,0.0030330648 +,, +372,-0.039724990465071885,0.0030724104 +,, +373,0.022831874911791335,0.0030502945 +,, +374,0.06079114594057488,0.002985191 +,, +375,-0.08586987111934041,0.0028567456 +,, +376,-0.10139944876157413,0.0027451396 +,, +377,0.11413195617003136,0.0026854528 +,, +378,-0.023083628365252525,0.0027308264 +,, +379,-0.003175300261856674,0.002766747 +,, +380,-0.1647175631796643,0.0027897893 +,, +381,0.07936796158593284,0.0028267715 +,, +382,0.12582534040483348,0.0027630434 +,, +383,-0.11386841140467052,0.0027344238 +,, +384,-0.009612246429044274,0.002815619 +,, +385,0.06298921185296039,0.0029575939 +,, +386,0.07066869578023137,0.003051009 +,, +387,0.0475746447623058,0.0031477264 +,, +388,0.03242336202191138,0.0030540498 +,, +389,0.2207463686598191,0.0031411506 +,, +390,-0.030194651325015746,0.0031523048 +,, +391,-0.0629408915130418,0.003295749 +,, +392,-0.002340952595877119,0.0032405376 +,, +393,-0.02052157117329516,0.0031862468 +,, +394,-0.04203755071025778,0.0031066793 +,, +395,-0.026054043755330686,0.0029888048 +,, +396,0.006821578015435649,0.0028266455 +,, +397,-0.012415626350020033,0.0027447361 +,, +398,0.03413543644705222,0.0027547204 +,, +399,-0.1360831851679225,0.0026042599 +,, +400,0.014954633127410657,0.0027166272 +,, +401,-0.07884287486039801,0.002676873 +,, +402,0.09934646222470238,0.002675979 +,, +403,-0.055456680645485965,0.0026569306 +,, +404,0.041311143973562975,0.0027379273 +,, +405,0.04760966618782741,0.0027675773 +,, +406,0.06801849709458868,0.0028112398 +,, +407,-0.04315167447168293,0.0028223158 +,, +408,-0.08894229814539725,0.0028645063 +,, +409,0.035929568357210076,0.0030290063 +,, +410,-0.004409115327584402,0.002875284 +,, +411,-0.0697949098503542,0.00272735 +,, +412,0.0260843146600447,0.002780829 +,, +413,0.0533386823789985,0.0029790043 +,, +414,0.0783852468325905,0.002979803 +,, +415,0.06371546246394733,0.0030229974 +,, +416,-0.11941731009765622,0.0031487495 +,, +417,0.13992760830835915,0.0032071434 +,, +418,0.08271124232157305,0.0032605317 +,, +419,-0.04312209462191264,0.0031939088 +,, +420,-0.043386184127883295,0.0032815754 +,, +421,0.015103502492601775,0.003370655 +,, +422,-0.05983767384841793,0.0034016422 +,, +423,-0.08819690465095245,0.0031806983 +,, +424,-0.04588913397903867,0.0031204994 +,, +425,0.03961816188611282,0.003251347 +,, +426,0.026563990327987126,0.0033099924 +,, +427,0.03662257739811095,0.0033190246 +,, +428,-0.023166938769021705,0.0032771747 +,, +429,0.1445810637567151,0.0032331583 +,, +430,-0.00724113429030894,0.0032746133 +,, +431,0.10217520116218635,0.0033960561 +,, +432,-0.005591291111679882,0.0034853958 +,, +433,0.01848283077955302,0.0036518336 +,, +434,0.06933328084702509,0.0038200952 +,, +435,-0.018026814574088418,0.003672272 +,, +436,-0.008630675563622795,0.0037124723 +,, +437,-0.06087847563717651,0.0038609966 +,, +438,-0.0829450508007788,0.0038170596 +,, +439,0.019464305942943717,0.0036541256 +,, +440,0.11434852197030848,0.003855871 +,, +441,0.02077765390023876,0.00367743 +,, +442,-0.027196334940753505,0.003791449 +,, +443,-0.0590329751893823,0.0038086295 +,, +444,0.12295564882028055,0.0036459353 +,, +445,-0.09030757646768392,0.0038562906 +,, +446,-0.0238269613434939,0.0036505803 +,, +447,-0.021250272526580433,0.0033768122 +,, +448,-0.0012281601531022191,0.0033907418 +,, +449,-0.06611472996051349,0.003505027 +,, +450,-0.13814799786562487,0.003177321 +,, +451,0.13356678200189445,0.0031363026 +,, +452,-0.07164374216036094,0.0027600173 +,, +453,0.09893934145071359,0.002515526 +,, +454,-0.03956359648130505,0.0025456373 +,, +455,-0.04032474567974059,0.00228338 +,, +456,0.016395619500385178,0.0023438004 +,, +457,-0.005879168005713871,0.0025289222 +,, +458,-0.08194756453153296,0.002416496 +,, +459,0.04144909847367881,0.0025297415 +,, +460,-0.02144237916074663,0.0025940458 +,, +461,-0.06460238466197027,0.0026486102 +,, +462,0.024975302883466464,0.002723851 +,, +463,-0.09752642006662424,0.0028438596 +,, +464,-0.06413849965352945,0.002761069 +,, +465,-0.055252865998397,0.0028378738 +,, +466,0.0138980921386255,0.0027785497 +,, +467,-0.06620675153689401,0.002699546 +,, +468,-0.14391424487953414,0.0027790226 +,, +469,-0.03680960283590997,0.002822285 +,, +470,-0.038613071206610235,0.002787628 +,, +471,-0.12179763637993116,0.0028056267 +,, +472,-0.0010367244409445649,0.0030464206 +,, +473,-0.10872727885902476,0.0030079607 +,, +474,0.033400563657868615,0.0031134698 +,, +475,-0.0036006947250485123,0.0030813986 +,, +476,0.04691907363184095,0.003052196 +,, +477,-0.06249729432503878,0.0030555069 +,, +478,-0.02129018651288422,0.0029650487 +,, +479,-0.17877179290564904,0.002779623 +,, +480,0.09704506582541245,0.0027619165 +,, +481,0.06317782307359249,0.0027293614 +,, +482,-0.11083612974528545,0.0025570656 +,, +483,0.024848625113840672,0.002629723 +,, +484,-0.04457209730815388,0.0024707608 +,, +485,-0.05606067275997297,0.0023626718 +,, +486,-0.05097315920161236,0.0023490011 +,, +487,-0.04612102090998937,0.0022600389 +,, +488,-0.08895153707482242,0.002234936 +,, +489,0.10013389498678948,0.0023461932 +,, +490,-0.15981216886412777,0.002299776 +,, +491,0.18153298804907175,0.0023411014 +,, +492,0.005035425278052341,0.0023036448 +,, +493,0.027171866391872274,0.0021829254 +,, +494,-0.15129966492823047,0.0021960933 +,, +495,0.022492241417785053,0.0023803338 +,, +496,-0.06962882594240075,0.002331805 +,, +497,0.16146871073296962,0.00233934 +,, +498,0.002854018906678177,0.0024229854 +,, +499,0.09655797947343803,0.0022554558 +,, +500,-0.0051190874857072605,0.0022238677 +,, +501,-0.018887302372069696,0.0021433183 +,, +502,-0.08974507065197249,0.002113535 +,, +503,0.010545926901199432,0.002100234 +,, +504,-0.05814574353050329,0.0021240811 +,, +505,-0.09928382088594029,0.0019771294 +,, +506,-0.060095203961019854,0.0020351703 +,, +507,-0.002444754126381803,0.0020447446 +,, +508,-0.08194362781616188,0.0019718576 +,, +509,-0.044907989463513015,0.0020063096 +,, +510,-0.0283727148634258,0.0020783716 +,, +511,0.004011288694152869,0.0020546622 +,, +512,-0.01649911224195846,0.0020450833 +,, +513,-0.033913902761903966,0.0021281638 +,, +514,0.029278414163189298,0.002143634 +,, +515,0.022437389169526506,0.0022015078 +,, +516,0.05983445704080541,0.0021475754 +,, +517,-0.006617552387221309,0.0022269427 +,, +518,0.0484501497769169,0.0023432763 +,, +519,0.07409270526813475,0.002401222 +,, +520,0.048850676040265543,0.0024662379 +,, +521,-0.019512024055452576,0.0024707017 +,, +522,-0.020146065433854336,0.0025454203 +,, +523,0.028739396447209888,0.0024890187 +,, +524,0.01092859975785071,0.002505992 +,, +525,0.007325067345101528,0.0026073395 +,, +526,-0.04240835559429161,0.0025565855 +,, +527,0.045262562831297905,0.0024391564 +,, +528,-0.08897907864871436,0.0024392153 +,, +529,-0.04296421667963598,0.0024006793 +,, +530,-0.0022031248952509436,0.002292173 +,, +531,-0.08931606472522689,0.0024059769 +,, +532,-0.02182967356709367,0.0024055324 +,, +533,-0.02587822313015836,0.0024946951 +,, +534,0.0454902765167703,0.0024668395 +,, +535,-0.07827211628541422,0.0023326012 +,, +536,-0.06632828871916652,0.002443885 +,, +537,-0.014860591312732718,0.0025234304 +,, +538,-0.048363385397367016,0.0024664085 +,, +539,-0.03758176235131027,0.002584805 +,, +540,0.11750769286499825,0.0025890027 +,, +541,-0.04941518975614942,0.0025133213 +,, +542,-0.08786141657182633,0.0026952599 +,, +543,0.06812490523266422,0.0027123834 +,, +544,0.06296896741343404,0.002689264 +,, +545,-0.02891004168981766,0.0027741035 +,, +546,0.09807771104031719,0.0027414158 +,, +547,0.03806601673301077,0.0027187539 +,, +548,0.059653153184069566,0.002805574 +,, +549,0.014469640052930076,0.00282604 +,, +550,-0.005450516574638083,0.0028716237 +,, +551,0.006469632397010754,0.0028156699 +,, +552,0.044496535267249934,0.0026442178 +,, +553,0.017862610793543336,0.0025296258 +,, +554,0.17952279401913596,0.0026639043 +,, +555,-0.022552888596708842,0.0026615947 +,, +556,-0.004977331210353153,0.0026516842 +,, +557,0.009864024262512611,0.0026206903 +,, +558,-0.0015332633851603585,0.0024968733 +,, +559,0.1111266345108298,0.002526144 +,, +560,-0.01970737294305506,0.0024777227 +,, +561,-0.010106639448784888,0.0024897256 +,, +562,-0.1288606684859498,0.0023758558 +,, +563,-0.03947079421325773,0.0024036537 +,, +564,-0.09034825387601084,0.0022878686 +,, +565,0.05620160669998747,0.0020820925 +,, +566,-0.05340758247346523,0.0020221476 +,, +567,-0.07490844595323622,0.001976047 +,, +568,-0.011919850630743356,0.0019488174 +,, +569,-0.02312462919608859,0.0018191446 +,, +570,-0.09027224110685339,0.0017933354 +,, +571,-0.01751745270029145,0.0017584019 +,, +572,0.03408729462972691,0.0017262285 +,, +573,0.004508840432798443,0.0016989928 +,, +574,-0.05005614793048062,0.0016640241 +,, +575,-0.15634451564995216,0.0017585425 +,, +576,-0.0729385875260992,0.0019102652 +,, +577,0.005123119519568743,0.0018732961 +,, +578,-0.034619600512079594,0.0018699842 +,, +579,-0.05598214304011361,0.0017665562 +,, +580,0.051653277240002175,0.0017897019 +,, +581,0.10406925506222513,0.0017840561 +,, +582,0.08919684906623647,0.0017592997 +,, +583,0.04277341982798514,0.0017076783 +,, +584,0.116687598878294,0.0016387952 +,, +585,-0.02903147680719833,0.0015810037 +,, +586,-0.036606028370256685,0.0014622647 +,, +587,-0.057050656963248916,0.0014957235 +,, +588,-0.08131759478740908,0.0014543158 +,, +589,0.006917282962930579,0.0014812534 +,, +590,0.07531752887382386,0.001367893 +,, +591,-0.11879855657912111,0.0013970856 +,, +592,0.053532892947887066,0.0015061393 +,, +593,-0.012382908036949983,0.0015357451 +,, +594,-0.0395867652903527,0.0016547425 +,, +595,0.03370366686821041,0.0016331424 +,, +596,-0.055640047087398864,0.0016304584 +,, +597,0.13742250986225202,0.0016652457 +,, +598,-0.1457648271755942,0.0017786825 +,, +599,0.02282343096470669,0.0017203672 +,, +600,0.05442618088236744,0.001786032 +,, +601,-0.15785777870256962,0.0017361853 +,, +602,-0.06606106779297435,0.0016937058 +,, +603,0.03915292138579837,0.0016890537 +,, +604,0.07297965616487105,0.0016218744 +,, +605,-0.00419617732555741,0.001601972 +,, +606,0.08657039304043271,0.0015790925 +,, +607,0.037074418459720954,0.001564561 +,, +608,0.006719259075085382,0.0015015571 +,, +609,-0.027632779482317283,0.001535351 +,, +610,0.061214490549019784,0.0015155817 +,, +611,0.058504244811544835,0.0015155214 +,, +612,-0.08076299110357278,0.0015362937 +,, +613,0.04375714164956413,0.0015615993 +,, +614,-0.0007114888951894743,0.0015777744 +,, +615,-0.055759634231385524,0.0016566053 +,, +616,0.13895578669071187,0.0016467813 +,, +617,0.08986693914881691,0.0016113274 +,, +618,0.01969964895161094,0.0015947443 +,, +619,0.0006110913684823603,0.0015654413 +,, +620,0.06764511649421637,0.0015996281 +,, +621,0.14997370945143593,0.001612214 +,, +622,0.042314313647811075,0.0015322065 +,, +623,-0.012527505333398317,0.0015821314 +,, +624,0.1425661075377119,0.0015103245 +,, +625,0.06341581964755437,0.0014455387 +,, +626,-0.029218725009692456,0.0015303436 +,, +627,-0.03237876298921145,0.0015454928 +,, +628,-0.04498179506182076,0.0015097434 +,, +629,-0.06993600458730084,0.0016027406 +,, +630,0.15581487407599476,0.0016061461 +,, +631,0.027543700094582565,0.0016446331 +,, +632,0.01329016982523248,0.0016633548 +,, +633,-0.061810615193154415,0.0015085164 +,, +634,0.046621674877057345,0.0016138197 +,, +635,0.10216885973487738,0.0016143487 +,, +636,-0.09400555604443789,0.0016096967 +,, +637,0.05411230994560377,0.0015991589 +,, +638,0.14591082545262601,0.0015933309 +,, +639,0.06432898026719841,0.0015239471 +,, +640,0.05643098168369378,0.0015452319 +,, +641,-0.019484795472761537,0.0015790348 +,, +642,-0.01221482738753564,0.0015637142 +,, +643,-0.0363827358032411,0.001596322 +,, +644,0.059141266659438,0.0016201679 +,, +645,-0.12748583306940325,0.0016536374 +,, +646,-0.004701946609046707,0.0015769384 +,, +647,-0.02089182809903665,0.001606236 +,, +648,-0.0019256729157434947,0.0016799301 +,, +649,0.01304284523268217,0.0016352783 +,, +650,0.0015706834488472717,0.0015815415 +,, +651,-0.0634193694592234,0.0015611749 +,, +652,-0.027976425673774296,0.0015601789 +,, +653,0.024854502360128133,0.0015590788 +,, +654,0.1112418436425208,0.0014543917 +,, +655,-0.0857842151402978,0.0015145291 +,, +656,-0.018654646187450788,0.001510774 +,, +657,-0.020856119749505485,0.0015026423 +,, +658,-0.08253827194070341,0.0014829512 +,, +659,0.050945206242156496,0.0015394397 +,, +660,-0.016474341564721384,0.0016067823 +,, +661,-0.027807553961341526,0.0015210335 +,, +662,-0.04826197290973554,0.0015509999 +,, +663,-0.03389269161404074,0.0015882564 +,, +664,-0.17563876028552639,0.001610259 +,, +665,-0.05496456252747087,0.0014971425 +,, +666,0.0444007082650404,0.0014673668 +,, +667,-0.008246388857127276,0.001393267 +,, +668,-0.003332509354830846,0.0013340584 +,, +669,0.02166915942011527,0.0012605786 +,, +670,0.02663793710655999,0.0011792941 +,, +671,-0.09992498332738461,0.0012000287 +,, +672,0.06994182880541189,0.0011347297 +,, +673,0.0028361468743795023,0.0010909894 +,, +674,0.07082613513415485,0.0010138055 +,, +675,0.036944019816414625,0.0010394409 +,, +676,0.07538543763881617,0.0010418305 +,, +677,0.0009420201070737058,0.0010731874 +,, +678,0.06002973452105979,0.0011011984 +,, +679,-0.020274580121209335,0.0010700924 +,, +680,-0.014096544722531152,0.0011639296 +,, +681,0.021182682350293733,0.0011387598 +,, +682,0.06671682839528081,0.001194834 +,, +683,0.04618238633694748,0.001205616 +,, +684,0.006509287599259568,0.0013037976 +,, +685,-0.0563923654847778,0.0012929349 +,, +686,-0.0010849440252534114,0.0013014317 +,, +687,0.02227130585055699,0.0013446751 +,, +688,-0.027638889317007802,0.0013919927 +,, +689,0.11587992058125852,0.0014260157 +,, +690,0.04554879567158489,0.0013734181 +,, +691,0.1040894838940198,0.0014188963 +,, +692,0.04553479206561739,0.0013775916 +,, +693,0.09661445007269326,0.0013906041 +,, +694,-0.03807134533753048,0.0013371798 +,, +695,0.1112460722944854,0.0013418801 +,, +696,-0.01175408773798478,0.0014211164 +,, +697,-0.10188487302563576,0.0013470534 +,, +698,-0.0769672850497061,0.001315282 +,, +699,-0.09299607000996044,0.0014131407 +,, +700,-0.050947305874455805,0.0014734557 +,, +701,-0.004537711331001663,0.0014704582 +,, +702,0.06737294459345154,0.0015474182 +,, +703,-0.016644752659194493,0.0015651288 +,, +704,-0.035065980483711276,0.0017819578 +,, +705,0.03812645691931622,0.0018381958 +,, +706,-0.14011371764488165,0.0017886732 +,, +707,-0.06593446310084644,0.0018567903 +,, +708,0.0011205521263393525,0.0018964342 +,, +709,-0.06143114851366417,0.001857879 +,, +710,-0.03303132887874291,0.0017472741 +,, +711,0.09286660016723206,0.0017861892 +,, +712,0.02509909755840766,0.0017209474 +,, +713,-0.012425452627800456,0.0017688789 +,, +714,0.16482344607841865,0.0015929053 +,, +715,-0.05753757001704274,0.001603996 +,, +716,-0.029448155039406003,0.0016065843 +,, +717,-0.025580960117318852,0.0015911171 +,, +718,-0.030531986737664895,0.0015900119 +,, +719,-0.056260966494239534,0.0016427931 +,, +720,-0.006589209623678115,0.0017046925 +,, +721,-0.02504138289270954,0.0016059477 +,, +722,-0.0167514791194074,0.0015981235 +,, +723,0.08637338828867452,0.0015169577 +,, +724,-0.04885662997255818,0.0014766265 +,, +725,0.007059368130510894,0.0014610193 +,, +726,-0.008284785934465355,0.0014538435 +,, +727,0.0002318486885437617,0.0014114145 +,, +728,0.11271776444629741,0.0013742128 +,, +729,0.11260732381237097,0.0012903323 +,, +730,-0.0744481106696366,0.0012526093 +,, +731,-0.04645518854691471,0.0013000371 +,, +732,-0.034848484345342934,0.0012952009 +,, +733,0.08632983453414272,0.001311125 +,, +734,-0.012251756264780565,0.001357936 +,, +735,0.0180340167177144,0.0012625211 +,, +736,0.1490864912037624,0.0012506814 +,, +737,-0.0447817400208233,0.0012420781 +,, +738,-0.12021576869989416,0.0012601435 +,, +739,0.025770769987672575,0.0014245887 +,, +740,-0.033304463807874524,0.0014529482 +,, +741,-0.04211297493787715,0.00143737 +,, +742,0.00851162413569296,0.0015056904 +,, +743,-0.14409227246221654,0.0014822015 +,, +744,-0.055243378135917426,0.0015202237 +,, +745,0.09788506970529427,0.0016448621 +,, +746,-0.12301696706573623,0.0016346775 +,, +747,-0.12755442929103655,0.0017506303 +,, +748,-0.06260813543214265,0.0017088789 +,, +749,0.019504925585455805,0.0016231742 +,, +750,-0.002749132122296487,0.0016619973 +,, +751,-0.10514679824553534,0.0016811952 +,, +752,-0.04023302440996497,0.0016501654 +,, +753,-0.14443762261268617,0.0016279487 +,, +754,0.03996443129210477,0.0015456935 +,, +755,-0.027742520505421857,0.0014450427 +,, +756,-0.08500633741992883,0.0014441294 +,, +757,0.009693418170352292,0.0013843784 +,, +758,0.061426859528693124,0.0013719222 +,, +759,-0.05841954774807545,0.0012864972 +,, +760,0.04852555636509472,0.0012014253 +,, +761,-0.0739272577014376,0.0011534083 +,, +762,0.03108548914822291,0.0011047863 +,, +763,0.00709844249817361,0.0011721404 +,, +764,-0.10502867728656201,0.001141215 +,, +765,-0.03910196009287367,0.0011649055 +,, +766,-0.01102110534323035,0.0011541259 +,, +767,0.11361482978072175,0.00104775 +,, +768,-0.08949930385443222,0.0011247257 +,, +769,-0.06060039606649853,0.0011293389 +,, +770,0.06344655070115415,0.0011369591 +,, +771,0.04598145221574171,0.0012278683 +,, +772,0.004853459229505558,0.0012642798 +,, +773,-0.07498697436300757,0.0012869451 +,, +774,0.03792047715934853,0.0013297705 +,, +775,0.06405190086729068,0.0014186993 +,, +776,-0.05240450083359148,0.0014338037 +,, +777,0.043820753555208244,0.0015006268 +,, +778,-0.03729455013420542,0.0014273908 +,, +779,0.09272688298872725,0.0014415398 +,, +780,-0.014237792488625577,0.0014662341 +,, +781,-0.01947441511887992,0.0014124663 +,, +782,-0.11627958922613191,0.0013342763 +,, +783,-0.006103725212011996,0.0012971035 +,, +784,-0.05687153144709249,0.0013647781 +,, +785,0.07283861883233272,0.0012315961 +,, +786,-0.023985950595662647,0.0013444985 +,, +787,0.15522137433319996,0.0013571052 +,, +788,-0.1216324279130962,0.0015096015 +,, +789,0.025625612261303537,0.0015455248 +,, +790,0.09743879185821885,0.00158327 +,, +791,0.008737399903786455,0.0016062756 +,, +792,0.12018055633022716,0.001755878 +,, +793,0.036365203366494916,0.0018160173 +,, +794,-0.0004834080321270279,0.001725144 +,, +795,-0.04128104593187063,0.0018430974 +,, +796,-0.01190563318791165,0.001736924 +,, +797,0.006695312303099502,0.0017135529 +,, +798,0.0977697451046616,0.0015935239 +,, +799,0.15150267770962417,0.0015165628 +,, +800,-0.03893481414657257,0.001427565 +,, +801,0.06249763821098507,0.0014683085 +,, +802,-0.032370480697538645,0.0013958691 +,, +803,-0.03869487420986845,0.0013081672 +,, +804,0.05885538454322582,0.0013625949 +,, +805,0.036442098055132675,0.001324336 +,, +806,-0.05532586359741762,0.0013276704 +,, +807,-0.0621850588667963,0.001321068 +,, +808,0.0040359969923087075,0.001273401 +,, +809,-0.13583863174665664,0.0013072513 +,, +810,-0.07561093061316537,0.001314732 +,, +811,-0.0021219012003275556,0.0012413089 +,, +812,-0.012968119094000002,0.0011837102 +,, +813,-0.021081927644862067,0.0011893586 +,, +814,-0.041410899890148484,0.0011229325 +,, +815,-0.08037553417086529,0.0010628313 +,, +816,0.14950195677448658,0.0010642329 +,, +817,0.0473101882837478,0.0010910208 +,, +818,-0.04323523729598472,0.0011212986 +,, +819,-0.008664383985653959,0.0011733446 +,, +820,0.03181098400163515,0.0012428403 +,, +821,0.0005806615559845706,0.001248314 +,, +822,0.04608693347245134,0.0012810953 +,, +823,-0.008585738836349582,0.0013508647 +,, +824,0.09469352062849154,0.0013772693 +,, +825,0.07400470905114609,0.0013980384 +,, +826,0.05365131407757222,0.00138821 +,, +827,0.09430021030499552,0.0013410014 +,, +828,0.06870290537339596,0.0013588734 +,, +829,-0.016884515368944794,0.001329851 +,, +830,-0.03122625880822573,0.0012443231 +,, +831,-0.1450608343444202,0.0012349149 +,, +832,-0.12046806925109683,0.0012319392 +,, +833,0.029280920447834684,0.0011614606 +,, +834,-0.07223342539077333,0.0011276733 +,, +835,-0.07388680412250725,0.0010807078 +,, +836,-0.020667456006058,0.0010470602 +,, +837,0.12387467108479142,0.0010900875 +,, +838,-0.0034519416907997577,0.0010210907 +,, +839,0.08107993361188282,0.00096073514 +,, +840,0.06872560020358008,0.0009749979 +,, +841,0.09080234595019644,0.000950004 +,, +842,-0.023461477819028853,0.00090250437 +,, +843,-0.010249988683406645,0.0008825554 +,, +844,0.045480905135369384,0.00088453403 +,, +845,0.007303179786370979,0.00088095694 +,, +846,-0.020151027482869573,0.00094369927 +,, +847,-0.011951290481491447,0.00089537894 +,, +848,-0.04344523561515648,0.0009072519 +,, +849,0.004820068622037959,0.00090577395 +,, +850,0.029327039731358476,0.00087266986 +,, +851,0.028907395657548615,0.0008591614 +,, +852,0.0848209053029437,0.0008527847 +,, +853,0.12303488726433569,0.0008234946 +,, +854,-0.043450017551983494,0.000811027 +,, +855,0.019860674269188316,0.0007940723 +,, +856,-0.043811237673551315,0.0007123447 +,, +857,0.0064638855707798495,0.0007456819 +,, +858,-0.032233260553249696,0.0007648327 +,, +859,0.05210603803444862,0.00075889734 +,, +860,0.0019152192647437852,0.00075010036 +,, +861,-0.01736690172685291,0.00075250247 +,, +862,-0.054539548482728684,0.00079283176 +,, +863,0.03950964388133187,0.00079905073 +,, +864,0.02347006402745703,0.00083459896 +,, +865,0.11380522534608,0.0008675875 +,, +866,0.04036680393075904,0.00089134945 +,, +867,-0.0009802067119945163,0.0008580085 +,, +868,-0.024568830108076513,0.0008368505 +,, +869,0.0326243688764009,0.0008652442 +,, +870,-0.10315465400643904,0.000889382 +,, +871,0.01737868990093537,0.0009333716 +,, +872,0.1610675290196171,0.00090401433 +,, +873,0.010318029808368556,0.0009614569 +,, +874,-0.06536096435754098,0.00094830774 +,, +875,0.03497777170718574,0.0009295023 +,, +876,-0.017474372849830784,0.0009667568 +,, +877,-0.06480274291953282,0.0010561368 +,, +878,0.07418424401198113,0.0011167463 +,, +879,-0.04894810312821278,0.0010872628 +,, +880,-0.07417846136966984,0.0010925243 +,, +881,-0.040439680502792466,0.0010628749 +,, +882,-0.002245919235052747,0.0011242713 +,, +883,0.08008817708776972,0.0010577763 +,, +884,0.04775067234258699,0.0010546888 +,, +885,0.06591574814432503,0.0010812151 +,, +886,-0.05890427627606527,0.0010511944 +,, +887,-0.002063660355271746,0.0009707517 +,, +888,-0.008825902669229564,0.0009104345 +,, +889,0.1053598185311503,0.0009550046 +,, +890,-0.005337371860717269,0.0009679996 +,, +891,0.09674344124554646,0.0009916811 +,, +892,0.10058723252408341,0.0009463288 +,, +893,0.08606261250256803,0.0009712934 +,, +894,-0.09276762676798336,0.0009714325 +,, +895,0.023000121879618814,0.00095690443 +,, +896,0.0060109925296285595,0.00092052575 +,, +897,-0.026230884250236924,0.00091311504 +,, +898,0.06902371176386801,0.00096675847 +,, +899,-0.011784112939481216,0.0009459886 +,, +900,-0.04011391591442363,0.0009249424 +,, +901,0.025067272966008518,0.0008659684 +,, +902,0.017035183079224143,0.00087528676 +,, +903,-0.045225399320476325,0.0008926176 +,, +904,-0.05465050172825205,0.0008806799 +,, +905,0.09674266182347521,0.0009170914 +,, +906,0.05792233084132652,0.000926555 +,, +907,-0.06162970509433861,0.0009437663 +,, +908,0.0011480534123413967,0.00088814646 +,, +909,-0.08402458436782333,0.0008562465 +,, +910,-0.1367414078099614,0.0008396214 +,, +911,0.01198476993812947,0.0008597195 +,, +912,0.11545452346645221,0.0008533724 +,, +913,-0.08903007191231073,0.0008084908 +,, +914,0.05167602285646152,0.0007821477 +,, +915,0.002502585162601885,0.0007664033 +,, +916,-0.012494581797338755,0.00075741246 +,, +917,-0.001126034919240855,0.0007603846 +,, +918,0.03198197001832122,0.00076967257 +,, +919,-0.018625508312999025,0.0008119568 +,, +920,-0.07656181481434565,0.00080182095 +,, +921,0.05210911279147444,0.00081231864 +,, +922,0.028906089694701008,0.0008213698 +,, +923,-0.05857238090178936,0.00084424485 +,, +924,0.060703969195472655,0.0008768731 +,, +925,-0.007729973261679849,0.00085797894 +,, +926,-0.04308191312313958,0.0008982549 +,, +927,0.014958044609097904,0.0008574022 +,, +928,0.06567141193165318,0.00083125883 +,, +929,-0.12943666301365925,0.0007904358 +,, +930,-0.10479122077213307,0.000884543 +,, +931,0.06377502455286899,0.0008903014 +,, +932,0.04195638728129728,0.00090680167 +,, +933,-0.05619369836955145,0.0008860087 +,, +934,-0.04141527972938985,0.00088993553 +,, +935,0.02203231352986626,0.0009092687 +,, +936,0.017317443937997133,0.00093270215 +,, +937,0.051880727795685644,0.0010453409 +,, +938,0.032720105619155726,0.0010436832 +,, +939,-0.013636358570947749,0.0010768556 +,, +940,-0.006947447266113717,0.0011166579 +,, +941,-0.03365910175067306,0.0011120068 +,, +942,0.10898635213985564,0.0010790712 +,, +943,-0.003022294468141241,0.0010900488 +,, +944,-0.0840772945146739,0.0010846038 +,, +945,0.10555529042254097,0.0010881622 +,, +946,0.08575995983928708,0.0010369209 +,, +947,-0.01908170601452518,0.000958197 +,, +948,-0.08659659434974237,0.0009943258 +,, +949,0.02146414471817255,0.00095832284 +,, +950,-0.07298327304019013,0.00089429447 +,, +951,-0.05021280911483396,0.0008669936 +,, +952,-0.16705343876035106,0.00088033994 +,, +953,-0.04307641821745374,0.00090450404 +,, +954,0.03653498287705069,0.0009026959 +,, +955,0.11883750876341773,0.0009001582 +,, +956,-0.01811920496980709,0.0009041087 +,, +957,-0.028825165495962077,0.0009324748 +,, +958,0.0013007464834981913,0.0009592011 +,, +959,0.05571172615778819,0.0009986355 +,, +960,0.023230608483663026,0.0010354888 +,, +961,-0.005136464815235962,0.0010847688 +,, +962,-0.028375969254687133,0.0012233548 +,, +963,-0.04575207170255384,0.0012245846 +,, +964,0.0574446674791362,0.0012466544 +,, +965,-0.04232452283858398,0.0012322072 +,, +966,0.09742726420045128,0.001287719 +,, +967,-0.030534408087679862,0.0013349492 +,, +968,-0.050174395253459445,0.0012873553 +,, +969,0.016513042866848463,0.0012826284 +,, +970,0.1365220034858468,0.0012041006 +,, +971,-0.007885123160481747,0.0012921549 +,, +972,0.0010462867722191606,0.0011927082 +,, +973,-0.0069342875285609284,0.001251634 +,, +974,-0.09693262456367979,0.0012371795 +,, +975,0.01962735645361155,0.0012494758 +,, +976,-0.10395074570944672,0.0011932516 +,, +977,-0.13738608859822676,0.001124379 +,, +978,-0.04951034500997971,0.0011223556 +,, +979,0.001671101809609058,0.0011355677 +,, +980,-0.06385254944870834,0.0011295741 +,, +981,0.09173167858719332,0.0010005261 +,, +982,-0.05836796712001662,0.0010080469 +,, +983,-0.04906224757905138,0.0009275223 +,, +984,-0.02403249310185294,0.0009599176 +,, +985,0.03324414265099796,0.0009332071 +,, +986,-0.027811870407900948,0.00094071275 +,, +987,0.08240042634334482,0.0009337614 +,, +988,0.1694921174135918,0.0009953778 +,, +989,-0.0849938050288255,0.00097034377 +,, +990,-0.02237362776689257,0.0009424101 +,, +991,-0.0006848664547287071,0.0010057773 +,, +992,0.13279070948272526,0.0009446338 +,, +993,0.05598905032891516,0.0010100038 +,, +994,-0.10544350001998712,0.0010010041 +,, +995,0.0014598469961501909,0.0010454252 +,, +996,-0.1032443368407973,0.001104085 +,, +997,0.11777124650630567,0.0012256686 +,, +998,-0.00784501455794575,0.001233397 +,, +999,0.04910456327304936,0.0013019892 +,, diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/tb/events/events.out.tfevents.1646140442.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/tb/events/events.out.tfevents.1646140442.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..211d5ed Binary files /dev/null and b/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/tb/events/events.out.tfevents.1646140442.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/warn.txt b/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/warn.txt new file mode 100644 index 0000000..f7e0929 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/warn.txt @@ -0,0 +1,8 @@ +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/backup.txt b/test/test_data_root/log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/backup.txt new file mode 100644 index 0000000..877f0bb --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/backup.txt @@ -0,0 +1,7 @@ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.01 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 888 diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/log.txt b/test/test_data_root/log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/log.txt new file mode 100644 index 0000000..89309e1 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/log.txt @@ -0,0 +1,12 @@ +Logging to ../log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/ +log dir: ../log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/ +pkl_file: ../archive_tester/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888.pkl +checkpoint_dir: ../checkpoint/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/ +results_dir: ../results/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.01 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 888 diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/progress.csv b/test/test_data_root/log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/tb/events/events.out.tfevents.1646140801.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/tb/events/events.out.tfevents.1646140801.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..f16e2bc Binary files /dev/null and b/test/test_data_root/log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/tb/events/events.out.tfevents.1646140801.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/warn.txt b/test/test_data_root/log/demo_task/2022/03/01/21-19-57-875205 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/backup.txt b/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/backup.txt new file mode 100644 index 0000000..3fdaba0 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/backup.txt @@ -0,0 +1,7 @@ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.01 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 8888 diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/log.txt b/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/log.txt new file mode 100644 index 0000000..7266014 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/log.txt @@ -0,0 +1,5048 @@ +Logging to ../log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/ +log dir: ../log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/ +pkl_file: ../archive_tester/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888.pkl +checkpoint_dir: ../checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/ +results_dir: ../results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.01 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 8888 +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +--------------------------------------------------------- +| time-step | 0 | +| y_out | -0.013 | +--------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint 0 +--------------------------------------------------------- +| time-step | 1 | +| y_out | -0.0398 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 2 | +| y_out | -0.0212 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 3 | +| y_out | -0.0308 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 4 | +| y_out | 0.0359 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 5 | +| y_out | -0.0504 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 6 | +| y_out | 0.0961 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 7 | +| y_out | -0.0264 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 8 | +| y_out | 0.0186 | +--------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22814277 | +| time-step | 9 | +| y_out | -0.0109 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19190815 | +| time-step | 10 | +| y_out | -0.115 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14656934 | +| time-step | 11 | +| y_out | -0.0477 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13418613 | +| time-step | 12 | +| y_out | -0.00868 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12194592 | +| time-step | 13 | +| y_out | -0.0594 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11168168 | +| time-step | 14 | +| y_out | 0.0662 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09495102 | +| time-step | 15 | +| y_out | 0.0553 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08053599 | +| time-step | 16 | +| y_out | -0.0367 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07548128 | +| time-step | 17 | +| y_out | 0.00463 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06800024 | +| time-step | 18 | +| y_out | 0.0338 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06443814 | +| time-step | 19 | +| y_out | 0.127 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.061469335 | +| time-step | 20 | +| y_out | -0.0968 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05173979 | +| time-step | 21 | +| y_out | -0.0468 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.049125113 | +| time-step | 22 | +| y_out | 0.0437 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047618106 | +| time-step | 23 | +| y_out | -0.112 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04363936 | +| time-step | 24 | +| y_out | -0.114 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.040248767 | +| time-step | 25 | +| y_out | 0.078 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038495947 | +| time-step | 26 | +| y_out | 0.0966 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036612876 | +| time-step | 27 | +| y_out | 0.111 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034937687 | +| time-step | 28 | +| y_out | 0.0692 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03362351 | +| time-step | 29 | +| y_out | -0.0105 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.032952435 | +| time-step | 30 | +| y_out | 0.087 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030083561 | +| time-step | 31 | +| y_out | -0.117 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028178344 | +| time-step | 32 | +| y_out | 0.0726 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027806658 | +| time-step | 33 | +| y_out | 0.117 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026402492 | +| time-step | 34 | +| y_out | 0.0209 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024513748 | +| time-step | 35 | +| y_out | 0.072 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02449134 | +| time-step | 36 | +| y_out | -0.0442 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02332837 | +| time-step | 37 | +| y_out | 0.054 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.020952143 | +| time-step | 38 | +| y_out | 0.0743 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020119164 | +| time-step | 39 | +| y_out | -0.103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019523617 | +| time-step | 40 | +| y_out | 0.128 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01971373 | +| time-step | 41 | +| y_out | -0.0632 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01886544 | +| time-step | 42 | +| y_out | -0.0268 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01780585 | +| time-step | 43 | +| y_out | 0.05 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.017950684 | +| time-step | 44 | +| y_out | -0.0445 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017043848 | +| time-step | 45 | +| y_out | 0.0608 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01589923 | +| time-step | 46 | +| y_out | 0.0516 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015796915 | +| time-step | 47 | +| y_out | 0.0283 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016570983 | +| time-step | 48 | +| y_out | -0.0478 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01654853 | +| time-step | 49 | +| y_out | -0.0302 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0161605 | +| time-step | 50 | +| y_out | -0.0187 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015983542 | +| time-step | 51 | +| y_out | 0.0531 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015992003 | +| time-step | 52 | +| y_out | -0.0277 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015842691 | +| time-step | 53 | +| y_out | -0.0606 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0153492885 | +| time-step | 54 | +| y_out | -0.0669 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015530897 | +| time-step | 55 | +| y_out | 0.0551 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015361421 | +| time-step | 56 | +| y_out | 0.0145 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014956504 | +| time-step | 57 | +| y_out | -0.0797 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014301039 | +| time-step | 58 | +| y_out | 0.0946 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013976658 | +| time-step | 59 | +| y_out | -0.0388 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014097333 | +| time-step | 60 | +| y_out | -0.0525 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013206692 | +| time-step | 61 | +| y_out | -0.0524 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013091194 | +| time-step | 62 | +| y_out | 0.0681 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012828231 | +| time-step | 63 | +| y_out | 0.00685 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012624028 | +| time-step | 64 | +| y_out | -0.093 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01218119 | +| time-step | 65 | +| y_out | 0.0732 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.011941055 | +| time-step | 66 | +| y_out | -0.0298 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011805937 | +| time-step | 67 | +| y_out | -0.00887 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011551429 | +| time-step | 68 | +| y_out | 0.119 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011596314 | +| time-step | 69 | +| y_out | -0.0434 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011252415 | +| time-step | 70 | +| y_out | 0.0613 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011377673 | +| time-step | 71 | +| y_out | -0.0387 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0111884335 | +| time-step | 72 | +| y_out | 0.162 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01113789 | +| time-step | 73 | +| y_out | -0.0902 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0109994095 | +| time-step | 74 | +| y_out | 0.0356 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010855131 | +| time-step | 75 | +| y_out | -0.0406 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011410418 | +| time-step | 76 | +| y_out | -0.0279 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011704127 | +| time-step | 77 | +| y_out | -0.0779 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011506419 | +| time-step | 78 | +| y_out | 0.0586 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011268602 | +| time-step | 79 | +| y_out | 0.00219 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011008004 | +| time-step | 80 | +| y_out | -0.0336 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011449149 | +| time-step | 81 | +| y_out | -0.0578 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011286937 | +| time-step | 82 | +| y_out | -0.0307 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0108551225 | +| time-step | 83 | +| y_out | 0.0143 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0107244495 | +| time-step | 84 | +| y_out | 0.0582 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010829263 | +| time-step | 85 | +| y_out | 0.0572 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010135734 | +| time-step | 86 | +| y_out | 0.0634 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009615773 | +| time-step | 87 | +| y_out | 0.0266 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009502051 | +| time-step | 88 | +| y_out | -0.0618 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0093239285 | +| time-step | 89 | +| y_out | 0.0806 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009704497 | +| time-step | 90 | +| y_out | -0.022 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008905305 | +| time-step | 91 | +| y_out | -0.00353 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0088629145 | +| time-step | 92 | +| y_out | -0.125 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008705814 | +| time-step | 93 | +| y_out | 0.122 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008940022 | +| time-step | 94 | +| y_out | 0.023 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008700555 | +| time-step | 95 | +| y_out | 0.0543 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008806358 | +| time-step | 96 | +| y_out | -0.0577 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008766229 | +| time-step | 97 | +| y_out | -0.113 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008845379 | +| time-step | 98 | +| y_out | 0.031 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008962333 | +| time-step | 99 | +| y_out | 0.17 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008823075 | +| time-step | 100 | +| y_out | 0.0818 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint 100 +------------------------------------------------------------ +| perf/mse | 0.009079252 | +| time-step | 101 | +| y_out | 0.0106 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009047341 | +| time-step | 102 | +| y_out | -0.0447 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0092800325 | +| time-step | 103 | +| y_out | 0.0114 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009331655 | +| time-step | 104 | +| y_out | 0.00084 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0093044955 | +| time-step | 105 | +| y_out | -0.00939 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009508592 | +| time-step | 106 | +| y_out | -0.0777 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009845148 | +| time-step | 107 | +| y_out | -0.0397 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00994922 | +| time-step | 108 | +| y_out | -0.0695 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009717304 | +| time-step | 109 | +| y_out | -0.0986 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0097834915 | +| time-step | 110 | +| y_out | -0.0192 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00985957 | +| time-step | 111 | +| y_out | -0.124 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009869351 | +| time-step | 112 | +| y_out | 0.125 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010112503 | +| time-step | 113 | +| y_out | -0.166 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009826284 | +| time-step | 114 | +| y_out | 0.0724 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009966163 | +| time-step | 115 | +| y_out | -0.000702 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00990772 | +| time-step | 116 | +| y_out | 0.112 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00951389 | +| time-step | 117 | +| y_out | 0.0835 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00927384 | +| time-step | 118 | +| y_out | 0.156 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009128759 | +| time-step | 119 | +| y_out | -0.00471 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00913714 | +| time-step | 120 | +| y_out | 0.033 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008777548 | +| time-step | 121 | +| y_out | -0.0129 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008357844 | +| time-step | 122 | +| y_out | 0.0151 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007956855 | +| time-step | 123 | +| y_out | 0.0291 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007997531 | +| time-step | 124 | +| y_out | 0.0562 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008159223 | +| time-step | 125 | +| y_out | -0.0207 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008003077 | +| time-step | 126 | +| y_out | 0.121 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008236217 | +| time-step | 127 | +| y_out | 0.113 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0082245255 | +| time-step | 128 | +| y_out | -0.0245 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008678203 | +| time-step | 129 | +| y_out | 0.0274 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0085857455 | +| time-step | 130 | +| y_out | -0.0112 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008827664 | +| time-step | 131 | +| y_out | -0.0251 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009627724 | +| time-step | 132 | +| y_out | -0.0354 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009989527 | +| time-step | 133 | +| y_out | 0.149 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010198536 | +| time-step | 134 | +| y_out | 0.146 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010393284 | +| time-step | 135 | +| y_out | -0.0758 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010434011 | +| time-step | 136 | +| y_out | -0.123 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010183383 | +| time-step | 137 | +| y_out | 0.0284 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010108882 | +| time-step | 138 | +| y_out | -0.027 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009743065 | +| time-step | 139 | +| y_out | 0.0661 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009792206 | +| time-step | 140 | +| y_out | 0.134 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009693286 | +| time-step | 141 | +| y_out | 0.00407 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009483784 | +| time-step | 142 | +| y_out | 0.0954 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0090315435 | +| time-step | 143 | +| y_out | -0.0424 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008447139 | +| time-step | 144 | +| y_out | -0.108 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007830776 | +| time-step | 145 | +| y_out | 0.0191 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00749177 | +| time-step | 146 | +| y_out | 0.0101 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007686507 | +| time-step | 147 | +| y_out | 0.101 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0077596516 | +| time-step | 148 | +| y_out | 0.123 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007711702 | +| time-step | 149 | +| y_out | 0.0285 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0074007795 | +| time-step | 150 | +| y_out | -0.0279 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0073721996 | +| time-step | 151 | +| y_out | -0.129 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0074723167 | +| time-step | 152 | +| y_out | -0.0749 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007752657 | +| time-step | 153 | +| y_out | -0.153 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008310327 | +| time-step | 154 | +| y_out | 0.00628 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008291332 | +| time-step | 155 | +| y_out | -0.0507 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008496254 | +| time-step | 156 | +| y_out | 0.0055 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008483608 | +| time-step | 157 | +| y_out | 0.0684 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008220109 | +| time-step | 158 | +| y_out | 0.0358 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008307133 | +| time-step | 159 | +| y_out | -0.0448 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008243485 | +| time-step | 160 | +| y_out | 0.0729 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008122629 | +| time-step | 161 | +| y_out | 0.0673 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007903912 | +| time-step | 162 | +| y_out | 0.12 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007865642 | +| time-step | 163 | +| y_out | -0.0699 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007622161 | +| time-step | 164 | +| y_out | 0.0505 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0079662 | +| time-step | 165 | +| y_out | -0.0156 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007813568 | +| time-step | 166 | +| y_out | -0.0861 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0076940046 | +| time-step | 167 | +| y_out | -0.0359 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0077493945 | +| time-step | 168 | +| y_out | -0.0981 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0076100677 | +| time-step | 169 | +| y_out | 0.0106 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0077119707 | +| time-step | 170 | +| y_out | 0.0145 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008007618 | +| time-step | 171 | +| y_out | 0.0929 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007861136 | +| time-step | 172 | +| y_out | -0.0823 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007533052 | +| time-step | 173 | +| y_out | 0.0662 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0074703456 | +| time-step | 174 | +| y_out | -0.0799 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007024908 | +| time-step | 175 | +| y_out | -0.037 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006973028 | +| time-step | 176 | +| y_out | -0.0607 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006808958 | +| time-step | 177 | +| y_out | -0.171 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0067936345 | +| time-step | 178 | +| y_out | 0.0384 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0065353974 | +| time-step | 179 | +| y_out | 0.11 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0064742193 | +| time-step | 180 | +| y_out | 0.0197 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006289745 | +| time-step | 181 | +| y_out | 0.0243 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0062902225 | +| time-step | 182 | +| y_out | -0.0537 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0063520125 | +| time-step | 183 | +| y_out | 0.122 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0062725493 | +| time-step | 184 | +| y_out | -0.0445 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0065097734 | +| time-step | 185 | +| y_out | -0.104 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006561597 | +| time-step | 186 | +| y_out | 0.00215 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00655551 | +| time-step | 187 | +| y_out | 0.0294 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006472918 | +| time-step | 188 | +| y_out | 0.0415 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0065273703 | +| time-step | 189 | +| y_out | -0.0114 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0063348166 | +| time-step | 190 | +| y_out | 0.0879 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006337526 | +| time-step | 191 | +| y_out | 0.0381 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0062272483 | +| time-step | 192 | +| y_out | -0.0767 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0062594516 | +| time-step | 193 | +| y_out | 0.104 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006278423 | +| time-step | 194 | +| y_out | 0.123 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0061354144 | +| time-step | 195 | +| y_out | -0.108 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0060305703 | +| time-step | 196 | +| y_out | 0.0247 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0061104754 | +| time-step | 197 | +| y_out | -0.126 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0062858225 | +| time-step | 198 | +| y_out | -0.00541 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006298403 | +| time-step | 199 | +| y_out | -0.0273 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006660664 | +| time-step | 200 | +| y_out | -0.0259 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint 200 +------------------------------------------------------------ +| perf/mse | 0.006327367 | +| time-step | 201 | +| y_out | -0.111 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006286925 | +| time-step | 202 | +| y_out | 0.0238 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0063311225 | +| time-step | 203 | +| y_out | 0.0167 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006096818 | +| time-step | 204 | +| y_out | 0.0873 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0059129233 | +| time-step | 205 | +| y_out | 0.0648 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0059521077 | +| time-step | 206 | +| y_out | 0.0685 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0057609743 | +| time-step | 207 | +| y_out | -0.0468 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0056522526 | +| time-step | 208 | +| y_out | 0.0401 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0057538003 | +| time-step | 209 | +| y_out | -0.00547 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053303726 | +| time-step | 210 | +| y_out | -0.0278 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00543254 | +| time-step | 211 | +| y_out | 0.0257 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054755462 | +| time-step | 212 | +| y_out | 0.103 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005163024 | +| time-step | 213 | +| y_out | 0.0615 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00527807 | +| time-step | 214 | +| y_out | -0.0455 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054206722 | +| time-step | 215 | +| y_out | 0.0102 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005390556 | +| time-step | 216 | +| y_out | -0.0681 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005303591 | +| time-step | 217 | +| y_out | 0.0221 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005322987 | +| time-step | 218 | +| y_out | -0.0352 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0051577697 | +| time-step | 219 | +| y_out | -0.118 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005256223 | +| time-step | 220 | +| y_out | -0.0799 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0054133954 | +| time-step | 221 | +| y_out | 0.0311 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005216778 | +| time-step | 222 | +| y_out | 0.172 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005268435 | +| time-step | 223 | +| y_out | 0.0651 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005479181 | +| time-step | 224 | +| y_out | 0.0375 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005524743 | +| time-step | 225 | +| y_out | -0.0803 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0055872994 | +| time-step | 226 | +| y_out | -0.0981 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005836328 | +| time-step | 227 | +| y_out | -0.00473 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0057471474 | +| time-step | 228 | +| y_out | -0.0165 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0058778888 | +| time-step | 229 | +| y_out | -0.0929 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005986926 | +| time-step | 230 | +| y_out | 0.00867 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00576377 | +| time-step | 231 | +| y_out | -0.0504 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005870902 | +| time-step | 232 | +| y_out | -0.0191 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0058360295 | +| time-step | 233 | +| y_out | 0.0209 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054785404 | +| time-step | 234 | +| y_out | -0.00798 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005676602 | +| time-step | 235 | +| y_out | -0.0782 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005449542 | +| time-step | 236 | +| y_out | 0.0131 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0052621923 | +| time-step | 237 | +| y_out | -0.0344 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053039417 | +| time-step | 238 | +| y_out | -0.0572 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005104669 | +| time-step | 239 | +| y_out | 0.00293 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004935091 | +| time-step | 240 | +| y_out | 0.0952 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0049037556 | +| time-step | 241 | +| y_out | 0.00735 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00503283 | +| time-step | 242 | +| y_out | 0.119 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005100853 | +| time-step | 243 | +| y_out | 0.0225 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0054141255 | +| time-step | 244 | +| y_out | -0.028 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0049223904 | +| time-step | 245 | +| y_out | 0.0381 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0050099087 | +| time-step | 246 | +| y_out | -0.101 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0051783705 | +| time-step | 247 | +| y_out | -0.126 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0051969956 | +| time-step | 248 | +| y_out | -0.143 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052441894 | +| time-step | 249 | +| y_out | 0.0634 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053930283 | +| time-step | 250 | +| y_out | 0.131 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053435406 | +| time-step | 251 | +| y_out | 0.0329 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00520441 | +| time-step | 252 | +| y_out | 0.0482 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054052984 | +| time-step | 253 | +| y_out | -0.0533 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005094585 | +| time-step | 254 | +| y_out | 0.00244 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005109689 | +| time-step | 255 | +| y_out | -0.0304 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0051714643 | +| time-step | 256 | +| y_out | -0.0606 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004958625 | +| time-step | 257 | +| y_out | 0.0318 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005060304 | +| time-step | 258 | +| y_out | -0.0527 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005055004 | +| time-step | 259 | +| y_out | -0.0706 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005030291 | +| time-step | 260 | +| y_out | -0.0588 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005053456 | +| time-step | 261 | +| y_out | -0.0441 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005302157 | +| time-step | 262 | +| y_out | 0.000941 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0049746884 | +| time-step | 263 | +| y_out | 0.000903 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005001827 | +| time-step | 264 | +| y_out | 0.0753 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005208264 | +| time-step | 265 | +| y_out | 0.0602 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0052080993 | +| time-step | 266 | +| y_out | 0.0254 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0051157377 | +| time-step | 267 | +| y_out | -0.0679 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0050438377 | +| time-step | 268 | +| y_out | -0.0426 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005080645 | +| time-step | 269 | +| y_out | 0.012 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0048659346 | +| time-step | 270 | +| y_out | 0.0665 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004884166 | +| time-step | 271 | +| y_out | 0.0247 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004600591 | +| time-step | 272 | +| y_out | -0.0263 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004561812 | +| time-step | 273 | +| y_out | 0.0897 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0046241884 | +| time-step | 274 | +| y_out | -0.0502 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004417187 | +| time-step | 275 | +| y_out | 0.0404 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0042505665 | +| time-step | 276 | +| y_out | -0.0412 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0044181906 | +| time-step | 277 | +| y_out | -0.0823 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0042009973 | +| time-step | 278 | +| y_out | 0.00324 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00408451 | +| time-step | 279 | +| y_out | -0.022 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041899416 | +| time-step | 280 | +| y_out | -0.0778 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004101356 | +| time-step | 281 | +| y_out | 0.0279 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040584723 | +| time-step | 282 | +| y_out | 0.0292 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003995669 | +| time-step | 283 | +| y_out | -0.0276 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0038804102 | +| time-step | 284 | +| y_out | 0.000751 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039048274 | +| time-step | 285 | +| y_out | -0.00911 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038150835 | +| time-step | 286 | +| y_out | 0.0491 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036521622 | +| time-step | 287 | +| y_out | 0.0873 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036560171 | +| time-step | 288 | +| y_out | -0.12 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036707025 | +| time-step | 289 | +| y_out | 0.0652 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003663823 | +| time-step | 290 | +| y_out | 0.0299 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036018915 | +| time-step | 291 | +| y_out | -0.078 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035577565 | +| time-step | 292 | +| y_out | -0.0165 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036325217 | +| time-step | 293 | +| y_out | -0.0148 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035084677 | +| time-step | 294 | +| y_out | 0.0082 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034077198 | +| time-step | 295 | +| y_out | 0.0507 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035068407 | +| time-step | 296 | +| y_out | 0.0536 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003616973 | +| time-step | 297 | +| y_out | 0.0477 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036918302 | +| time-step | 298 | +| y_out | 0.0629 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036206767 | +| time-step | 299 | +| y_out | -0.0455 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035456014 | +| time-step | 300 | +| y_out | 0.151 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint 300 +------------------------------------------------------------- +| perf/mse | 0.0036069364 | +| time-step | 301 | +| y_out | 0.00414 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037248996 | +| time-step | 302 | +| y_out | -0.0771 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036344938 | +| time-step | 303 | +| y_out | 0.019 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00368546 | +| time-step | 304 | +| y_out | 0.0152 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038071903 | +| time-step | 305 | +| y_out | 0.00272 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00399639 | +| time-step | 306 | +| y_out | 0.0207 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039564827 | +| time-step | 307 | +| y_out | 0.0666 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004216424 | +| time-step | 308 | +| y_out | -0.00561 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004179932 | +| time-step | 309 | +| y_out | -0.0278 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0042393752 | +| time-step | 310 | +| y_out | 0.192 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004197497 | +| time-step | 311 | +| y_out | -0.0527 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040477975 | +| time-step | 312 | +| y_out | 0.0885 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041513015 | +| time-step | 313 | +| y_out | 0.0581 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041851373 | +| time-step | 314 | +| y_out | 0.0193 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0043020644 | +| time-step | 315 | +| y_out | -0.0468 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004193698 | +| time-step | 316 | +| y_out | -0.0791 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0041403947 | +| time-step | 317 | +| y_out | 0.111 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039382842 | +| time-step | 318 | +| y_out | -0.0504 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039878357 | +| time-step | 319 | +| y_out | 0.0259 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003963006 | +| time-step | 320 | +| y_out | 0.0499 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040808967 | +| time-step | 321 | +| y_out | -0.00976 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004089148 | +| time-step | 322 | +| y_out | -0.00544 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004174361 | +| time-step | 323 | +| y_out | -0.055 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0044125123 | +| time-step | 324 | +| y_out | 0.0192 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0043088314 | +| time-step | 325 | +| y_out | 0.00854 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00413171 | +| time-step | 326 | +| y_out | 0.0986 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004287612 | +| time-step | 327 | +| y_out | -0.0847 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0043292423 | +| time-step | 328 | +| y_out | -0.00772 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0043574073 | +| time-step | 329 | +| y_out | -0.0597 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0044156606 | +| time-step | 330 | +| y_out | 0.0193 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004237474 | +| time-step | 331 | +| y_out | 0.0227 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004242272 | +| time-step | 332 | +| y_out | -0.176 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004266515 | +| time-step | 333 | +| y_out | -0.0241 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00423325 | +| time-step | 334 | +| y_out | 0.0392 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041499655 | +| time-step | 335 | +| y_out | 0.000388 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00454837 | +| time-step | 336 | +| y_out | 0.102 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004348189 | +| time-step | 337 | +| y_out | 0.037 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0041687335 | +| time-step | 338 | +| y_out | -0.0224 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0044572987 | +| time-step | 339 | +| y_out | 0.0307 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0042990986 | +| time-step | 340 | +| y_out | 0.00452 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0043040626 | +| time-step | 341 | +| y_out | 0.0181 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004310579 | +| time-step | 342 | +| y_out | 0.143 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004043701 | +| time-step | 343 | +| y_out | -0.103 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0038689692 | +| time-step | 344 | +| y_out | -0.000114 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039927894 | +| time-step | 345 | +| y_out | 0.0177 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036412464 | +| time-step | 346 | +| y_out | 0.0353 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036830255 | +| time-step | 347 | +| y_out | 0.0519 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003789559 | +| time-step | 348 | +| y_out | 0.0664 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0034503099 | +| time-step | 349 | +| y_out | -0.0405 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034847078 | +| time-step | 350 | +| y_out | -0.0675 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036763232 | +| time-step | 351 | +| y_out | 0.00809 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036198385 | +| time-step | 352 | +| y_out | 0.0504 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037022172 | +| time-step | 353 | +| y_out | -0.0687 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003784782 | +| time-step | 354 | +| y_out | -0.0298 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036062598 | +| time-step | 355 | +| y_out | -0.0408 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003554086 | +| time-step | 356 | +| y_out | -0.0393 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0034277563 | +| time-step | 357 | +| y_out | 0.0919 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032615073 | +| time-step | 358 | +| y_out | 0.0398 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031486116 | +| time-step | 359 | +| y_out | 0.0312 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031012534 | +| time-step | 360 | +| y_out | 0.0303 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029184758 | +| time-step | 361 | +| y_out | 0.164 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002877044 | +| time-step | 362 | +| y_out | 0.0296 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0028360656 | +| time-step | 363 | +| y_out | -0.0483 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002589463 | +| time-step | 364 | +| y_out | -0.0896 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0025715188 | +| time-step | 365 | +| y_out | 0.0617 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026089766 | +| time-step | 366 | +| y_out | 0.0665 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00266103 | +| time-step | 367 | +| y_out | 0.0504 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027067424 | +| time-step | 368 | +| y_out | 0.073 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027684818 | +| time-step | 369 | +| y_out | -0.00346 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026964836 | +| time-step | 370 | +| y_out | -0.0353 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027253355 | +| time-step | 371 | +| y_out | -0.0335 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026865224 | +| time-step | 372 | +| y_out | -0.0263 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027575567 | +| time-step | 373 | +| y_out | 0.0703 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027883498 | +| time-step | 374 | +| y_out | -0.0049 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028122657 | +| time-step | 375 | +| y_out | 0.0687 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002724332 | +| time-step | 376 | +| y_out | 0.0377 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0026641716 | +| time-step | 377 | +| y_out | 0.0227 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027131606 | +| time-step | 378 | +| y_out | 0.0408 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027769406 | +| time-step | 379 | +| y_out | 0.137 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028316758 | +| time-step | 380 | +| y_out | 0.0591 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028969352 | +| time-step | 381 | +| y_out | 0.108 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029437765 | +| time-step | 382 | +| y_out | 0.0515 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002945118 | +| time-step | 383 | +| y_out | -0.00843 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003000104 | +| time-step | 384 | +| y_out | -0.118 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0029598312 | +| time-step | 385 | +| y_out | 0.02 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029995074 | +| time-step | 386 | +| y_out | 0.0337 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003022773 | +| time-step | 387 | +| y_out | 0.122 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00293301 | +| time-step | 388 | +| y_out | -0.0468 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00288595 | +| time-step | 389 | +| y_out | 0.0459 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028845086 | +| time-step | 390 | +| y_out | 0.00252 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028931538 | +| time-step | 391 | +| y_out | 0.00519 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029253946 | +| time-step | 392 | +| y_out | -0.0347 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027798438 | +| time-step | 393 | +| y_out | 0.178 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027377517 | +| time-step | 394 | +| y_out | -0.0891 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027091778 | +| time-step | 395 | +| y_out | -0.0417 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027136323 | +| time-step | 396 | +| y_out | 0.0665 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026537026 | +| time-step | 397 | +| y_out | -0.0648 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026035416 | +| time-step | 398 | +| y_out | 0.133 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027148766 | +| time-step | 399 | +| y_out | -0.073 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026764562 | +| time-step | 400 | +| y_out | -0.0106 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint 400 +------------------------------------------------------------- +| perf/mse | 0.0025633783 | +| time-step | 401 | +| y_out | 0.0346 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024607638 | +| time-step | 402 | +| y_out | 0.0949 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026140804 | +| time-step | 403 | +| y_out | -0.0286 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028095958 | +| time-step | 404 | +| y_out | -0.00367 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028621678 | +| time-step | 405 | +| y_out | -0.109 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028227596 | +| time-step | 406 | +| y_out | -0.0583 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002918527 | +| time-step | 407 | +| y_out | 0.0483 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002974172 | +| time-step | 408 | +| y_out | 0.0396 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0028609713 | +| time-step | 409 | +| y_out | 0.0392 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029443295 | +| time-step | 410 | +| y_out | 0.0361 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029121835 | +| time-step | 411 | +| y_out | 0.0062 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029660575 | +| time-step | 412 | +| y_out | -0.114 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002851428 | +| time-step | 413 | +| y_out | 0.016 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0026635982 | +| time-step | 414 | +| y_out | -0.0861 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025814697 | +| time-step | 415 | +| y_out | -0.00389 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025655008 | +| time-step | 416 | +| y_out | -0.0131 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025301003 | +| time-step | 417 | +| y_out | -0.0759 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025324966 | +| time-step | 418 | +| y_out | 0.0873 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024488522 | +| time-step | 419 | +| y_out | -0.0149 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002294812 | +| time-step | 420 | +| y_out | 0.11 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0021909764 | +| time-step | 421 | +| y_out | 0.0141 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002174045 | +| time-step | 422 | +| y_out | 0.135 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0021627548 | +| time-step | 423 | +| y_out | -0.0391 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022104885 | +| time-step | 424 | +| y_out | 0.0666 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002318445 | +| time-step | 425 | +| y_out | 0.00703 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0024139923 | +| time-step | 426 | +| y_out | 0.0534 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023800575 | +| time-step | 427 | +| y_out | -0.00408 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023304624 | +| time-step | 428 | +| y_out | 0.0466 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002378085 | +| time-step | 429 | +| y_out | -0.0148 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0025470653 | +| time-step | 430 | +| y_out | 0.0611 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026202898 | +| time-step | 431 | +| y_out | -0.0319 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002626631 | +| time-step | 432 | +| y_out | -0.0489 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002606416 | +| time-step | 433 | +| y_out | 0.0673 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002634737 | +| time-step | 434 | +| y_out | -0.00585 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0025430552 | +| time-step | 435 | +| y_out | 0.0786 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024083047 | +| time-step | 436 | +| y_out | -0.0211 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024108659 | +| time-step | 437 | +| y_out | -0.0536 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024198657 | +| time-step | 438 | +| y_out | 0.0392 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023280159 | +| time-step | 439 | +| y_out | 0.032 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002206035 | +| time-step | 440 | +| y_out | -0.0592 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0022109388 | +| time-step | 441 | +| y_out | 0.0456 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021608341 | +| time-step | 442 | +| y_out | -0.0152 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021653138 | +| time-step | 443 | +| y_out | 0.0246 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020893263 | +| time-step | 444 | +| y_out | -0.0421 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020773895 | +| time-step | 445 | +| y_out | -0.0401 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002117512 | +| time-step | 446 | +| y_out | 0.0371 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0020872266 | +| time-step | 447 | +| y_out | -0.0795 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019826216 | +| time-step | 448 | +| y_out | 0.111 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020338867 | +| time-step | 449 | +| y_out | -0.0171 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001994757 | +| time-step | 450 | +| y_out | -0.0591 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0019529707 | +| time-step | 451 | +| y_out | 0.00818 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019151836 | +| time-step | 452 | +| y_out | -0.135 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018748939 | +| time-step | 453 | +| y_out | -0.0179 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017884662 | +| time-step | 454 | +| y_out | -0.119 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017458296 | +| time-step | 455 | +| y_out | -0.0409 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001717279 | +| time-step | 456 | +| y_out | 0.00683 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0016646234 | +| time-step | 457 | +| y_out | 0.0405 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016306092 | +| time-step | 458 | +| y_out | 0.0991 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001587358 | +| time-step | 459 | +| y_out | 0.0868 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015988561 | +| time-step | 460 | +| y_out | -0.157 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015891518 | +| time-step | 461 | +| y_out | -0.0318 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016028725 | +| time-step | 462 | +| y_out | -0.107 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016279299 | +| time-step | 463 | +| y_out | 0.0323 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016414586 | +| time-step | 464 | +| y_out | -0.0725 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016114619 | +| time-step | 465 | +| y_out | 0.0981 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016523786 | +| time-step | 466 | +| y_out | 0.0839 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017532157 | +| time-step | 467 | +| y_out | 0.043 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018698343 | +| time-step | 468 | +| y_out | -0.00574 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019232066 | +| time-step | 469 | +| y_out | 0.0203 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019062788 | +| time-step | 470 | +| y_out | -0.0484 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018841226 | +| time-step | 471 | +| y_out | -0.0602 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018888488 | +| time-step | 472 | +| y_out | -0.012 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018755818 | +| time-step | 473 | +| y_out | -0.0222 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018860779 | +| time-step | 474 | +| y_out | 0.0117 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018893316 | +| time-step | 475 | +| y_out | -0.0112 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018203834 | +| time-step | 476 | +| y_out | -0.0658 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018144085 | +| time-step | 477 | +| y_out | 0.0438 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001791051 | +| time-step | 478 | +| y_out | 0.0419 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.001783035 | +| time-step | 479 | +| y_out | 0.03 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0018367197 | +| time-step | 480 | +| y_out | -0.128 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019194249 | +| time-step | 481 | +| y_out | 0.0201 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001959048 | +| time-step | 482 | +| y_out | 0.102 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0020989382 | +| time-step | 483 | +| y_out | 0.0736 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021152776 | +| time-step | 484 | +| y_out | 0.00401 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021999185 | +| time-step | 485 | +| y_out | -0.00499 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023299714 | +| time-step | 486 | +| y_out | 0.0252 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022794872 | +| time-step | 487 | +| y_out | -0.141 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022714082 | +| time-step | 488 | +| y_out | -0.0496 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022822493 | +| time-step | 489 | +| y_out | -0.0518 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022240055 | +| time-step | 490 | +| y_out | -0.0068 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002299924 | +| time-step | 491 | +| y_out | 0.105 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002306609 | +| time-step | 492 | +| y_out | 0.07 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0021361548 | +| time-step | 493 | +| y_out | -0.0202 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00217412 | +| time-step | 494 | +| y_out | 0.0222 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021827281 | +| time-step | 495 | +| y_out | 0.015 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021861326 | +| time-step | 496 | +| y_out | 0.0306 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002204362 | +| time-step | 497 | +| y_out | 0.00631 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0023612643 | +| time-step | 498 | +| y_out | 0.146 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024137034 | +| time-step | 499 | +| y_out | -0.0306 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023943342 | +| time-step | 500 | +| y_out | 0.0263 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint 500 +------------------------------------------------------------- +| perf/mse | 0.0023614059 | +| time-step | 501 | +| y_out | -0.0356 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023051347 | +| time-step | 502 | +| y_out | 0.0396 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023730814 | +| time-step | 503 | +| y_out | -0.0024 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002348591 | +| time-step | 504 | +| y_out | -0.122 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0022454252 | +| time-step | 505 | +| y_out | 0.0665 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002097074 | +| time-step | 506 | +| y_out | -0.0185 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0021289706 | +| time-step | 507 | +| y_out | 0.0328 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019829744 | +| time-step | 508 | +| y_out | 0.204 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018287562 | +| time-step | 509 | +| y_out | 0.0396 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00184292 | +| time-step | 510 | +| y_out | -0.0483 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017205365 | +| time-step | 511 | +| y_out | -0.0332 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017632047 | +| time-step | 512 | +| y_out | 0.0748 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016770726 | +| time-step | 513 | +| y_out | 0.0971 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016107045 | +| time-step | 514 | +| y_out | -0.0105 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001635182 | +| time-step | 515 | +| y_out | -0.101 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0016805979 | +| time-step | 516 | +| y_out | 0.171 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017523505 | +| time-step | 517 | +| y_out | -0.000842 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017406091 | +| time-step | 518 | +| y_out | -0.0403 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017679014 | +| time-step | 519 | +| y_out | 0.0346 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001789323 | +| time-step | 520 | +| y_out | 0.0515 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0018660773 | +| time-step | 521 | +| y_out | 0.0465 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018465763 | +| time-step | 522 | +| y_out | -0.064 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019030398 | +| time-step | 523 | +| y_out | 0.045 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020594574 | +| time-step | 524 | +| y_out | 0.0623 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002119792 | +| time-step | 525 | +| y_out | -0.0969 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0020660518 | +| time-step | 526 | +| y_out | -0.0286 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019526805 | +| time-step | 527 | +| y_out | -0.0488 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019263306 | +| time-step | 528 | +| y_out | -0.00397 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019714755 | +| time-step | 529 | +| y_out | 0.082 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020034318 | +| time-step | 530 | +| y_out | -0.0373 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019015165 | +| time-step | 531 | +| y_out | -0.0323 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001945358 | +| time-step | 532 | +| y_out | 0.0312 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0018668473 | +| time-step | 533 | +| y_out | 0.0357 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017047767 | +| time-step | 534 | +| y_out | -0.0205 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016586457 | +| time-step | 535 | +| y_out | -0.0547 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016894216 | +| time-step | 536 | +| y_out | -0.0715 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017010166 | +| time-step | 537 | +| y_out | -0.0494 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017229551 | +| time-step | 538 | +| y_out | 0.0526 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001670079 | +| time-step | 539 | +| y_out | 0.0324 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015760452 | +| time-step | 540 | +| y_out | -0.0905 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016725159 | +| time-step | 541 | +| y_out | 0.0194 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016767133 | +| time-step | 542 | +| y_out | 0.0269 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016951036 | +| time-step | 543 | +| y_out | -0.0771 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017222011 | +| time-step | 544 | +| y_out | 0.107 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017621996 | +| time-step | 545 | +| y_out | -0.0625 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017805615 | +| time-step | 546 | +| y_out | -0.0572 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017982196 | +| time-step | 547 | +| y_out | -0.123 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017882833 | +| time-step | 548 | +| y_out | 0.0563 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018448718 | +| time-step | 549 | +| y_out | -0.0932 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019666234 | +| time-step | 550 | +| y_out | -0.0518 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019076975 | +| time-step | 551 | +| y_out | 0.0212 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018715691 | +| time-step | 552 | +| y_out | 0.0205 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019554817 | +| time-step | 553 | +| y_out | 0.0395 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019985035 | +| time-step | 554 | +| y_out | -0.054 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020592315 | +| time-step | 555 | +| y_out | -0.0031 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020653878 | +| time-step | 556 | +| y_out | 0.145 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020838263 | +| time-step | 557 | +| y_out | 0.142 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002095191 | +| time-step | 558 | +| y_out | -0.062 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0020432367 | +| time-step | 559 | +| y_out | -0.0425 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020052257 | +| time-step | 560 | +| y_out | -0.13 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020018995 | +| time-step | 561 | +| y_out | -0.112 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001931811 | +| time-step | 562 | +| y_out | -0.137 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0019229626 | +| time-step | 563 | +| y_out | 0.119 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019406999 | +| time-step | 564 | +| y_out | -0.0642 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019049175 | +| time-step | 565 | +| y_out | 0.00662 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020095282 | +| time-step | 566 | +| y_out | 0.00461 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019363305 | +| time-step | 567 | +| y_out | -0.11 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018935282 | +| time-step | 568 | +| y_out | -0.0256 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019831448 | +| time-step | 569 | +| y_out | 0.0289 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019363079 | +| time-step | 570 | +| y_out | -0.0631 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019397025 | +| time-step | 571 | +| y_out | 0.0908 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019768483 | +| time-step | 572 | +| y_out | 0.0114 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018837163 | +| time-step | 573 | +| y_out | 0.0546 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018218185 | +| time-step | 574 | +| y_out | 0.0595 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017805112 | +| time-step | 575 | +| y_out | 0.0163 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016203601 | +| time-step | 576 | +| y_out | 0.102 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016064912 | +| time-step | 577 | +| y_out | -0.0839 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017189073 | +| time-step | 578 | +| y_out | 0.0495 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016244536 | +| time-step | 579 | +| y_out | 0.0425 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016255511 | +| time-step | 580 | +| y_out | 0.026 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015507056 | +| time-step | 581 | +| y_out | -0.0805 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015580666 | +| time-step | 582 | +| y_out | -0.0565 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016561073 | +| time-step | 583 | +| y_out | -0.0273 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016211516 | +| time-step | 584 | +| y_out | -0.0519 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015700705 | +| time-step | 585 | +| y_out | -0.101 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015420543 | +| time-step | 586 | +| y_out | 0.0181 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015701067 | +| time-step | 587 | +| y_out | -0.0695 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015230797 | +| time-step | 588 | +| y_out | 0.012 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015124955 | +| time-step | 589 | +| y_out | -0.071 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016209187 | +| time-step | 590 | +| y_out | 0.0149 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017051346 | +| time-step | 591 | +| y_out | -0.181 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018082935 | +| time-step | 592 | +| y_out | -0.0928 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017641919 | +| time-step | 593 | +| y_out | -0.129 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017935472 | +| time-step | 594 | +| y_out | 0.00735 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001810446 | +| time-step | 595 | +| y_out | -0.00512 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0018634761 | +| time-step | 596 | +| y_out | 0.101 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018715688 | +| time-step | 597 | +| y_out | 0.0813 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018106379 | +| time-step | 598 | +| y_out | 0.00686 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001833563 | +| time-step | 599 | +| y_out | 0.0333 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0017076008 | +| time-step | 600 | +| y_out | 0.0463 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint 600 +------------------------------------------------------------- +| perf/mse | 0.0016647311 | +| time-step | 601 | +| y_out | -0.0148 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015571703 | +| time-step | 602 | +| y_out | 0.0114 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015799468 | +| time-step | 603 | +| y_out | 0.188 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015889879 | +| time-step | 604 | +| y_out | -0.0543 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015591546 | +| time-step | 605 | +| y_out | -0.146 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014958208 | +| time-step | 606 | +| y_out | 0.057 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014240805 | +| time-step | 607 | +| y_out | 0.00771 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014367993 | +| time-step | 608 | +| y_out | 0.0338 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014126824 | +| time-step | 609 | +| y_out | 0.124 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014027186 | +| time-step | 610 | +| y_out | 0.00425 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013791907 | +| time-step | 611 | +| y_out | -0.00435 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013263708 | +| time-step | 612 | +| y_out | -0.0379 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012708445 | +| time-step | 613 | +| y_out | -0.0117 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012139344 | +| time-step | 614 | +| y_out | -0.145 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012319413 | +| time-step | 615 | +| y_out | 0.0966 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012522399 | +| time-step | 616 | +| y_out | -0.115 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012734758 | +| time-step | 617 | +| y_out | 0.0192 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012910946 | +| time-step | 618 | +| y_out | -0.0553 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012755672 | +| time-step | 619 | +| y_out | -0.000138 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012513229 | +| time-step | 620 | +| y_out | -0.0172 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013075816 | +| time-step | 621 | +| y_out | 0.105 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013105611 | +| time-step | 622 | +| y_out | 0.0755 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012796965 | +| time-step | 623 | +| y_out | -0.00479 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012754378 | +| time-step | 624 | +| y_out | -0.0251 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013478979 | +| time-step | 625 | +| y_out | 0.0528 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013711598 | +| time-step | 626 | +| y_out | 0.117 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013171906 | +| time-step | 627 | +| y_out | -0.00492 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013788433 | +| time-step | 628 | +| y_out | 0.0192 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001413046 | +| time-step | 629 | +| y_out | 0.119 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0014567596 | +| time-step | 630 | +| y_out | 0.0382 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015997548 | +| time-step | 631 | +| y_out | 0.0201 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015933358 | +| time-step | 632 | +| y_out | 0.00457 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016292523 | +| time-step | 633 | +| y_out | -0.0629 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017311517 | +| time-step | 634 | +| y_out | 0.0339 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016764387 | +| time-step | 635 | +| y_out | -0.0535 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001692792 | +| time-step | 636 | +| y_out | 0.0659 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0017229051 | +| time-step | 637 | +| y_out | -0.0543 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016412109 | +| time-step | 638 | +| y_out | 0.108 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017033726 | +| time-step | 639 | +| y_out | 0.106 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001740497 | +| time-step | 640 | +| y_out | 0.0786 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00173686 | +| time-step | 641 | +| y_out | 0.0417 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018697486 | +| time-step | 642 | +| y_out | 0.0818 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002011414 | +| time-step | 643 | +| y_out | 0.0151 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00203693 | +| time-step | 644 | +| y_out | 0.0654 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021282837 | +| time-step | 645 | +| y_out | -0.0887 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021506737 | +| time-step | 646 | +| y_out | 0.0241 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021839333 | +| time-step | 647 | +| y_out | -0.0595 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022453894 | +| time-step | 648 | +| y_out | -0.00917 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002301612 | +| time-step | 649 | +| y_out | -0.128 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002359852 | +| time-step | 650 | +| y_out | 0.00873 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0022147992 | +| time-step | 651 | +| y_out | 0.0442 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022218665 | +| time-step | 652 | +| y_out | 0.166 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021261545 | +| time-step | 653 | +| y_out | 0.089 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002227218 | +| time-step | 654 | +| y_out | 0.0595 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0021722629 | +| time-step | 655 | +| y_out | 0.058 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021354246 | +| time-step | 656 | +| y_out | -0.0557 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022716355 | +| time-step | 657 | +| y_out | 0.00279 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022492642 | +| time-step | 658 | +| y_out | 0.0415 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002243658 | +| time-step | 659 | +| y_out | 0.0549 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0021330744 | +| time-step | 660 | +| y_out | 0.0672 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021061434 | +| time-step | 661 | +| y_out | -0.0542 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002143382 | +| time-step | 662 | +| y_out | 0.00832 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002160568 | +| time-step | 663 | +| y_out | -0.0826 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0020056188 | +| time-step | 664 | +| y_out | 0.0141 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019286026 | +| time-step | 665 | +| y_out | -0.00226 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019068992 | +| time-step | 666 | +| y_out | 0.0217 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017698819 | +| time-step | 667 | +| y_out | -0.048 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018374551 | +| time-step | 668 | +| y_out | -0.0398 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001716411 | +| time-step | 669 | +| y_out | -0.16 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0017501016 | +| time-step | 670 | +| y_out | 0.0797 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001791881 | +| time-step | 671 | +| y_out | 0.0431 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0016325234 | +| time-step | 672 | +| y_out | -0.0591 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015515495 | +| time-step | 673 | +| y_out | 0.0235 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014953509 | +| time-step | 674 | +| y_out | -0.0982 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015398795 | +| time-step | 675 | +| y_out | 0.00852 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015718257 | +| time-step | 676 | +| y_out | 0.00262 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015397812 | +| time-step | 677 | +| y_out | -0.184 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013955629 | +| time-step | 678 | +| y_out | -0.00378 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014330016 | +| time-step | 679 | +| y_out | -0.0143 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014216142 | +| time-step | 680 | +| y_out | 0.0555 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013772298 | +| time-step | 681 | +| y_out | -0.022 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013943024 | +| time-step | 682 | +| y_out | -0.0938 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013373584 | +| time-step | 683 | +| y_out | -0.113 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013251683 | +| time-step | 684 | +| y_out | -0.115 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012640087 | +| time-step | 685 | +| y_out | 0.0606 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012504628 | +| time-step | 686 | +| y_out | 0.0115 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00128381 | +| time-step | 687 | +| y_out | -0.00328 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013063055 | +| time-step | 688 | +| y_out | -0.0623 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001284523 | +| time-step | 689 | +| y_out | -0.0677 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0012096773 | +| time-step | 690 | +| y_out | -0.0219 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012361064 | +| time-step | 691 | +| y_out | -0.0323 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012859232 | +| time-step | 692 | +| y_out | -0.0182 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001388235 | +| time-step | 693 | +| y_out | -0.0276 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0014269461 | +| time-step | 694 | +| y_out | 0.0863 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015398476 | +| time-step | 695 | +| y_out | 0.0747 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015594211 | +| time-step | 696 | +| y_out | -0.0563 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015636419 | +| time-step | 697 | +| y_out | 0.0763 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016136247 | +| time-step | 698 | +| y_out | -0.0364 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016037378 | +| time-step | 699 | +| y_out | 0.0728 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016883069 | +| time-step | 700 | +| y_out | 0.00783 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint 700 +------------------------------------------------------------ +| perf/mse | 0.001653303 | +| time-step | 701 | +| y_out | 0.0408 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015353167 | +| time-step | 702 | +| y_out | -0.00231 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014869093 | +| time-step | 703 | +| y_out | -0.0581 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015535683 | +| time-step | 704 | +| y_out | 0.0357 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014892067 | +| time-step | 705 | +| y_out | 0.076 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001443968 | +| time-step | 706 | +| y_out | -0.0381 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0014547679 | +| time-step | 707 | +| y_out | -0.0573 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013978692 | +| time-step | 708 | +| y_out | 0.00577 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014173442 | +| time-step | 709 | +| y_out | -0.052 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013679179 | +| time-step | 710 | +| y_out | -0.0547 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014311712 | +| time-step | 711 | +| y_out | -0.0186 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015632857 | +| time-step | 712 | +| y_out | -0.0165 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016357766 | +| time-step | 713 | +| y_out | 0.0343 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016154259 | +| time-step | 714 | +| y_out | -0.0315 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016406908 | +| time-step | 715 | +| y_out | -0.0977 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016538191 | +| time-step | 716 | +| y_out | -0.0247 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016900437 | +| time-step | 717 | +| y_out | -0.0674 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017150389 | +| time-step | 718 | +| y_out | 0.116 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017206362 | +| time-step | 719 | +| y_out | 0.0558 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017399801 | +| time-step | 720 | +| y_out | 0.105 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016872808 | +| time-step | 721 | +| y_out | 0.0255 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016493325 | +| time-step | 722 | +| y_out | -0.00897 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015894575 | +| time-step | 723 | +| y_out | 0.0214 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015220798 | +| time-step | 724 | +| y_out | 0.0423 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014660312 | +| time-step | 725 | +| y_out | -0.149 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014465445 | +| time-step | 726 | +| y_out | 0.0439 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013714675 | +| time-step | 727 | +| y_out | -0.0451 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013324551 | +| time-step | 728 | +| y_out | 0.104 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001296964 | +| time-step | 729 | +| y_out | 0.00922 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0012843091 | +| time-step | 730 | +| y_out | -0.0295 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012795057 | +| time-step | 731 | +| y_out | -0.115 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001335425 | +| time-step | 732 | +| y_out | 0.0276 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0012781796 | +| time-step | 733 | +| y_out | -0.13 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012871639 | +| time-step | 734 | +| y_out | 0.0411 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012652508 | +| time-step | 735 | +| y_out | -0.0252 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013218264 | +| time-step | 736 | +| y_out | -0.00834 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013400693 | +| time-step | 737 | +| y_out | -0.0464 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001346376 | +| time-step | 738 | +| y_out | -0.127 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0013420184 | +| time-step | 739 | +| y_out | 0.0104 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013943227 | +| time-step | 740 | +| y_out | -0.00848 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013821267 | +| time-step | 741 | +| y_out | -0.0756 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013179875 | +| time-step | 742 | +| y_out | 0.133 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001340097 | +| time-step | 743 | +| y_out | 0.033 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0013320694 | +| time-step | 744 | +| y_out | -0.00807 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014017966 | +| time-step | 745 | +| y_out | 0.00146 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013962178 | +| time-step | 746 | +| y_out | -0.0672 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001362267 | +| time-step | 747 | +| y_out | -0.0263 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0013533711 | +| time-step | 748 | +| y_out | 0.0287 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001478119 | +| time-step | 749 | +| y_out | 0.0189 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.001470939 | +| time-step | 750 | +| y_out | 0.0116 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015264101 | +| time-step | 751 | +| y_out | 0.0431 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015162361 | +| time-step | 752 | +| y_out | 0.0233 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016780451 | +| time-step | 753 | +| y_out | 0.116 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017870836 | +| time-step | 754 | +| y_out | -0.0535 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018707716 | +| time-step | 755 | +| y_out | -0.0674 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019141177 | +| time-step | 756 | +| y_out | 0.00128 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020022332 | +| time-step | 757 | +| y_out | -0.0887 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002312275 | +| time-step | 758 | +| y_out | -0.0378 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0021617326 | +| time-step | 759 | +| y_out | 0.0268 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023383517 | +| time-step | 760 | +| y_out | 0.0531 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024080423 | +| time-step | 761 | +| y_out | 0.025 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028254958 | +| time-step | 762 | +| y_out | -0.0871 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028636672 | +| time-step | 763 | +| y_out | 0.113 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028971792 | +| time-step | 764 | +| y_out | -0.0569 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030611062 | +| time-step | 765 | +| y_out | -0.0291 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003123356 | +| time-step | 766 | +| y_out | 0.202 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0033468038 | +| time-step | 767 | +| y_out | -0.0833 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034751922 | +| time-step | 768 | +| y_out | 0.0789 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035624946 | +| time-step | 769 | +| y_out | 0.0913 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035701834 | +| time-step | 770 | +| y_out | 0.0972 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036231496 | +| time-step | 771 | +| y_out | 0.0238 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038013689 | +| time-step | 772 | +| y_out | -0.0156 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038031165 | +| time-step | 773 | +| y_out | -0.12 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037162348 | +| time-step | 774 | +| y_out | 0.172 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038241562 | +| time-step | 775 | +| y_out | 0.0191 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039064605 | +| time-step | 776 | +| y_out | -0.0651 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0040820898 | +| time-step | 777 | +| y_out | -0.018 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003923612 | +| time-step | 778 | +| y_out | -0.0428 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040517757 | +| time-step | 779 | +| y_out | -0.0855 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0040940316 | +| time-step | 780 | +| y_out | 0.118 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041222507 | +| time-step | 781 | +| y_out | 0.0618 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037221876 | +| time-step | 782 | +| y_out | 0.0677 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038733769 | +| time-step | 783 | +| y_out | 0.0403 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003906427 | +| time-step | 784 | +| y_out | 0.0377 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0037811347 | +| time-step | 785 | +| y_out | 0.00851 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038334012 | +| time-step | 786 | +| y_out | -0.0366 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036224523 | +| time-step | 787 | +| y_out | 0.0132 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035261575 | +| time-step | 788 | +| y_out | -0.0215 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003479308 | +| time-step | 789 | +| y_out | -0.0225 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0033965383 | +| time-step | 790 | +| y_out | 0.0245 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034302995 | +| time-step | 791 | +| y_out | -0.00672 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034377933 | +| time-step | 792 | +| y_out | 0.103 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033153563 | +| time-step | 793 | +| y_out | 0.0284 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033206039 | +| time-step | 794 | +| y_out | 0.0713 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031762372 | +| time-step | 795 | +| y_out | -0.0839 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030405049 | +| time-step | 796 | +| y_out | -0.0533 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029862316 | +| time-step | 797 | +| y_out | -0.0151 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031312604 | +| time-step | 798 | +| y_out | -0.0526 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030505485 | +| time-step | 799 | +| y_out | 0.0587 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031082488 | +| time-step | 800 | +| y_out | -0.00107 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint 800 +------------------------------------------------------------ +| perf/mse | 0.003044238 | +| time-step | 801 | +| y_out | 0.0254 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0029136336 | +| time-step | 802 | +| y_out | 0.0374 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030064166 | +| time-step | 803 | +| y_out | 0.0433 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029224097 | +| time-step | 804 | +| y_out | -0.00395 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030854908 | +| time-step | 805 | +| y_out | -0.0758 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003105039 | +| time-step | 806 | +| y_out | 0.0239 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0030560405 | +| time-step | 807 | +| y_out | 0.00547 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030277981 | +| time-step | 808 | +| y_out | -0.0651 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030091149 | +| time-step | 809 | +| y_out | -0.084 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031404537 | +| time-step | 810 | +| y_out | 0.0279 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029760401 | +| time-step | 811 | +| y_out | -0.0107 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00310524 | +| time-step | 812 | +| y_out | 0.0737 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003099827 | +| time-step | 813 | +| y_out | -0.00561 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0031548433 | +| time-step | 814 | +| y_out | -0.0921 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002981928 | +| time-step | 815 | +| y_out | 0.0969 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0028553135 | +| time-step | 816 | +| y_out | -0.0909 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027719394 | +| time-step | 817 | +| y_out | 0.0153 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025610626 | +| time-step | 818 | +| y_out | 0.0365 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025459956 | +| time-step | 819 | +| y_out | 0.0488 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022457887 | +| time-step | 820 | +| y_out | 0.0183 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022471668 | +| time-step | 821 | +| y_out | 0.0372 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020746323 | +| time-step | 822 | +| y_out | -0.0429 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017842175 | +| time-step | 823 | +| y_out | 0.0169 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001794372 | +| time-step | 824 | +| y_out | -0.0703 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0017394575 | +| time-step | 825 | +| y_out | 0.116 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016785773 | +| time-step | 826 | +| y_out | 0.0178 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015636727 | +| time-step | 827 | +| y_out | 0.0597 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014647844 | +| time-step | 828 | +| y_out | -0.00429 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014292076 | +| time-step | 829 | +| y_out | -0.143 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013410391 | +| time-step | 830 | +| y_out | 0.0686 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001295628 | +| time-step | 831 | +| y_out | 0.00827 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0012272757 | +| time-step | 832 | +| y_out | -0.0993 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012152568 | +| time-step | 833 | +| y_out | -0.133 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011068927 | +| time-step | 834 | +| y_out | 0.00747 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009882771 | +| time-step | 835 | +| y_out | 0.00998 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009640165 | +| time-step | 836 | +| y_out | -0.0174 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00096680067 | +| time-step | 837 | +| y_out | 0.0209 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009593062 | +| time-step | 838 | +| y_out | 0.00321 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009659175 | +| time-step | 839 | +| y_out | -0.00284 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009616882 | +| time-step | 840 | +| y_out | -0.015 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009863728 | +| time-step | 841 | +| y_out | 0.0355 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00095545565 | +| time-step | 842 | +| y_out | -0.0418 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00091711024 | +| time-step | 843 | +| y_out | -0.119 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009044634 | +| time-step | 844 | +| y_out | 0.0655 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00096740795 | +| time-step | 845 | +| y_out | 0.038 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010315398 | +| time-step | 846 | +| y_out | -0.0234 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010463413 | +| time-step | 847 | +| y_out | 0.0028 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010367715 | +| time-step | 848 | +| y_out | -0.0646 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009907639 | +| time-step | 849 | +| y_out | -0.00727 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010160106 | +| time-step | 850 | +| y_out | -0.0774 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009677463 | +| time-step | 851 | +| y_out | 0.0286 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000988133 | +| time-step | 852 | +| y_out | -0.0243 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0009715197 | +| time-step | 853 | +| y_out | -0.0497 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009843019 | +| time-step | 854 | +| y_out | -0.0267 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00095529656 | +| time-step | 855 | +| y_out | 0.0315 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008970134 | +| time-step | 856 | +| y_out | 0.135 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00095216464 | +| time-step | 857 | +| y_out | -0.00609 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00095925445 | +| time-step | 858 | +| y_out | -0.0273 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010169024 | +| time-step | 859 | +| y_out | 0.0359 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009613419 | +| time-step | 860 | +| y_out | -0.033 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010311457 | +| time-step | 861 | +| y_out | 0.0603 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010693133 | +| time-step | 862 | +| y_out | -0.125 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011163289 | +| time-step | 863 | +| y_out | -0.0882 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011282724 | +| time-step | 864 | +| y_out | 0.16 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011724043 | +| time-step | 865 | +| y_out | -0.0117 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012423054 | +| time-step | 866 | +| y_out | 0.0848 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011758931 | +| time-step | 867 | +| y_out | 0.0226 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011413585 | +| time-step | 868 | +| y_out | -0.0101 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011351632 | +| time-step | 869 | +| y_out | 0.012 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011961028 | +| time-step | 870 | +| y_out | -0.0163 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011909097 | +| time-step | 871 | +| y_out | -0.0371 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011376857 | +| time-step | 872 | +| y_out | -0.0785 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011203687 | +| time-step | 873 | +| y_out | 0.0557 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001135746 | +| time-step | 874 | +| y_out | -0.107 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0010842151 | +| time-step | 875 | +| y_out | 0.00717 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011084243 | +| time-step | 876 | +| y_out | -0.0247 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011157264 | +| time-step | 877 | +| y_out | -0.0158 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001135641 | +| time-step | 878 | +| y_out | 0.0326 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0011050447 | +| time-step | 879 | +| y_out | -0.0235 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010342798 | +| time-step | 880 | +| y_out | 0.0525 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010770974 | +| time-step | 881 | +| y_out | 0.00176 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010736532 | +| time-step | 882 | +| y_out | -0.0586 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001052056 | +| time-step | 883 | +| y_out | 0.0264 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0009979216 | +| time-step | 884 | +| y_out | -0.0816 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009599463 | +| time-step | 885 | +| y_out | -0.0555 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00092344393 | +| time-step | 886 | +| y_out | -0.024 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009016281 | +| time-step | 887 | +| y_out | -0.107 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009106365 | +| time-step | 888 | +| y_out | -0.0391 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00091701216 | +| time-step | 889 | +| y_out | -0.0675 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00095373485 | +| time-step | 890 | +| y_out | -0.0587 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00091533596 | +| time-step | 891 | +| y_out | 0.0527 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00094293914 | +| time-step | 892 | +| y_out | -0.095 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009997895 | +| time-step | 893 | +| y_out | -0.00158 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009882915 | +| time-step | 894 | +| y_out | 0.203 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010694165 | +| time-step | 895 | +| y_out | -0.0175 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010512797 | +| time-step | 896 | +| y_out | 0.0559 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010777601 | +| time-step | 897 | +| y_out | -0.0434 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010582496 | +| time-step | 898 | +| y_out | -0.0254 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010238136 | +| time-step | 899 | +| y_out | -0.0249 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010296003 | +| time-step | 900 | +| y_out | -0.0109 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/checkpoint 900 +------------------------------------------------------------- +| perf/mse | 0.0010155601 | +| time-step | 901 | +| y_out | -0.00159 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009807027 | +| time-step | 902 | +| y_out | -0.000358 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00095560926 | +| time-step | 903 | +| y_out | 0.000188 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010090296 | +| time-step | 904 | +| y_out | -0.0659 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009772879 | +| time-step | 905 | +| y_out | -0.0181 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009443198 | +| time-step | 906 | +| y_out | 0.228 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009037809 | +| time-step | 907 | +| y_out | -0.00899 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009213003 | +| time-step | 908 | +| y_out | 0.0414 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00093527185 | +| time-step | 909 | +| y_out | -0.0246 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00094244396 | +| time-step | 910 | +| y_out | -0.0647 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009039774 | +| time-step | 911 | +| y_out | 0.128 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009187603 | +| time-step | 912 | +| y_out | -0.0422 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00087986497 | +| time-step | 913 | +| y_out | -0.04 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008640201 | +| time-step | 914 | +| y_out | 0.0788 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00087483844 | +| time-step | 915 | +| y_out | -0.0404 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00088016654 | +| time-step | 916 | +| y_out | -0.0854 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00090567954 | +| time-step | 917 | +| y_out | -0.000705 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00090120564 | +| time-step | 918 | +| y_out | 0.115 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009400115 | +| time-step | 919 | +| y_out | -0.0213 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00093044824 | +| time-step | 920 | +| y_out | -0.0672 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009363359 | +| time-step | 921 | +| y_out | 0.0521 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00094092125 | +| time-step | 922 | +| y_out | -0.123 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009548993 | +| time-step | 923 | +| y_out | -0.0498 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009190457 | +| time-step | 924 | +| y_out | 0.0965 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00087832485 | +| time-step | 925 | +| y_out | -0.0336 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00087282306 | +| time-step | 926 | +| y_out | 0.0406 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00082784134 | +| time-step | 927 | +| y_out | 0.174 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00079670147 | +| time-step | 928 | +| y_out | -0.000526 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007303604 | +| time-step | 929 | +| y_out | 0.0578 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00068764924 | +| time-step | 930 | +| y_out | 0.0323 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000666016 | +| time-step | 931 | +| y_out | -0.0283 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0006311025 | +| time-step | 932 | +| y_out | 0.0276 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00059834 | +| time-step | 933 | +| y_out | 0.106 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0005966687 | +| time-step | 934 | +| y_out | 0.0326 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0005984531 | +| time-step | 935 | +| y_out | 0.06 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00057811936 | +| time-step | 936 | +| y_out | -0.0264 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0006007211 | +| time-step | 937 | +| y_out | 0.0973 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00060122716 | +| time-step | 938 | +| y_out | -0.0492 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0006171138 | +| time-step | 939 | +| y_out | 0.0897 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0006120488 | +| time-step | 940 | +| y_out | -0.0187 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00062549027 | +| time-step | 941 | +| y_out | 0.0262 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0006342864 | +| time-step | 942 | +| y_out | 0.0471 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0006736606 | +| time-step | 943 | +| y_out | 0.123 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00069389667 | +| time-step | 944 | +| y_out | -0.0429 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00071260385 | +| time-step | 945 | +| y_out | 0.00846 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0006981415 | +| time-step | 946 | +| y_out | 0.0161 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000719516 | +| time-step | 947 | +| y_out | 0.00114 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0007945042 | +| time-step | 948 | +| y_out | -0.0481 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007949167 | +| time-step | 949 | +| y_out | -0.1 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00083176774 | +| time-step | 950 | +| y_out | -0.00929 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008178168 | +| time-step | 951 | +| y_out | 0.0253 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00086033036 | +| time-step | 952 | +| y_out | -0.0442 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00089215627 | +| time-step | 953 | +| y_out | -0.0085 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00090236793 | +| time-step | 954 | +| y_out | 0.00935 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008566807 | +| time-step | 955 | +| y_out | -0.0112 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000869186 | +| time-step | 956 | +| y_out | -0.0411 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.000840875 | +| time-step | 957 | +| y_out | -0.0326 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0007951775 | +| time-step | 958 | +| y_out | -0.0775 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00078860356 | +| time-step | 959 | +| y_out | -0.011 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00076531066 | +| time-step | 960 | +| y_out | -0.0529 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007517678 | +| time-step | 961 | +| y_out | 0.00401 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007130546 | +| time-step | 962 | +| y_out | 0.055 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000646938 | +| time-step | 963 | +| y_out | 0.0451 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0006376976 | +| time-step | 964 | +| y_out | 0.00519 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0006450809 | +| time-step | 965 | +| y_out | -0.00816 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00061867124 | +| time-step | 966 | +| y_out | -0.116 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0006052899 | +| time-step | 967 | +| y_out | -0.0168 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0005576364 | +| time-step | 968 | +| y_out | 0.0532 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0005497619 | +| time-step | 969 | +| y_out | 0.0687 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0005215871 | +| time-step | 970 | +| y_out | 0.0412 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0005198188 | +| time-step | 971 | +| y_out | 0.0852 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00048232466 | +| time-step | 972 | +| y_out | 0.017 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00047794264 | +| time-step | 973 | +| y_out | 0.0476 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00045661285 | +| time-step | 974 | +| y_out | -0.0411 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00045010308 | +| time-step | 975 | +| y_out | -0.0436 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0004375408 | +| time-step | 976 | +| y_out | -0.049 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0004536722 | +| time-step | 977 | +| y_out | -0.0563 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00045433608 | +| time-step | 978 | +| y_out | 0.037 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000455904 | +| time-step | 979 | +| y_out | -0.082 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.00046207328 | +| time-step | 980 | +| y_out | 0.0598 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00046719945 | +| time-step | 981 | +| y_out | 0.0674 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00047198884 | +| time-step | 982 | +| y_out | -0.0538 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0005355911 | +| time-step | 983 | +| y_out | 0.0397 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00055250636 | +| time-step | 984 | +| y_out | -0.0275 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0006090977 | +| time-step | 985 | +| y_out | -0.138 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00064342667 | +| time-step | 986 | +| y_out | 0.00199 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0006457332 | +| time-step | 987 | +| y_out | 0.0691 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007277812 | +| time-step | 988 | +| y_out | -0.0234 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007086428 | +| time-step | 989 | +| y_out | -0.0552 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007224941 | +| time-step | 990 | +| y_out | -0.0531 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00074280734 | +| time-step | 991 | +| y_out | -0.0254 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000818975 | +| time-step | 992 | +| y_out | 0.0823 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0007800755 | +| time-step | 993 | +| y_out | -0.0693 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007970805 | +| time-step | 994 | +| y_out | -0.134 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00074744096 | +| time-step | 995 | +| y_out | 0.0529 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007762117 | +| time-step | 996 | +| y_out | -0.0908 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00079058885 | +| time-step | 997 | +| y_out | 0.016 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008190308 | +| time-step | 998 | +| y_out | 0.111 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008596025 | +| time-step | 999 | +| y_out | 0.0834 | +------------------------------------------------------------- diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/progress-[||perf--mse||, ||timestep||].csv b/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/progress-[||perf--mse||, ||timestep||].csv new file mode 100644 index 0000000..913e231 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/progress-[||perf--mse||, ||timestep||].csv @@ -0,0 +1,2001 @@ +perf/mse,time-step +,0.0 +, +,1.0 +, +,2.0 +, +,3.0 +, +,4.0 +, +,5.0 +, +,6.0 +, +,7.0 +, +,8.0 +, +0.22814277,9.0 +, +0.19190815,10.0 +, +0.14656934,11.0 +, +0.13418613,12.0 +, +0.12194592,13.0 +, +0.11168168,14.0 +, +0.09495102,15.0 +, +0.08053599,16.0 +, +0.07548128,17.0 +, +0.06800024,18.0 +, +0.06443814,19.0 +, +0.061469335,20.0 +, +0.05173979,21.0 +, +0.049125113,22.0 +, +0.047618106,23.0 +, +0.04363936,24.0 +, +0.040248767,25.0 +, +0.038495947,26.0 +, +0.036612876,27.0 +, +0.034937687,28.0 +, +0.03362351,29.0 +, +0.032952435,30.0 +, +0.030083561,31.0 +, +0.028178344,32.0 +, +0.027806658,33.0 +, +0.026402492,34.0 +, +0.024513748,35.0 +, +0.02449134,36.0 +, +0.02332837,37.0 +, +0.020952143,38.0 +, +0.020119164,39.0 +, +0.019523617,40.0 +, +0.01971373,41.0 +, +0.01886544,42.0 +, +0.01780585,43.0 +, +0.017950684,44.0 +, +0.017043848,45.0 +, +0.01589923,46.0 +, +0.015796915,47.0 +, +0.016570983,48.0 +, +0.01654853,49.0 +, +0.0161605,50.0 +, +0.015983542,51.0 +, +0.015992003,52.0 +, +0.015842691,53.0 +, +0.0153492885,54.0 +, +0.015530897,55.0 +, +0.015361421,56.0 +, +0.014956504,57.0 +, +0.014301039,58.0 +, +0.013976658,59.0 +, +0.014097333,60.0 +, +0.013206692,61.0 +, +0.013091194,62.0 +, +0.012828231,63.0 +, +0.012624028,64.0 +, +0.01218119,65.0 +, +0.011941055,66.0 +, +0.011805937,67.0 +, +0.011551429,68.0 +, +0.011596314,69.0 +, +0.011252415,70.0 +, +0.011377673,71.0 +, +0.0111884335,72.0 +, +0.01113789,73.0 +, +0.0109994095,74.0 +, +0.010855131,75.0 +, +0.011410418,76.0 +, +0.011704127,77.0 +, +0.011506419,78.0 +, +0.011268602,79.0 +, +0.011008004,80.0 +, +0.011449149,81.0 +, +0.011286937,82.0 +, +0.0108551225,83.0 +, +0.0107244495,84.0 +, +0.010829263,85.0 +, +0.010135734,86.0 +, +0.009615773,87.0 +, +0.009502051,88.0 +, +0.0093239285,89.0 +, +0.009704497,90.0 +, +0.008905305,91.0 +, +0.0088629145,92.0 +, +0.008705814,93.0 +, +0.008940022,94.0 +, +0.008700555,95.0 +, +0.008806358,96.0 +, +0.008766229,97.0 +, +0.008845379,98.0 +, +0.008962333,99.0 +, +0.008823075,100.0 +, +0.009079252,101.0 +, +0.009047341,102.0 +, +0.0092800325,103.0 +, +0.009331655,104.0 +, +0.0093044955,105.0 +, +0.009508592,106.0 +, +0.009845148,107.0 +, +0.00994922,108.0 +, +0.009717304,109.0 +, +0.0097834915,110.0 +, +0.00985957,111.0 +, +0.009869351,112.0 +, +0.010112503,113.0 +, +0.009826284,114.0 +, +0.009966163,115.0 +, +0.00990772,116.0 +, +0.00951389,117.0 +, +0.00927384,118.0 +, +0.009128759,119.0 +, +0.00913714,120.0 +, +0.008777548,121.0 +, +0.008357844,122.0 +, +0.007956855,123.0 +, +0.007997531,124.0 +, +0.008159223,125.0 +, +0.008003077,126.0 +, +0.008236217,127.0 +, +0.0082245255,128.0 +, +0.008678203,129.0 +, +0.0085857455,130.0 +, +0.008827664,131.0 +, +0.009627724,132.0 +, +0.009989527,133.0 +, +0.010198536,134.0 +, +0.010393284,135.0 +, +0.010434011,136.0 +, +0.010183383,137.0 +, +0.010108882,138.0 +, +0.009743065,139.0 +, +0.009792206,140.0 +, +0.009693286,141.0 +, +0.009483784,142.0 +, +0.0090315435,143.0 +, +0.008447139,144.0 +, +0.007830776,145.0 +, +0.00749177,146.0 +, +0.007686507,147.0 +, +0.0077596516,148.0 +, +0.007711702,149.0 +, +0.0074007795,150.0 +, +0.0073721996,151.0 +, +0.0074723167,152.0 +, +0.007752657,153.0 +, +0.008310327,154.0 +, +0.008291332,155.0 +, +0.008496254,156.0 +, +0.008483608,157.0 +, +0.008220109,158.0 +, +0.008307133,159.0 +, +0.008243485,160.0 +, +0.008122629,161.0 +, +0.007903912,162.0 +, +0.007865642,163.0 +, +0.007622161,164.0 +, +0.0079662,165.0 +, +0.007813568,166.0 +, +0.0076940046,167.0 +, +0.0077493945,168.0 +, +0.0076100677,169.0 +, +0.0077119707,170.0 +, +0.008007618,171.0 +, +0.007861136,172.0 +, +0.007533052,173.0 +, +0.0074703456,174.0 +, +0.007024908,175.0 +, +0.006973028,176.0 +, +0.006808958,177.0 +, +0.0067936345,178.0 +, +0.0065353974,179.0 +, +0.0064742193,180.0 +, +0.006289745,181.0 +, +0.0062902225,182.0 +, +0.0063520125,183.0 +, +0.0062725493,184.0 +, +0.0065097734,185.0 +, +0.006561597,186.0 +, +0.00655551,187.0 +, +0.006472918,188.0 +, +0.0065273703,189.0 +, +0.0063348166,190.0 +, +0.006337526,191.0 +, +0.0062272483,192.0 +, +0.0062594516,193.0 +, +0.006278423,194.0 +, +0.0061354144,195.0 +, +0.0060305703,196.0 +, +0.0061104754,197.0 +, +0.0062858225,198.0 +, +0.006298403,199.0 +, +0.006660664,200.0 +, +0.006327367,201.0 +, +0.006286925,202.0 +, +0.0063311225,203.0 +, +0.006096818,204.0 +, +0.0059129233,205.0 +, +0.0059521077,206.0 +, +0.0057609743,207.0 +, +0.0056522526,208.0 +, +0.0057538003,209.0 +, +0.0053303726,210.0 +, +0.00543254,211.0 +, +0.0054755462,212.0 +, +0.005163024,213.0 +, +0.00527807,214.0 +, +0.0054206722,215.0 +, +0.005390556,216.0 +, +0.005303591,217.0 +, +0.005322987,218.0 +, +0.0051577697,219.0 +, +0.005256223,220.0 +, +0.0054133954,221.0 +, +0.005216778,222.0 +, +0.005268435,223.0 +, +0.005479181,224.0 +, +0.005524743,225.0 +, +0.0055872994,226.0 +, +0.005836328,227.0 +, +0.0057471474,228.0 +, +0.0058778888,229.0 +, +0.005986926,230.0 +, +0.00576377,231.0 +, +0.005870902,232.0 +, +0.0058360295,233.0 +, +0.0054785404,234.0 +, +0.005676602,235.0 +, +0.005449542,236.0 +, +0.0052621923,237.0 +, +0.0053039417,238.0 +, +0.005104669,239.0 +, +0.004935091,240.0 +, +0.0049037556,241.0 +, +0.00503283,242.0 +, +0.005100853,243.0 +, +0.0054141255,244.0 +, +0.0049223904,245.0 +, +0.0050099087,246.0 +, +0.0051783705,247.0 +, +0.0051969956,248.0 +, +0.0052441894,249.0 +, +0.0053930283,250.0 +, +0.0053435406,251.0 +, +0.00520441,252.0 +, +0.0054052984,253.0 +, +0.005094585,254.0 +, +0.005109689,255.0 +, +0.0051714643,256.0 +, +0.004958625,257.0 +, +0.005060304,258.0 +, +0.005055004,259.0 +, +0.005030291,260.0 +, +0.005053456,261.0 +, +0.005302157,262.0 +, +0.0049746884,263.0 +, +0.005001827,264.0 +, +0.005208264,265.0 +, +0.0052080993,266.0 +, +0.0051157377,267.0 +, +0.0050438377,268.0 +, +0.005080645,269.0 +, +0.0048659346,270.0 +, +0.004884166,271.0 +, +0.004600591,272.0 +, +0.004561812,273.0 +, +0.0046241884,274.0 +, +0.004417187,275.0 +, +0.0042505665,276.0 +, +0.0044181906,277.0 +, +0.0042009973,278.0 +, +0.00408451,279.0 +, +0.0041899416,280.0 +, +0.004101356,281.0 +, +0.0040584723,282.0 +, +0.003995669,283.0 +, +0.0038804102,284.0 +, +0.0039048274,285.0 +, +0.0038150835,286.0 +, +0.0036521622,287.0 +, +0.0036560171,288.0 +, +0.0036707025,289.0 +, +0.003663823,290.0 +, +0.0036018915,291.0 +, +0.0035577565,292.0 +, +0.0036325217,293.0 +, +0.0035084677,294.0 +, +0.0034077198,295.0 +, +0.0035068407,296.0 +, +0.003616973,297.0 +, +0.0036918302,298.0 +, +0.0036206767,299.0 +, +0.0035456014,300.0 +, +0.0036069364,301.0 +, +0.0037248996,302.0 +, +0.0036344938,303.0 +, +0.00368546,304.0 +, +0.0038071903,305.0 +, +0.00399639,306.0 +, +0.0039564827,307.0 +, +0.004216424,308.0 +, +0.004179932,309.0 +, +0.0042393752,310.0 +, +0.004197497,311.0 +, +0.0040477975,312.0 +, +0.0041513015,313.0 +, +0.0041851373,314.0 +, +0.0043020644,315.0 +, +0.004193698,316.0 +, +0.0041403947,317.0 +, +0.0039382842,318.0 +, +0.0039878357,319.0 +, +0.003963006,320.0 +, +0.0040808967,321.0 +, +0.004089148,322.0 +, +0.004174361,323.0 +, +0.0044125123,324.0 +, +0.0043088314,325.0 +, +0.00413171,326.0 +, +0.004287612,327.0 +, +0.0043292423,328.0 +, +0.0043574073,329.0 +, +0.0044156606,330.0 +, +0.004237474,331.0 +, +0.004242272,332.0 +, +0.004266515,333.0 +, +0.00423325,334.0 +, +0.0041499655,335.0 +, +0.00454837,336.0 +, +0.004348189,337.0 +, +0.0041687335,338.0 +, +0.0044572987,339.0 +, +0.0042990986,340.0 +, +0.0043040626,341.0 +, +0.004310579,342.0 +, +0.004043701,343.0 +, +0.0038689692,344.0 +, +0.0039927894,345.0 +, +0.0036412464,346.0 +, +0.0036830255,347.0 +, +0.003789559,348.0 +, +0.0034503099,349.0 +, +0.0034847078,350.0 +, +0.0036763232,351.0 +, +0.0036198385,352.0 +, +0.0037022172,353.0 +, +0.003784782,354.0 +, +0.0036062598,355.0 +, +0.003554086,356.0 +, +0.0034277563,357.0 +, +0.0032615073,358.0 +, +0.0031486116,359.0 +, +0.0031012534,360.0 +, +0.0029184758,361.0 +, +0.002877044,362.0 +, +0.0028360656,363.0 +, +0.002589463,364.0 +, +0.0025715188,365.0 +, +0.0026089766,366.0 +, +0.00266103,367.0 +, +0.0027067424,368.0 +, +0.0027684818,369.0 +, +0.0026964836,370.0 +, +0.0027253355,371.0 +, +0.0026865224,372.0 +, +0.0027575567,373.0 +, +0.0027883498,374.0 +, +0.0028122657,375.0 +, +0.002724332,376.0 +, +0.0026641716,377.0 +, +0.0027131606,378.0 +, +0.0027769406,379.0 +, +0.0028316758,380.0 +, +0.0028969352,381.0 +, +0.0029437765,382.0 +, +0.002945118,383.0 +, +0.003000104,384.0 +, +0.0029598312,385.0 +, +0.0029995074,386.0 +, +0.003022773,387.0 +, +0.00293301,388.0 +, +0.00288595,389.0 +, +0.0028845086,390.0 +, +0.0028931538,391.0 +, +0.0029253946,392.0 +, +0.0027798438,393.0 +, +0.0027377517,394.0 +, +0.0027091778,395.0 +, +0.0027136323,396.0 +, +0.0026537026,397.0 +, +0.0026035416,398.0 +, +0.0027148766,399.0 +, +0.0026764562,400.0 +, +0.0025633783,401.0 +, +0.0024607638,402.0 +, +0.0026140804,403.0 +, +0.0028095958,404.0 +, +0.0028621678,405.0 +, +0.0028227596,406.0 +, +0.002918527,407.0 +, +0.002974172,408.0 +, +0.0028609713,409.0 +, +0.0029443295,410.0 +, +0.0029121835,411.0 +, +0.0029660575,412.0 +, +0.002851428,413.0 +, +0.0026635982,414.0 +, +0.0025814697,415.0 +, +0.0025655008,416.0 +, +0.0025301003,417.0 +, +0.0025324966,418.0 +, +0.0024488522,419.0 +, +0.002294812,420.0 +, +0.0021909764,421.0 +, +0.002174045,422.0 +, +0.0021627548,423.0 +, +0.0022104885,424.0 +, +0.002318445,425.0 +, +0.0024139923,426.0 +, +0.0023800575,427.0 +, +0.0023304624,428.0 +, +0.002378085,429.0 +, +0.0025470653,430.0 +, +0.0026202898,431.0 +, +0.002626631,432.0 +, +0.002606416,433.0 +, +0.002634737,434.0 +, +0.0025430552,435.0 +, +0.0024083047,436.0 +, +0.0024108659,437.0 +, +0.0024198657,438.0 +, +0.0023280159,439.0 +, +0.002206035,440.0 +, +0.0022109388,441.0 +, +0.0021608341,442.0 +, +0.0021653138,443.0 +, +0.0020893263,444.0 +, +0.0020773895,445.0 +, +0.002117512,446.0 +, +0.0020872266,447.0 +, +0.0019826216,448.0 +, +0.0020338867,449.0 +, +0.001994757,450.0 +, +0.0019529707,451.0 +, +0.0019151836,452.0 +, +0.0018748939,453.0 +, +0.0017884662,454.0 +, +0.0017458296,455.0 +, +0.001717279,456.0 +, +0.0016646234,457.0 +, +0.0016306092,458.0 +, +0.001587358,459.0 +, +0.0015988561,460.0 +, +0.0015891518,461.0 +, +0.0016028725,462.0 +, +0.0016279299,463.0 +, +0.0016414586,464.0 +, +0.0016114619,465.0 +, +0.0016523786,466.0 +, +0.0017532157,467.0 +, +0.0018698343,468.0 +, +0.0019232066,469.0 +, +0.0019062788,470.0 +, +0.0018841226,471.0 +, +0.0018888488,472.0 +, +0.0018755818,473.0 +, +0.0018860779,474.0 +, +0.0018893316,475.0 +, +0.0018203834,476.0 +, +0.0018144085,477.0 +, +0.001791051,478.0 +, +0.001783035,479.0 +, +0.0018367197,480.0 +, +0.0019194249,481.0 +, +0.001959048,482.0 +, +0.0020989382,483.0 +, +0.0021152776,484.0 +, +0.0021999185,485.0 +, +0.0023299714,486.0 +, +0.0022794872,487.0 +, +0.0022714082,488.0 +, +0.0022822493,489.0 +, +0.0022240055,490.0 +, +0.002299924,491.0 +, +0.002306609,492.0 +, +0.0021361548,493.0 +, +0.00217412,494.0 +, +0.0021827281,495.0 +, +0.0021861326,496.0 +, +0.002204362,497.0 +, +0.0023612643,498.0 +, +0.0024137034,499.0 +, +0.0023943342,500.0 +, +0.0023614059,501.0 +, +0.0023051347,502.0 +, +0.0023730814,503.0 +, +0.002348591,504.0 +, +0.0022454252,505.0 +, +0.002097074,506.0 +, +0.0021289706,507.0 +, +0.0019829744,508.0 +, +0.0018287562,509.0 +, +0.00184292,510.0 +, +0.0017205365,511.0 +, +0.0017632047,512.0 +, +0.0016770726,513.0 +, +0.0016107045,514.0 +, +0.001635182,515.0 +, +0.0016805979,516.0 +, +0.0017523505,517.0 +, +0.0017406091,518.0 +, +0.0017679014,519.0 +, +0.001789323,520.0 +, +0.0018660773,521.0 +, +0.0018465763,522.0 +, +0.0019030398,523.0 +, +0.0020594574,524.0 +, +0.002119792,525.0 +, +0.0020660518,526.0 +, +0.0019526805,527.0 +, +0.0019263306,528.0 +, +0.0019714755,529.0 +, +0.0020034318,530.0 +, +0.0019015165,531.0 +, +0.001945358,532.0 +, +0.0018668473,533.0 +, +0.0017047767,534.0 +, +0.0016586457,535.0 +, +0.0016894216,536.0 +, +0.0017010166,537.0 +, +0.0017229551,538.0 +, +0.001670079,539.0 +, +0.0015760452,540.0 +, +0.0016725159,541.0 +, +0.0016767133,542.0 +, +0.0016951036,543.0 +, +0.0017222011,544.0 +, +0.0017621996,545.0 +, +0.0017805615,546.0 +, +0.0017982196,547.0 +, +0.0017882833,548.0 +, +0.0018448718,549.0 +, +0.0019666234,550.0 +, +0.0019076975,551.0 +, +0.0018715691,552.0 +, +0.0019554817,553.0 +, +0.0019985035,554.0 +, +0.0020592315,555.0 +, +0.0020653878,556.0 +, +0.0020838263,557.0 +, +0.002095191,558.0 +, +0.0020432367,559.0 +, +0.0020052257,560.0 +, +0.0020018995,561.0 +, +0.001931811,562.0 +, +0.0019229626,563.0 +, +0.0019406999,564.0 +, +0.0019049175,565.0 +, +0.0020095282,566.0 +, +0.0019363305,567.0 +, +0.0018935282,568.0 +, +0.0019831448,569.0 +, +0.0019363079,570.0 +, +0.0019397025,571.0 +, +0.0019768483,572.0 +, +0.0018837163,573.0 +, +0.0018218185,574.0 +, +0.0017805112,575.0 +, +0.0016203601,576.0 +, +0.0016064912,577.0 +, +0.0017189073,578.0 +, +0.0016244536,579.0 +, +0.0016255511,580.0 +, +0.0015507056,581.0 +, +0.0015580666,582.0 +, +0.0016561073,583.0 +, +0.0016211516,584.0 +, +0.0015700705,585.0 +, +0.0015420543,586.0 +, +0.0015701067,587.0 +, +0.0015230797,588.0 +, +0.0015124955,589.0 +, +0.0016209187,590.0 +, +0.0017051346,591.0 +, +0.0018082935,592.0 +, +0.0017641919,593.0 +, +0.0017935472,594.0 +, +0.001810446,595.0 +, +0.0018634761,596.0 +, +0.0018715688,597.0 +, +0.0018106379,598.0 +, +0.001833563,599.0 +, +0.0017076008,600.0 +, +0.0016647311,601.0 +, +0.0015571703,602.0 +, +0.0015799468,603.0 +, +0.0015889879,604.0 +, +0.0015591546,605.0 +, +0.0014958208,606.0 +, +0.0014240805,607.0 +, +0.0014367993,608.0 +, +0.0014126824,609.0 +, +0.0014027186,610.0 +, +0.0013791907,611.0 +, +0.0013263708,612.0 +, +0.0012708445,613.0 +, +0.0012139344,614.0 +, +0.0012319413,615.0 +, +0.0012522399,616.0 +, +0.0012734758,617.0 +, +0.0012910946,618.0 +, +0.0012755672,619.0 +, +0.0012513229,620.0 +, +0.0013075816,621.0 +, +0.0013105611,622.0 +, +0.0012796965,623.0 +, +0.0012754378,624.0 +, +0.0013478979,625.0 +, +0.0013711598,626.0 +, +0.0013171906,627.0 +, +0.0013788433,628.0 +, +0.001413046,629.0 +, +0.0014567596,630.0 +, +0.0015997548,631.0 +, +0.0015933358,632.0 +, +0.0016292523,633.0 +, +0.0017311517,634.0 +, +0.0016764387,635.0 +, +0.001692792,636.0 +, +0.0017229051,637.0 +, +0.0016412109,638.0 +, +0.0017033726,639.0 +, +0.001740497,640.0 +, +0.00173686,641.0 +, +0.0018697486,642.0 +, +0.002011414,643.0 +, +0.00203693,644.0 +, +0.0021282837,645.0 +, +0.0021506737,646.0 +, +0.0021839333,647.0 +, +0.0022453894,648.0 +, +0.002301612,649.0 +, +0.002359852,650.0 +, +0.0022147992,651.0 +, +0.0022218665,652.0 +, +0.0021261545,653.0 +, +0.002227218,654.0 +, +0.0021722629,655.0 +, +0.0021354246,656.0 +, +0.0022716355,657.0 +, +0.0022492642,658.0 +, +0.002243658,659.0 +, +0.0021330744,660.0 +, +0.0021061434,661.0 +, +0.002143382,662.0 +, +0.002160568,663.0 +, +0.0020056188,664.0 +, +0.0019286026,665.0 +, +0.0019068992,666.0 +, +0.0017698819,667.0 +, +0.0018374551,668.0 +, +0.001716411,669.0 +, +0.0017501016,670.0 +, +0.001791881,671.0 +, +0.0016325234,672.0 +, +0.0015515495,673.0 +, +0.0014953509,674.0 +, +0.0015398795,675.0 +, +0.0015718257,676.0 +, +0.0015397812,677.0 +, +0.0013955629,678.0 +, +0.0014330016,679.0 +, +0.0014216142,680.0 +, +0.0013772298,681.0 +, +0.0013943024,682.0 +, +0.0013373584,683.0 +, +0.0013251683,684.0 +, +0.0012640087,685.0 +, +0.0012504628,686.0 +, +0.00128381,687.0 +, +0.0013063055,688.0 +, +0.001284523,689.0 +, +0.0012096773,690.0 +, +0.0012361064,691.0 +, +0.0012859232,692.0 +, +0.001388235,693.0 +, +0.0014269461,694.0 +, +0.0015398476,695.0 +, +0.0015594211,696.0 +, +0.0015636419,697.0 +, +0.0016136247,698.0 +, +0.0016037378,699.0 +, +0.0016883069,700.0 +, +0.001653303,701.0 +, +0.0015353167,702.0 +, +0.0014869093,703.0 +, +0.0015535683,704.0 +, +0.0014892067,705.0 +, +0.001443968,706.0 +, +0.0014547679,707.0 +, +0.0013978692,708.0 +, +0.0014173442,709.0 +, +0.0013679179,710.0 +, +0.0014311712,711.0 +, +0.0015632857,712.0 +, +0.0016357766,713.0 +, +0.0016154259,714.0 +, +0.0016406908,715.0 +, +0.0016538191,716.0 +, +0.0016900437,717.0 +, +0.0017150389,718.0 +, +0.0017206362,719.0 +, +0.0017399801,720.0 +, +0.0016872808,721.0 +, +0.0016493325,722.0 +, +0.0015894575,723.0 +, +0.0015220798,724.0 +, +0.0014660312,725.0 +, +0.0014465445,726.0 +, +0.0013714675,727.0 +, +0.0013324551,728.0 +, +0.001296964,729.0 +, +0.0012843091,730.0 +, +0.0012795057,731.0 +, +0.001335425,732.0 +, +0.0012781796,733.0 +, +0.0012871639,734.0 +, +0.0012652508,735.0 +, +0.0013218264,736.0 +, +0.0013400693,737.0 +, +0.001346376,738.0 +, +0.0013420184,739.0 +, +0.0013943227,740.0 +, +0.0013821267,741.0 +, +0.0013179875,742.0 +, +0.001340097,743.0 +, +0.0013320694,744.0 +, +0.0014017966,745.0 +, +0.0013962178,746.0 +, +0.001362267,747.0 +, +0.0013533711,748.0 +, +0.001478119,749.0 +, +0.001470939,750.0 +, +0.0015264101,751.0 +, +0.0015162361,752.0 +, +0.0016780451,753.0 +, +0.0017870836,754.0 +, +0.0018707716,755.0 +, +0.0019141177,756.0 +, +0.0020022332,757.0 +, +0.002312275,758.0 +, +0.0021617326,759.0 +, +0.0023383517,760.0 +, +0.0024080423,761.0 +, +0.0028254958,762.0 +, +0.0028636672,763.0 +, +0.0028971792,764.0 +, +0.0030611062,765.0 +, +0.003123356,766.0 +, +0.0033468038,767.0 +, +0.0034751922,768.0 +, +0.0035624946,769.0 +, +0.0035701834,770.0 +, +0.0036231496,771.0 +, +0.0038013689,772.0 +, +0.0038031165,773.0 +, +0.0037162348,774.0 +, +0.0038241562,775.0 +, +0.0039064605,776.0 +, +0.0040820898,777.0 +, +0.003923612,778.0 +, +0.0040517757,779.0 +, +0.0040940316,780.0 +, +0.0041222507,781.0 +, +0.0037221876,782.0 +, +0.0038733769,783.0 +, +0.003906427,784.0 +, +0.0037811347,785.0 +, +0.0038334012,786.0 +, +0.0036224523,787.0 +, +0.0035261575,788.0 +, +0.003479308,789.0 +, +0.0033965383,790.0 +, +0.0034302995,791.0 +, +0.0034377933,792.0 +, +0.0033153563,793.0 +, +0.0033206039,794.0 +, +0.0031762372,795.0 +, +0.0030405049,796.0 +, +0.0029862316,797.0 +, +0.0031312604,798.0 +, +0.0030505485,799.0 +, +0.0031082488,800.0 +, +0.003044238,801.0 +, +0.0029136336,802.0 +, +0.0030064166,803.0 +, +0.0029224097,804.0 +, +0.0030854908,805.0 +, +0.003105039,806.0 +, +0.0030560405,807.0 +, +0.0030277981,808.0 +, +0.0030091149,809.0 +, +0.0031404537,810.0 +, +0.0029760401,811.0 +, +0.00310524,812.0 +, +0.003099827,813.0 +, +0.0031548433,814.0 +, +0.002981928,815.0 +, +0.0028553135,816.0 +, +0.0027719394,817.0 +, +0.0025610626,818.0 +, +0.0025459956,819.0 +, +0.0022457887,820.0 +, +0.0022471668,821.0 +, +0.0020746323,822.0 +, +0.0017842175,823.0 +, +0.001794372,824.0 +, +0.0017394575,825.0 +, +0.0016785773,826.0 +, +0.0015636727,827.0 +, +0.0014647844,828.0 +, +0.0014292076,829.0 +, +0.0013410391,830.0 +, +0.001295628,831.0 +, +0.0012272757,832.0 +, +0.0012152568,833.0 +, +0.0011068927,834.0 +, +0.0009882771,835.0 +, +0.0009640165,836.0 +, +0.00096680067,837.0 +, +0.0009593062,838.0 +, +0.0009659175,839.0 +, +0.0009616882,840.0 +, +0.0009863728,841.0 +, +0.00095545565,842.0 +, +0.00091711024,843.0 +, +0.0009044634,844.0 +, +0.00096740795,845.0 +, +0.0010315398,846.0 +, +0.0010463413,847.0 +, +0.0010367715,848.0 +, +0.0009907639,849.0 +, +0.0010160106,850.0 +, +0.0009677463,851.0 +, +0.000988133,852.0 +, +0.0009715197,853.0 +, +0.0009843019,854.0 +, +0.00095529656,855.0 +, +0.0008970134,856.0 +, +0.00095216464,857.0 +, +0.00095925445,858.0 +, +0.0010169024,859.0 +, +0.0009613419,860.0 +, +0.0010311457,861.0 +, +0.0010693133,862.0 +, +0.0011163289,863.0 +, +0.0011282724,864.0 +, +0.0011724043,865.0 +, +0.0012423054,866.0 +, +0.0011758931,867.0 +, +0.0011413585,868.0 +, +0.0011351632,869.0 +, +0.0011961028,870.0 +, +0.0011909097,871.0 +, +0.0011376857,872.0 +, +0.0011203687,873.0 +, +0.001135746,874.0 +, +0.0010842151,875.0 +, +0.0011084243,876.0 +, +0.0011157264,877.0 +, +0.001135641,878.0 +, +0.0011050447,879.0 +, +0.0010342798,880.0 +, +0.0010770974,881.0 +, +0.0010736532,882.0 +, +0.001052056,883.0 +, +0.0009979216,884.0 +, +0.0009599463,885.0 +, +0.00092344393,886.0 +, +0.0009016281,887.0 +, +0.0009106365,888.0 +, +0.00091701216,889.0 +, +0.00095373485,890.0 +, +0.00091533596,891.0 +, +0.00094293914,892.0 +, +0.0009997895,893.0 +, +0.0009882915,894.0 +, +0.0010694165,895.0 +, +0.0010512797,896.0 +, +0.0010777601,897.0 +, +0.0010582496,898.0 +, +0.0010238136,899.0 +, +0.0010296003,900.0 +, +0.0010155601,901.0 +, +0.0009807027,902.0 +, +0.00095560926,903.0 +, +0.0010090296,904.0 +, +0.0009772879,905.0 +, +0.0009443198,906.0 +, +0.0009037809,907.0 +, +0.0009213003,908.0 +, +0.00093527185,909.0 +, +0.00094244396,910.0 +, +0.0009039774,911.0 +, +0.0009187603,912.0 +, +0.00087986497,913.0 +, +0.0008640201,914.0 +, +0.00087483844,915.0 +, +0.00088016654,916.0 +, +0.00090567954,917.0 +, +0.00090120564,918.0 +, +0.0009400115,919.0 +, +0.00093044824,920.0 +, +0.0009363359,921.0 +, +0.00094092125,922.0 +, +0.0009548993,923.0 +, +0.0009190457,924.0 +, +0.00087832485,925.0 +, +0.00087282306,926.0 +, +0.00082784134,927.0 +, +0.00079670147,928.0 +, +0.0007303604,929.0 +, +0.00068764924,930.0 +, +0.000666016,931.0 +, +0.0006311025,932.0 +, +0.00059834,933.0 +, +0.0005966687,934.0 +, +0.0005984531,935.0 +, +0.00057811936,936.0 +, +0.0006007211,937.0 +, +0.00060122716,938.0 +, +0.0006171138,939.0 +, +0.0006120488,940.0 +, +0.00062549027,941.0 +, +0.0006342864,942.0 +, +0.0006736606,943.0 +, +0.00069389667,944.0 +, +0.00071260385,945.0 +, +0.0006981415,946.0 +, +0.000719516,947.0 +, +0.0007945042,948.0 +, +0.0007949167,949.0 +, +0.00083176774,950.0 +, +0.0008178168,951.0 +, +0.00086033036,952.0 +, +0.00089215627,953.0 +, +0.00090236793,954.0 +, +0.0008566807,955.0 +, +0.000869186,956.0 +, +0.000840875,957.0 +, +0.0007951775,958.0 +, +0.00078860356,959.0 +, +0.00076531066,960.0 +, +0.0007517678,961.0 +, +0.0007130546,962.0 +, +0.000646938,963.0 +, +0.0006376976,964.0 +, +0.0006450809,965.0 +, +0.00061867124,966.0 +, +0.0006052899,967.0 +, +0.0005576364,968.0 +, +0.0005497619,969.0 +, +0.0005215871,970.0 +, +0.0005198188,971.0 +, +0.00048232466,972.0 +, +0.00047794264,973.0 +, +0.00045661285,974.0 +, +0.00045010308,975.0 +, +0.0004375408,976.0 +, +0.0004536722,977.0 +, +0.00045433608,978.0 +, +0.000455904,979.0 +, +0.00046207328,980.0 +, +0.00046719945,981.0 +, +0.00047198884,982.0 +, +0.0005355911,983.0 +, +0.00055250636,984.0 +, +0.0006090977,985.0 +, +0.00064342667,986.0 +, +0.0006457332,987.0 +, +0.0007277812,988.0 +, +0.0007086428,989.0 +, +0.0007224941,990.0 +, +0.00074280734,991.0 +, +0.000818975,992.0 +, +0.0007800755,993.0 +, +0.0007970805,994.0 +, +0.00074744096,995.0 +, +0.0007762117,996.0 +, +0.00079058885,997.0 +, +0.0008190308,998.0 +, +0.0008596025,999.0 +, diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/progress.csv b/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/progress.csv new file mode 100644 index 0000000..ad8f519 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/progress.csv @@ -0,0 +1,2001 @@ +time-step,y_out,perf/mse +0,-0.013044723122136316, +,, +1,-0.039775553673963945, +,, +2,-0.021223840086022655, +,, +3,-0.030842091232034328, +,, +4,0.03591459421869284, +,, +5,-0.05043040970842958, +,, +6,0.09605244631304125, +,, +7,-0.02644270120011824, +,, +8,0.018626814035055193, +,, +9,-0.01091230639517568,0.22814277 +,, +10,-0.11521491327492864,0.19190815 +,, +11,-0.047721824594281335,0.14656934 +,, +12,-0.008680319463839924,0.13418613 +,, +13,-0.05937908621194753,0.12194592 +,, +14,0.06621001087082731,0.11168168 +,, +15,0.055266139168049996,0.09495102 +,, +16,-0.036740698564834445,0.08053599 +,, +17,0.00463304758820916,0.07548128 +,, +18,0.03384033496285685,0.06800024 +,, +19,0.1266369670002746,0.06443814 +,, +20,-0.09678839470353731,0.061469335 +,, +21,-0.04676037184843289,0.05173979 +,, +22,0.04370244792710414,0.049125113 +,, +23,-0.11205976772899728,0.047618106 +,, +24,-0.11384647459770893,0.04363936 +,, +25,0.07795386909427134,0.040248767 +,, +26,0.0966097412199266,0.038495947 +,, +27,0.11051820950888862,0.036612876 +,, +28,0.06920043913648215,0.034937687 +,, +29,-0.010543508115133216,0.03362351 +,, +30,0.0870063000350261,0.032952435 +,, +31,-0.11715049807307487,0.030083561 +,, +32,0.07261127774461235,0.028178344 +,, +33,0.11692546536591512,0.027806658 +,, +34,0.020914399667662335,0.026402492 +,, +35,0.07200621133331364,0.024513748 +,, +36,-0.044229218778017124,0.02449134 +,, +37,0.05401311545821764,0.02332837 +,, +38,0.0743114624971966,0.020952143 +,, +39,-0.1028175361653311,0.020119164 +,, +40,0.12817743012172195,0.019523617 +,, +41,-0.06324868150953475,0.01971373 +,, +42,-0.02682199388649977,0.01886544 +,, +43,0.05000307043148868,0.01780585 +,, +44,-0.04450201378673498,0.017950684 +,, +45,0.060798843202471184,0.017043848 +,, +46,0.051590027240332834,0.01589923 +,, +47,0.02827958284158441,0.015796915 +,, +48,-0.04780929055493434,0.016570983 +,, +49,-0.030234319050381257,0.01654853 +,, +50,-0.018669943237614707,0.0161605 +,, +51,0.053076556471066794,0.015983542 +,, +52,-0.027661696367522637,0.015992003 +,, +53,-0.060598171854472846,0.015842691 +,, +54,-0.06690132359049775,0.0153492885 +,, +55,0.055086028634601825,0.015530897 +,, +56,0.01446754366870149,0.015361421 +,, +57,-0.07966432278095485,0.014956504 +,, +58,0.09462860808844291,0.014301039 +,, +59,-0.038779667539063485,0.013976658 +,, +60,-0.05248309054961128,0.014097333 +,, +61,-0.052372129850601336,0.013206692 +,, +62,0.06809540855725407,0.013091194 +,, +63,0.006846200139456622,0.012828231 +,, +64,-0.09303596363293523,0.012624028 +,, +65,0.0731932604080133,0.01218119 +,, +66,-0.029832120778219173,0.011941055 +,, +67,-0.008873077626432364,0.011805937 +,, +68,0.11903200595546523,0.011551429 +,, +69,-0.04335496773444901,0.011596314 +,, +70,0.06131749059341442,0.011252415 +,, +71,-0.03871206105255626,0.011377673 +,, +72,0.16178685055974004,0.0111884335 +,, +73,-0.09015102856364438,0.01113789 +,, +74,0.03564904341545459,0.0109994095 +,, +75,-0.04063511891725677,0.010855131 +,, +76,-0.027852778072476284,0.011410418 +,, +77,-0.07786685469098528,0.011704127 +,, +78,0.0586432335795804,0.011506419 +,, +79,0.002192382973610619,0.011268602 +,, +80,-0.03361183207837407,0.011008004 +,, +81,-0.057789034725635464,0.011449149 +,, +82,-0.03073783943996061,0.011286937 +,, +83,0.014296599899096096,0.0108551225 +,, +84,0.05816136682202491,0.0107244495 +,, +85,0.057235543870714826,0.010829263 +,, +86,0.06339898033205119,0.010135734 +,, +87,0.026590315695546825,0.009615773 +,, +88,-0.06183248343238123,0.009502051 +,, +89,0.08063740808144586,0.0093239285 +,, +90,-0.02203572708335256,0.009704497 +,, +91,-0.0035328433623174546,0.008905305 +,, +92,-0.1252526410818369,0.0088629145 +,, +93,0.12246338311386228,0.008705814 +,, +94,0.02300512890991238,0.008940022 +,, +95,0.05430314482263319,0.008700555 +,, +96,-0.05772442748755699,0.008806358 +,, +97,-0.11260657359793713,0.008766229 +,, +98,0.0309960854951612,0.008845379 +,, +99,0.1695263276726466,0.008962333 +,, +100,0.08175156219683946,0.008823075 +,, +101,0.01059400727440762,0.009079252 +,, +102,-0.044708104683675295,0.009047341 +,, +103,0.011415052308742759,0.0092800325 +,, +104,0.0008401749540951527,0.009331655 +,, +105,-0.009394518634880163,0.0093044955 +,, +106,-0.0776529788137733,0.009508592 +,, +107,-0.03965630574714966,0.009845148 +,, +108,-0.06948068990269032,0.00994922 +,, +109,-0.09863581712122418,0.009717304 +,, +110,-0.019200103782468177,0.0097834915 +,, +111,-0.12404410949571565,0.00985957 +,, +112,0.12458983000796492,0.009869351 +,, +113,-0.1658257317930219,0.010112503 +,, +114,0.07238285803849256,0.009826284 +,, +115,-0.0007015888543655292,0.009966163 +,, +116,0.11236935885361937,0.00990772 +,, +117,0.08346531616245825,0.00951389 +,, +118,0.15619545512143798,0.00927384 +,, +119,-0.004705597913434945,0.009128759 +,, +120,0.033003268708970024,0.00913714 +,, +121,-0.012857807360729005,0.008777548 +,, +122,0.015078270301221337,0.008357844 +,, +123,0.029098189392882275,0.007956855 +,, +124,0.056163502674260804,0.007997531 +,, +125,-0.020693360205767668,0.008159223 +,, +126,0.1214001512097389,0.008003077 +,, +127,0.11339276166236384,0.008236217 +,, +128,-0.024516198599124524,0.0082245255 +,, +129,0.027443583045747854,0.008678203 +,, +130,-0.01122673224333242,0.0085857455 +,, +131,-0.025068150486300414,0.008827664 +,, +132,-0.035448969600939975,0.009627724 +,, +133,0.1493860791570387,0.009989527 +,, +134,0.14583983060514855,0.010198536 +,, +135,-0.07583851683808199,0.010393284 +,, +136,-0.12332379226729902,0.010434011 +,, +137,0.02835243450398886,0.010183383 +,, +138,-0.026991362451874248,0.010108882 +,, +139,0.06605405691096315,0.009743065 +,, +140,0.13395396166026036,0.009792206 +,, +141,0.004067390706676083,0.009693286 +,, +142,0.09541988633287643,0.009483784 +,, +143,-0.042366320867063836,0.0090315435 +,, +144,-0.10810419525464705,0.008447139 +,, +145,0.019141765470604206,0.007830776 +,, +146,0.01014758917133958,0.00749177 +,, +147,0.10095943301872168,0.007686507 +,, +148,0.12271277487366426,0.0077596516 +,, +149,0.02848955168675843,0.007711702 +,, +150,-0.027945883791806774,0.0074007795 +,, +151,-0.12925611429355222,0.0073721996 +,, +152,-0.0749402298713827,0.0074723167 +,, +153,-0.1529614800206286,0.007752657 +,, +154,0.006281910101940326,0.008310327 +,, +155,-0.0507314198172299,0.008291332 +,, +156,0.005495655425317695,0.008496254 +,, +157,0.06844978856639827,0.008483608 +,, +158,0.03579154269610453,0.008220109 +,, +159,-0.044840794322580285,0.008307133 +,, +160,0.07285314556214466,0.008243485 +,, +161,0.0673357575574794,0.008122629 +,, +162,0.12023351833786702,0.007903912 +,, +163,-0.06988925002624567,0.007865642 +,, +164,0.050471234031666166,0.007622161 +,, +165,-0.01558633224293307,0.0079662 +,, +166,-0.08607127984869237,0.007813568 +,, +167,-0.03589927479765659,0.0076940046 +,, +168,-0.0981211829967078,0.0077493945 +,, +169,0.010632442892162544,0.0076100677 +,, +170,0.01449537549789777,0.0077119707 +,, +171,0.09292418462432994,0.008007618 +,, +172,-0.08231426544667894,0.007861136 +,, +173,0.0662228921914411,0.007533052 +,, +174,-0.07988745990020932,0.0074703456 +,, +175,-0.03699569031625667,0.007024908 +,, +176,-0.060723475534631845,0.006973028 +,, +177,-0.1705746294981248,0.006808958 +,, +178,0.03835654296152735,0.0067936345 +,, +179,0.10967445293092659,0.0065353974 +,, +180,0.019695667518288315,0.0064742193 +,, +181,0.024312061137603206,0.006289745 +,, +182,-0.05370302175852813,0.0062902225 +,, +183,0.12204550014201054,0.0063520125 +,, +184,-0.04450060005611137,0.0062725493 +,, +185,-0.10422833185040638,0.0065097734 +,, +186,0.002150465796483092,0.006561597 +,, +187,0.029433207322343276,0.00655551 +,, +188,0.04154645455948109,0.006472918 +,, +189,-0.011422808744320175,0.0065273703 +,, +190,0.0878861104733802,0.0063348166 +,, +191,0.038104954021961124,0.006337526 +,, +192,-0.07669858769175916,0.0062272483 +,, +193,0.10375332107350559,0.0062594516 +,, +194,0.12349148298547577,0.006278423 +,, +195,-0.10803303952677827,0.0061354144 +,, +196,0.024660887109926546,0.0060305703 +,, +197,-0.12591818659292092,0.0061104754 +,, +198,-0.005408168263167774,0.0062858225 +,, +199,-0.027287473517642418,0.006298403 +,, +200,-0.025899515758992842,0.006660664 +,, +201,-0.11110674593548078,0.006327367 +,, +202,0.02376939691400353,0.006286925 +,, +203,0.01672281284242317,0.0063311225 +,, +204,0.08725153230486357,0.006096818 +,, +205,0.06479796300436463,0.0059129233 +,, +206,0.06853946169781959,0.0059521077 +,, +207,-0.04677130532607565,0.0057609743 +,, +208,0.040096543258439955,0.0056522526 +,, +209,-0.00546686104755667,0.0057538003 +,, +210,-0.02775819138624446,0.0053303726 +,, +211,0.0257045769608441,0.00543254 +,, +212,0.10316232839014233,0.0054755462 +,, +213,0.0615051773783524,0.005163024 +,, +214,-0.0454504310390193,0.00527807 +,, +215,0.010169522608501933,0.0054206722 +,, +216,-0.06808103973453908,0.005390556 +,, +217,0.022093589439093984,0.005303591 +,, +218,-0.03518272078800505,0.005322987 +,, +219,-0.11824994047366127,0.0051577697 +,, +220,-0.07985355707835287,0.005256223 +,, +221,0.03106687477943951,0.0054133954 +,, +222,0.17184124127985126,0.005216778 +,, +223,0.06514324178368117,0.005268435 +,, +224,0.03751905694153103,0.005479181 +,, +225,-0.08028460768048537,0.005524743 +,, +226,-0.0981166215901143,0.0055872994 +,, +227,-0.004728168218420908,0.005836328 +,, +228,-0.016460375857746602,0.0057471474 +,, +229,-0.09285492653002057,0.0058778888 +,, +230,0.008672671090437543,0.005986926 +,, +231,-0.05036590214874129,0.00576377 +,, +232,-0.019064989948664422,0.005870902 +,, +233,0.020941287165233344,0.0058360295 +,, +234,-0.007981924705772157,0.0054785404 +,, +235,-0.07820492424903162,0.005676602 +,, +236,0.013108120620287447,0.005449542 +,, +237,-0.03436655624158498,0.0052621923 +,, +238,-0.057185937924601304,0.0053039417 +,, +239,0.002927544221348277,0.005104669 +,, +240,0.09519587730400311,0.004935091 +,, +241,0.007347744866399199,0.0049037556 +,, +242,0.11901189085589674,0.00503283 +,, +243,0.022516706418840623,0.005100853 +,, +244,-0.027961298177904367,0.0054141255 +,, +245,0.038102184446977175,0.0049223904 +,, +246,-0.1006759491441483,0.0050099087 +,, +247,-0.12629947881310616,0.0051783705 +,, +248,-0.14264116384290057,0.0051969956 +,, +249,0.06344555922497722,0.0052441894 +,, +250,0.1308657808894314,0.0053930283 +,, +251,0.03286731280074046,0.0053435406 +,, +252,0.04821993111387923,0.00520441 +,, +253,-0.053334136086426384,0.0054052984 +,, +254,0.002437784866521211,0.005094585 +,, +255,-0.030425955733630328,0.005109689 +,, +256,-0.06059424419373896,0.0051714643 +,, +257,0.03178081080954621,0.004958625 +,, +258,-0.05272547839818896,0.005060304 +,, +259,-0.0706280763122153,0.005055004 +,, +260,-0.05879124229978112,0.005030291 +,, +261,-0.04413177296898342,0.005053456 +,, +262,0.0009405176164190843,0.005302157 +,, +263,0.0009034843940636597,0.0049746884 +,, +264,0.07528766577179337,0.005001827 +,, +265,0.06020589787755862,0.005208264 +,, +266,0.025385545209067203,0.0052080993 +,, +267,-0.06790544433902945,0.0051157377 +,, +268,-0.04263006744194077,0.0050438377 +,, +269,0.012043692749578973,0.005080645 +,, +270,0.0664902062984192,0.0048659346 +,, +271,0.02472355526165012,0.004884166 +,, +272,-0.026332465354504273,0.004600591 +,, +273,0.08974588919527751,0.004561812 +,, +274,-0.05016864914477745,0.0046241884 +,, +275,0.04040429519451054,0.004417187 +,, +276,-0.04120228800556013,0.0042505665 +,, +277,-0.08226556656281374,0.0044181906 +,, +278,0.0032431130428010983,0.0042009973 +,, +279,-0.021997966193103326,0.00408451 +,, +280,-0.07783436434802571,0.0041899416 +,, +281,0.027938903558809812,0.004101356 +,, +282,0.029221319852060026,0.0040584723 +,, +283,-0.027638728643928717,0.003995669 +,, +284,0.0007507195208445727,0.0038804102 +,, +285,-0.009113857000619799,0.0039048274 +,, +286,0.0491129183851179,0.0038150835 +,, +287,0.08730596743436547,0.0036521622 +,, +288,-0.11960852016893227,0.0036560171 +,, +289,0.06521848168930139,0.0036707025 +,, +290,0.029944699323424032,0.003663823 +,, +291,-0.07801972273302797,0.0036018915 +,, +292,-0.016516654409461196,0.0035577565 +,, +293,-0.014797173893487697,0.0036325217 +,, +294,0.008196233823520721,0.0035084677 +,, +295,0.050733210639300495,0.0034077198 +,, +296,0.05356464896571464,0.0035068407 +,, +297,0.0477114069451664,0.003616973 +,, +298,0.06292614422757728,0.0036918302 +,, +299,-0.045530150172368555,0.0036206767 +,, +300,0.15092812024849128,0.0035456014 +,, +301,0.004139555587456722,0.0036069364 +,, +302,-0.07705038274131051,0.0037248996 +,, +303,0.019043307485174542,0.0036344938 +,, +304,0.015203298486425834,0.00368546 +,, +305,0.002721499335901977,0.0038071903 +,, +306,0.02072070513858905,0.00399639 +,, +307,0.06655227462331884,0.0039564827 +,, +308,-0.005605848141146112,0.004216424 +,, +309,-0.02775838957119845,0.004179932 +,, +310,0.19236707462755337,0.0042393752 +,, +311,-0.05272581507264283,0.004197497 +,, +312,0.08849917940859507,0.0040477975 +,, +313,0.05814285328638215,0.0041513015 +,, +314,0.019292658576660515,0.0041851373 +,, +315,-0.046796836761670554,0.0043020644 +,, +316,-0.07912481734681875,0.004193698 +,, +317,0.11079131957971898,0.0041403947 +,, +318,-0.050442785419994494,0.0039382842 +,, +319,0.025937815469306104,0.0039878357 +,, +320,0.04993277904829861,0.003963006 +,, +321,-0.009762538835096958,0.0040808967 +,, +322,-0.005439804685404011,0.004089148 +,, +323,-0.05496093267246032,0.004174361 +,, +324,0.019180950861236647,0.0044125123 +,, +325,0.008541148861650392,0.0043088314 +,, +326,0.09862045920374973,0.00413171 +,, +327,-0.08469727823840427,0.004287612 +,, +328,-0.007718774242615495,0.0043292423 +,, +329,-0.059673469440499345,0.0043574073 +,, +330,0.019305631534086237,0.0044156606 +,, +331,0.022720918235046135,0.004237474 +,, +332,-0.1762126594020365,0.004242272 +,, +333,-0.024124072217389186,0.004266515 +,, +334,0.03915543403704319,0.00423325 +,, +335,0.0003878720618000018,0.0041499655 +,, +336,0.10214281181504949,0.00454837 +,, +337,0.03704793075646066,0.004348189 +,, +338,-0.02239866645237657,0.0041687335 +,, +339,0.03072984562262801,0.0044572987 +,, +340,0.004520793647425483,0.0042990986 +,, +341,0.018098352012029868,0.0043040626 +,, +342,0.14344132310907984,0.004310579 +,, +343,-0.1034282663252114,0.004043701 +,, +344,-0.00011370791381789744,0.0038689692 +,, +345,0.017709649215044046,0.0039927894 +,, +346,0.0353470325027159,0.0036412464 +,, +347,0.0519309706940778,0.0036830255 +,, +348,0.0663554115410359,0.003789559 +,, +349,-0.04048587173226848,0.0034503099 +,, +350,-0.06754104030438995,0.0034847078 +,, +351,0.008094036067735861,0.0036763232 +,, +352,0.050385047241042535,0.0036198385 +,, +353,-0.06868079931032967,0.0037022172 +,, +354,-0.029761984018172028,0.003784782 +,, +355,-0.040800936551618566,0.0036062598 +,, +356,-0.03926875779401733,0.003554086 +,, +357,0.0918517379902043,0.0034277563 +,, +358,0.03976425437641178,0.0032615073 +,, +359,0.031237669128218716,0.0031486116 +,, +360,0.0303251170288723,0.0031012534 +,, +361,0.16400875118476815,0.0029184758 +,, +362,0.029555995114517883,0.002877044 +,, +363,-0.04832584033507241,0.0028360656 +,, +364,-0.08964840664122906,0.002589463 +,, +365,0.06171138800300276,0.0025715188 +,, +366,0.06646559835388449,0.0026089766 +,, +367,0.050401275530796236,0.00266103 +,, +368,0.07296458180329479,0.0027067424 +,, +369,-0.00346227996680655,0.0027684818 +,, +370,-0.03534781779472168,0.0026964836 +,, +371,-0.03345373427875836,0.0027253355 +,, +372,-0.026322386322715673,0.0026865224 +,, +373,0.07030532082028434,0.0027575567 +,, +374,-0.0049014678892611505,0.0027883498 +,, +375,0.0687118379627355,0.0028122657 +,, +376,0.03769185125656792,0.002724332 +,, +377,0.022694599647791486,0.0026641716 +,, +378,0.04076766281302815,0.0027131606 +,, +379,0.13745889327570868,0.0027769406 +,, +380,0.05905346943498162,0.0028316758 +,, +381,0.10751767666722245,0.0028969352 +,, +382,0.05151543830026326,0.0029437765 +,, +383,-0.008427012006149794,0.002945118 +,, +384,-0.11830342750529975,0.003000104 +,, +385,0.019963058117187724,0.0029598312 +,, +386,0.033697207465905966,0.0029995074 +,, +387,0.12234641529545376,0.003022773 +,, +388,-0.04678198404325328,0.00293301 +,, +389,0.04587720439303772,0.00288595 +,, +390,0.002516742972472605,0.0028845086 +,, +391,0.005186948274477618,0.0028931538 +,, +392,-0.03474240314700654,0.0029253946 +,, +393,0.17830878123368699,0.0027798438 +,, +394,-0.08910161690966212,0.0027377517 +,, +395,-0.041660024395513175,0.0027091778 +,, +396,0.06648134092470434,0.0027136323 +,, +397,-0.06476647066677328,0.0026537026 +,, +398,0.13328874706246205,0.0026035416 +,, +399,-0.07298887267970648,0.0027148766 +,, +400,-0.010604314344751424,0.0026764562 +,, +401,0.03460133991498602,0.0025633783 +,, +402,0.09492495616714476,0.0024607638 +,, +403,-0.02858280175497204,0.0026140804 +,, +404,-0.003673884771694797,0.0028095958 +,, +405,-0.10856089090296794,0.0028621678 +,, +406,-0.058342537218353696,0.0028227596 +,, +407,0.04834502538202795,0.002918527 +,, +408,0.03963404114744179,0.002974172 +,, +409,0.03917163254248194,0.0028609713 +,, +410,0.0360550117214593,0.0029443295 +,, +411,0.006196135968259242,0.0029121835 +,, +412,-0.11388150091489743,0.0029660575 +,, +413,0.015995166445019665,0.002851428 +,, +414,-0.0861000235406121,0.0026635982 +,, +415,-0.0038909624659254904,0.0025814697 +,, +416,-0.01310728309336471,0.0025655008 +,, +417,-0.0758654470559915,0.0025301003 +,, +418,0.08725868307846203,0.0025324966 +,, +419,-0.014879678688644676,0.0024488522 +,, +420,0.1099113532145824,0.002294812 +,, +421,0.014088800562954903,0.0021909764 +,, +422,0.1354560686366695,0.002174045 +,, +423,-0.03913691679410345,0.0021627548 +,, +424,0.06663236180298196,0.0022104885 +,, +425,0.0070316425209515365,0.002318445 +,, +426,0.053371369087815194,0.0024139923 +,, +427,-0.004076428731748899,0.0023800575 +,, +428,0.04655112309191636,0.0023304624 +,, +429,-0.0148061249127963,0.002378085 +,, +430,0.06111834794636492,0.0025470653 +,, +431,-0.031942295071091385,0.0026202898 +,, +432,-0.04890632784247819,0.002626631 +,, +433,0.06734970034465113,0.002606416 +,, +434,-0.005845651105412568,0.002634737 +,, +435,0.07864958680972078,0.0025430552 +,, +436,-0.021085418298562662,0.0024083047 +,, +437,-0.05362585246105965,0.0024108659 +,, +438,0.039184958429035466,0.0024198657 +,, +439,0.03198977122537348,0.0023280159 +,, +440,-0.059158050527002765,0.002206035 +,, +441,0.04555558468364106,0.0022109388 +,, +442,-0.015188382749866353,0.0021608341 +,, +443,0.024555112633383697,0.0021653138 +,, +444,-0.04213211587862385,0.0020893263 +,, +445,-0.04006553618544002,0.0020773895 +,, +446,0.03711959465582857,0.002117512 +,, +447,-0.07953866771164075,0.0020872266 +,, +448,0.11069914297042724,0.0019826216 +,, +449,-0.0171304410854674,0.0020338867 +,, +450,-0.0591227641866057,0.001994757 +,, +451,0.008178103177747122,0.0019529707 +,, +452,-0.13494436270957091,0.0019151836 +,, +453,-0.017919915621085844,0.0018748939 +,, +454,-0.11917378523881922,0.0017884662 +,, +455,-0.04089838233295782,0.0017458296 +,, +456,0.006832889454182169,0.001717279 +,, +457,0.04048233046771317,0.0016646234 +,, +458,0.09908217110329878,0.0016306092 +,, +459,0.0868370324145454,0.001587358 +,, +460,-0.1565900590592812,0.0015988561 +,, +461,-0.03181240437642169,0.0015891518 +,, +462,-0.10681461726656816,0.0016028725 +,, +463,0.03227371636506827,0.0016279299 +,, +464,-0.07249064823977888,0.0016414586 +,, +465,0.09810104979044144,0.0016114619 +,, +466,0.08388014638146647,0.0016523786 +,, +467,0.0430497549470244,0.0017532157 +,, +468,-0.005739867006208682,0.0018698343 +,, +469,0.02029966563588489,0.0019232066 +,, +470,-0.04837238396191258,0.0019062788 +,, +471,-0.060166273732440184,0.0018841226 +,, +472,-0.011956972273472168,0.0018888488 +,, +473,-0.02220246028793367,0.0018755818 +,, +474,0.011651085297668909,0.0018860779 +,, +475,-0.01121031975090963,0.0018893316 +,, +476,-0.06576104599948256,0.0018203834 +,, +477,0.04380900736372283,0.0018144085 +,, +478,0.04192259239661304,0.001791051 +,, +479,0.030007400544775853,0.001783035 +,, +480,-0.12761646289918271,0.0018367197 +,, +481,0.020130044583765244,0.0019194249 +,, +482,0.1019950977071298,0.001959048 +,, +483,0.07356828892551001,0.0020989382 +,, +484,0.004013541246738694,0.0021152776 +,, +485,-0.00498953117939939,0.0021999185 +,, +486,0.02519071478171745,0.0023299714 +,, +487,-0.14141341985578704,0.0022794872 +,, +488,-0.049642059494504946,0.0022714082 +,, +489,-0.051783487343855426,0.0022822493 +,, +490,-0.006803206614046927,0.0022240055 +,, +491,0.10476909430738818,0.002299924 +,, +492,0.07001438007142569,0.002306609 +,, +493,-0.02019612455149372,0.0021361548 +,, +494,0.022168329849318276,0.00217412 +,, +495,0.0149536235913715,0.0021827281 +,, +496,0.030594738597161164,0.0021861326 +,, +497,0.006308090388985284,0.002204362 +,, +498,0.1461757907567134,0.0023612643 +,, +499,-0.030564468013625834,0.0024137034 +,, +500,0.026276803282553097,0.0023943342 +,, +501,-0.03556945483905131,0.0023614059 +,, +502,0.039571505317933825,0.0023051347 +,, +503,-0.0024022695678408285,0.0023730814 +,, +504,-0.12237858686993608,0.002348591 +,, +505,0.06649438176835075,0.0022454252 +,, +506,-0.01847919115130183,0.002097074 +,, +507,0.032843028119051695,0.0021289706 +,, +508,0.20441744464118455,0.0019829744 +,, +509,0.03964856558262369,0.0018287562 +,, +510,-0.048341201360650315,0.00184292 +,, +511,-0.0332276136019173,0.0017205365 +,, +512,0.0748328462627191,0.0017632047 +,, +513,0.09707941206700979,0.0016770726 +,, +514,-0.010485050540364846,0.0016107045 +,, +515,-0.1008069102458194,0.001635182 +,, +516,0.17065574387464905,0.0016805979 +,, +517,-0.000842324079946645,0.0017523505 +,, +518,-0.04030174599577807,0.0017406091 +,, +519,0.034631974284821274,0.0017679014 +,, +520,0.05146499362139522,0.001789323 +,, +521,0.04647245936310238,0.0018660773 +,, +522,-0.06400751971780522,0.0018465763 +,, +523,0.04501579102869259,0.0019030398 +,, +524,0.06229852433511725,0.0020594574 +,, +525,-0.09685044328937294,0.002119792 +,, +526,-0.028559161546735323,0.0020660518 +,, +527,-0.04875321019045494,0.0019526805 +,, +528,-0.003970105522838625,0.0019263306 +,, +529,0.08197687280356063,0.0019714755 +,, +530,-0.03734099699534543,0.0020034318 +,, +531,-0.03227867760105352,0.0019015165 +,, +532,0.031156460802318722,0.001945358 +,, +533,0.035740781634464154,0.0018668473 +,, +534,-0.02053675636092213,0.0017047767 +,, +535,-0.054658598720949025,0.0016586457 +,, +536,-0.07150142592250659,0.0016894216 +,, +537,-0.04941134286443571,0.0017010166 +,, +538,0.05264540064033288,0.0017229551 +,, +539,0.03235764619595698,0.001670079 +,, +540,-0.09052760980593647,0.0015760452 +,, +541,0.019385474524440588,0.0016725159 +,, +542,0.02691885905031111,0.0016767133 +,, +543,-0.07711576282904484,0.0016951036 +,, +544,0.1068412174164686,0.0017222011 +,, +545,-0.06247144340377428,0.0017621996 +,, +546,-0.05721176078865135,0.0017805615 +,, +547,-0.12282000098023495,0.0017982196 +,, +548,0.056256905990451245,0.0017882833 +,, +549,-0.09316707692012899,0.0018448718 +,, +550,-0.05183689858815071,0.0019666234 +,, +551,0.021167343802678762,0.0019076975 +,, +552,0.020489436663485024,0.0018715691 +,, +553,0.03947743466623125,0.0019554817 +,, +554,-0.05396960757662285,0.0019985035 +,, +555,-0.003099192420130112,0.0020592315 +,, +556,0.14452955055487524,0.0020653878 +,, +557,0.1418496656923616,0.0020838263 +,, +558,-0.06195427463989033,0.002095191 +,, +559,-0.04251405538006522,0.0020432367 +,, +560,-0.130151577186439,0.0020052257 +,, +561,-0.11237618892569884,0.0020018995 +,, +562,-0.1371467409162187,0.001931811 +,, +563,0.11859761016017839,0.0019229626 +,, +564,-0.06417247176168742,0.0019406999 +,, +565,0.006622403016206611,0.0019049175 +,, +566,0.0046078487970953215,0.0020095282 +,, +567,-0.10965194108402186,0.0019363305 +,, +568,-0.02562211553405424,0.0018935282 +,, +569,0.028879268005757647,0.0019831448 +,, +570,-0.06310811505952983,0.0019363079 +,, +571,0.0908321270251883,0.0019397025 +,, +572,0.011367417615900124,0.0019768483 +,, +573,0.05460871810055791,0.0018837163 +,, +574,0.059544726701269424,0.0018218185 +,, +575,0.016284480496283477,0.0017805112 +,, +576,0.10197766750456,0.0016203601 +,, +577,-0.08387123961749111,0.0016064912 +,, +578,0.04948851065276418,0.0017189073 +,, +579,0.04253536347677636,0.0016244536 +,, +580,0.026020278410472265,0.0016255511 +,, +581,-0.08050756641879017,0.0015507056 +,, +582,-0.056544405173116014,0.0015580666 +,, +583,-0.027325509372163763,0.0016561073 +,, +584,-0.051915519925148944,0.0016211516 +,, +585,-0.10072404486565695,0.0015700705 +,, +586,0.01814577308355949,0.0015420543 +,, +587,-0.06952354856715084,0.0015701067 +,, +588,0.011982505198562863,0.0015230797 +,, +589,-0.07098709511945635,0.0015124955 +,, +590,0.014892654418836096,0.0016209187 +,, +591,-0.18060300661669393,0.0017051346 +,, +592,-0.09283500944063072,0.0018082935 +,, +593,-0.12918148490169967,0.0017641919 +,, +594,0.0073533448872893994,0.0017935472 +,, +595,-0.005123680336300295,0.001810446 +,, +596,0.10070407705127565,0.0018634761 +,, +597,0.08133792647192137,0.0018715688 +,, +598,0.006862269764361918,0.0018106379 +,, +599,0.033341648059666135,0.001833563 +,, +600,0.04632359470953955,0.0017076008 +,, +601,-0.014806010155448437,0.0016647311 +,, +602,0.011402209838344599,0.0015571703 +,, +603,0.1880004222909726,0.0015799468 +,, +604,-0.05425263785514994,0.0015889879 +,, +605,-0.14623152409119522,0.0015591546 +,, +606,0.05695153798891116,0.0014958208 +,, +607,0.007712839640897293,0.0014240805 +,, +608,0.033780780007756986,0.0014367993 +,, +609,0.12404295358321532,0.0014126824 +,, +610,0.004253549280023947,0.0014027186 +,, +611,-0.0043477597980460525,0.0013791907 +,, +612,-0.037867728507212504,0.0013263708 +,, +613,-0.01171061746737332,0.0012708445 +,, +614,-0.14486896812597716,0.0012139344 +,, +615,0.09657278984713374,0.0012319413 +,, +616,-0.11510335109848929,0.0012522399 +,, +617,0.019247684300163433,0.0012734758 +,, +618,-0.0553251392016573,0.0012910946 +,, +619,-0.00013815038716396763,0.0012755672 +,, +620,-0.01715021981666738,0.0012513229 +,, +621,0.1047703773832705,0.0013075816 +,, +622,0.07547788683569577,0.0013105611 +,, +623,-0.004787506327824454,0.0012796965 +,, +624,-0.02506312364346302,0.0012754378 +,, +625,0.05279442054751797,0.0013478979 +,, +626,0.11658602801293347,0.0013711598 +,, +627,-0.004922411011738251,0.0013171906 +,, +628,0.019204163153724946,0.0013788433 +,, +629,0.1191910670952779,0.001413046 +,, +630,0.03822850592892075,0.0014567596 +,, +631,0.020149899442444216,0.0015997548 +,, +632,0.004574575499129992,0.0015933358 +,, +633,-0.06294103964238279,0.0016292523 +,, +634,0.033903093065470104,0.0017311517 +,, +635,-0.053518108316547346,0.0016764387 +,, +636,0.06592610658362139,0.001692792 +,, +637,-0.05434264768658761,0.0017229051 +,, +638,0.10820536566409251,0.0016412109 +,, +639,0.10555396165988702,0.0017033726 +,, +640,0.07864819481593849,0.001740497 +,, +641,0.04170091908553431,0.00173686 +,, +642,0.08177366001552977,0.0018697486 +,, +643,0.015079522833582656,0.002011414 +,, +644,0.06535970450117792,0.00203693 +,, +645,-0.08873940383923817,0.0021282837 +,, +646,0.0241213410987793,0.0021506737 +,, +647,-0.059456222256060134,0.0021839333 +,, +648,-0.00917406679453296,0.0022453894 +,, +649,-0.1281044007855466,0.002301612 +,, +650,0.00873004282241492,0.002359852 +,, +651,0.044226272468024186,0.0022147992 +,, +652,0.1659021208762096,0.0022218665 +,, +653,0.08897737797198474,0.0021261545 +,, +654,0.05950399568884381,0.002227218 +,, +655,0.057958862257643184,0.0021722629 +,, +656,-0.055728898986686023,0.0021354246 +,, +657,0.0027883552300961047,0.0022716355 +,, +658,0.041471207951334806,0.0022492642 +,, +659,0.05491346541740288,0.002243658 +,, +660,0.06722028595473538,0.0021330744 +,, +661,-0.054159661031595245,0.0021061434 +,, +662,0.008322573474577901,0.002143382 +,, +663,-0.08256122996183939,0.002160568 +,, +664,0.014078537794642902,0.0020056188 +,, +665,-0.0022617911586981926,0.0019286026 +,, +666,0.021658977831520283,0.0019068992 +,, +667,-0.048013088898558126,0.0017698819 +,, +668,-0.03984203127222721,0.0018374551 +,, +669,-0.16021956215233174,0.001716411 +,, +670,0.07971094223969515,0.0017501016 +,, +671,0.04312422212580452,0.001791881 +,, +672,-0.05907162517764025,0.0016325234 +,, +673,0.023510031708943967,0.0015515495 +,, +674,-0.09821610211155071,0.0014953509 +,, +675,0.00851810253372045,0.0015398795 +,, +676,0.0026212626951448957,0.0015718257 +,, +677,-0.18404977584054116,0.0015397812 +,, +678,-0.0037790034506871087,0.0013955629 +,, +679,-0.014281095981891777,0.0014330016 +,, +680,0.055542073654026,0.0014216142 +,, +681,-0.02203797289405228,0.0013772298 +,, +682,-0.093765309368172,0.0013943024 +,, +683,-0.11338927189995299,0.0013373584 +,, +684,-0.11473895015510802,0.0013251683 +,, +685,0.06061430003373908,0.0012640087 +,, +686,0.01148565134406149,0.0012504628 +,, +687,-0.0032807608965537693,0.00128381 +,, +688,-0.062279967220322405,0.0013063055 +,, +689,-0.06767092340709904,0.001284523 +,, +690,-0.021944295043300605,0.0012096773 +,, +691,-0.032347227517587396,0.0012361064 +,, +692,-0.018174927171053994,0.0012859232 +,, +693,-0.027570894993354536,0.001388235 +,, +694,0.08633157372847457,0.0014269461 +,, +695,0.07469832933988352,0.0015398476 +,, +696,-0.05626038341853005,0.0015594211 +,, +697,0.07627772486845226,0.0015636419 +,, +698,-0.03638895153559689,0.0016136247 +,, +699,0.07275700736560133,0.0016037378 +,, +700,0.007832928669535832,0.0016883069 +,, +701,0.040818139367484345,0.001653303 +,, +702,-0.002308052094276196,0.0015353167 +,, +703,-0.05807467859781495,0.0014869093 +,, +704,0.03566206787570634,0.0015535683 +,, +705,0.07602997278909993,0.0014892067 +,, +706,-0.03807055515968602,0.001443968 +,, +707,-0.05732116110404949,0.0014547679 +,, +708,0.005770559300885913,0.0013978692 +,, +709,-0.05200660223800757,0.0014173442 +,, +710,-0.054731082580405724,0.0013679179 +,, +711,-0.01859033414573585,0.0014311712 +,, +712,-0.016492230124242502,0.0015632857 +,, +713,0.03434425322065505,0.0016357766 +,, +714,-0.03149132604725365,0.0016154259 +,, +715,-0.09770044995289912,0.0016406908 +,, +716,-0.024672922033691615,0.0016538191 +,, +717,-0.06741286525472215,0.0016900437 +,, +718,0.11640221031202073,0.0017150389 +,, +719,0.05579600290951724,0.0017206362 +,, +720,0.10517943413971019,0.0017399801 +,, +721,0.025461923597592397,0.0016872808 +,, +722,-0.008969769738238327,0.0016493325 +,, +723,0.02137745921400154,0.0015894575 +,, +724,0.042254699066068525,0.0015220798 +,, +725,-0.14924511819432404,0.0014660312 +,, +726,0.04392970771278799,0.0014465445 +,, +727,-0.045100782590480885,0.0013714675 +,, +728,0.10379717161225968,0.0013324551 +,, +729,0.009221083667202111,0.001296964 +,, +730,-0.029542311372992194,0.0012843091 +,, +731,-0.11545039410555039,0.0012795057 +,, +732,0.027578461677060004,0.001335425 +,, +733,-0.13030807837008998,0.0012781796 +,, +734,0.04106989963334371,0.0012871639 +,, +735,-0.02517940143153876,0.0012652508 +,, +736,-0.008341691183395044,0.0013218264 +,, +737,-0.046441327742208494,0.0013400693 +,, +738,-0.12668061765770539,0.001346376 +,, +739,0.010422863696011392,0.0013420184 +,, +740,-0.008482539328991864,0.0013943227 +,, +741,-0.075618367956842,0.0013821267 +,, +742,0.13291277350451214,0.0013179875 +,, +743,0.03302663678845025,0.001340097 +,, +744,-0.00807061843941647,0.0013320694 +,, +745,0.0014570416214470458,0.0014017966 +,, +746,-0.06719015366531544,0.0013962178 +,, +747,-0.026342485275465025,0.001362267 +,, +748,0.02870118604134122,0.0013533711 +,, +749,0.018908583203388042,0.001478119 +,, +750,0.011570335806804699,0.001470939 +,, +751,0.0430998215328052,0.0015264101 +,, +752,0.02332941977080876,0.0015162361 +,, +753,0.11645753525551299,0.0016780451 +,, +754,-0.05353388344035205,0.0017870836 +,, +755,-0.06740744679431504,0.0018707716 +,, +756,0.0012833569135045839,0.0019141177 +,, +757,-0.08873423599727293,0.0020022332 +,, +758,-0.0377604664931174,0.002312275 +,, +759,0.026771108659869737,0.0021617326 +,, +760,0.05314185733314906,0.0023383517 +,, +761,0.025009637191701323,0.0024080423 +,, +762,-0.08705318831416475,0.0028254958 +,, +763,0.11278736944793505,0.0028636672 +,, +764,-0.056863014082581535,0.0028971792 +,, +765,-0.02907161187737447,0.0030611062 +,, +766,0.20153020583322104,0.003123356 +,, +767,-0.08325076039374946,0.0033468038 +,, +768,0.07886968117691755,0.0034751922 +,, +769,0.09129647121539576,0.0035624946 +,, +770,0.09722903744889143,0.0035701834 +,, +771,0.023787805363326288,0.0036231496 +,, +772,-0.015561063241334768,0.0038013689 +,, +773,-0.12044318123317721,0.0038031165 +,, +774,0.17241842027150012,0.0037162348 +,, +775,0.019080589164895283,0.0038241562 +,, +776,-0.06514932912566455,0.0039064605 +,, +777,-0.017998411381847157,0.0040820898 +,, +778,-0.04281994144875552,0.003923612 +,, +779,-0.08554493548568581,0.0040517757 +,, +780,0.1179506824020903,0.0040940316 +,, +781,0.061829335430993004,0.0041222507 +,, +782,0.06773176691595609,0.0037221876 +,, +783,0.04033661833219095,0.0038733769 +,, +784,0.037653079749287346,0.003906427 +,, +785,0.00851107237021118,0.0037811347 +,, +786,-0.03661437357588906,0.0038334012 +,, +787,0.013212334592559612,0.0036224523 +,, +788,-0.02151667036788179,0.0035261575 +,, +789,-0.02253587868176188,0.003479308 +,, +790,0.024515205408233834,0.0033965383 +,, +791,-0.00672229247287999,0.0034302995 +,, +792,0.1027905755696852,0.0034377933 +,, +793,0.02836619595888991,0.0033153563 +,, +794,0.07130492164842753,0.0033206039 +,, +795,-0.08385457917526047,0.0031762372 +,, +796,-0.05334160128190778,0.0030405049 +,, +797,-0.015126256896765044,0.0029862316 +,, +798,-0.052618707019064584,0.0031312604 +,, +799,0.05867752693867298,0.0030505485 +,, +800,-0.0010650798552880366,0.0031082488 +,, +801,0.025401648357052845,0.003044238 +,, +802,0.03743159531557147,0.0029136336 +,, +803,0.043271592529466815,0.0030064166 +,, +804,-0.0039521521668689635,0.0029224097 +,, +805,-0.07584338717568552,0.0030854908 +,, +806,0.02391311921028158,0.003105039 +,, +807,0.005469758974905318,0.0030560405 +,, +808,-0.06506811369329611,0.0030277981 +,, +809,-0.08399204461261908,0.0030091149 +,, +810,0.027880587758186103,0.0031404537 +,, +811,-0.010652571923221096,0.0029760401 +,, +812,0.07367590806291484,0.00310524 +,, +813,-0.005605425735007694,0.003099827 +,, +814,-0.09205592677596197,0.0031548433 +,, +815,0.09690026425230834,0.002981928 +,, +816,-0.09085703254314693,0.0028553135 +,, +817,0.01531814561373801,0.0027719394 +,, +818,0.03646305265551639,0.0025610626 +,, +819,0.048781330273327955,0.0025459956 +,, +820,0.018287189463898776,0.0022457887 +,, +821,0.03724402416084467,0.0022471668 +,, +822,-0.04288976732489582,0.0020746323 +,, +823,0.0169384189731279,0.0017842175 +,, +824,-0.07026762205029308,0.001794372 +,, +825,0.11578045950176766,0.0017394575 +,, +826,0.017778083443944735,0.0016785773 +,, +827,0.05973440970880321,0.0015636727 +,, +828,-0.004289622469378471,0.0014647844 +,, +829,-0.14257199861500297,0.0014292076 +,, +830,0.06857199037628227,0.0013410391 +,, +831,0.00826572852679219,0.001295628 +,, +832,-0.09926205323253352,0.0012272757 +,, +833,-0.13309869097334803,0.0012152568 +,, +834,0.007466675662670629,0.0011068927 +,, +835,0.00998178041600941,0.0009882771 +,, +836,-0.01737365107296179,0.0009640165 +,, +837,0.020904856551551856,0.00096680067 +,, +838,0.0032081116796798745,0.0009593062 +,, +839,-0.0028432956163965493,0.0009659175 +,, +840,-0.015000937056931004,0.0009616882 +,, +841,0.03554063694319262,0.0009863728 +,, +842,-0.04177706259552742,0.00095545565 +,, +843,-0.11863382930996921,0.00091711024 +,, +844,0.06553158756540611,0.0009044634 +,, +845,0.03800522777965602,0.00096740795 +,, +846,-0.023438564821911593,0.0010315398 +,, +847,0.0028049464503508703,0.0010463413 +,, +848,-0.06464532002586193,0.0010367715 +,, +849,-0.007272862255780818,0.0009907639 +,, +850,-0.07737999336152176,0.0010160106 +,, +851,0.028606702421641338,0.0009677463 +,, +852,-0.024301949155094635,0.000988133 +,, +853,-0.04968963477734044,0.0009715197 +,, +854,-0.026710533511970558,0.0009843019 +,, +855,0.031457335432153954,0.00095529656 +,, +856,0.13456954913708694,0.0008970134 +,, +857,-0.006092110277482927,0.00095216464 +,, +858,-0.027258365360400053,0.00095925445 +,, +859,0.03586636117056234,0.0010169024 +,, +860,-0.0330099109187713,0.0009613419 +,, +861,0.06029447357662294,0.0010311457 +,, +862,-0.12543292670197856,0.0010693133 +,, +863,-0.08818078289607925,0.0011163289 +,, +864,0.15994002225985704,0.0011282724 +,, +865,-0.011720639947522947,0.0011724043 +,, +866,0.08481815907020351,0.0012423054 +,, +867,0.022597948808337293,0.0011758931 +,, +868,-0.010102249892205276,0.0011413585 +,, +869,0.012019244831906167,0.0011351632 +,, +870,-0.01631544349090947,0.0011961028 +,, +871,-0.03706995918942999,0.0011909097 +,, +872,-0.07852259401291437,0.0011376857 +,, +873,0.05568675239025185,0.0011203687 +,, +874,-0.10726346446032503,0.001135746 +,, +875,0.0071659925692857465,0.0010842151 +,, +876,-0.02474491188181091,0.0011084243 +,, +877,-0.015809433691786046,0.0011157264 +,, +878,0.03259110732043908,0.001135641 +,, +879,-0.023470873954683336,0.0011050447 +,, +880,0.05245073818566079,0.0010342798 +,, +881,0.0017575547595824331,0.0010770974 +,, +882,-0.058624406425755435,0.0010736532 +,, +883,0.026362079510473847,0.001052056 +,, +884,-0.08162795959716024,0.0009979216 +,, +885,-0.05550498968124623,0.0009599463 +,, +886,-0.024001062937151606,0.00092344393 +,, +887,-0.10653770566003147,0.0009016281 +,, +888,-0.03914635751119422,0.0009106365 +,, +889,-0.06748033777544812,0.00091701216 +,, +890,-0.05868468146521267,0.00095373485 +,, +891,0.052733946628317874,0.00091533596 +,, +892,-0.09497760834949905,0.00094293914 +,, +893,-0.0015837370688137203,0.0009997895 +,, +894,0.20275407061899864,0.0009882915 +,, +895,-0.017472663205335918,0.0010694165 +,, +896,0.05591310326436984,0.0010512797 +,, +897,-0.04339356592044953,0.0010777601 +,, +898,-0.02537983723124275,0.0010582496 +,, +899,-0.02491459575324226,0.0010238136 +,, +900,-0.010880938884853662,0.0010296003 +,, +901,-0.0015941635337788432,0.0010155601 +,, +902,-0.00035779939196082123,0.0009807027 +,, +903,0.00018848615716066108,0.00095560926 +,, +904,-0.0658747108544651,0.0010090296 +,, +905,-0.01809199582314716,0.0009772879 +,, +906,0.22814287874305214,0.0009443198 +,, +907,-0.008991044227905877,0.0009037809 +,, +908,0.04142049286843393,0.0009213003 +,, +909,-0.02459116165728821,0.00093527185 +,, +910,-0.0647009736880097,0.00094244396 +,, +911,0.1275284658759755,0.0009039774 +,, +912,-0.04218271833208612,0.0009187603 +,, +913,-0.04003741591660514,0.00087986497 +,, +914,0.07878192941731857,0.0008640201 +,, +915,-0.04042409504590273,0.00087483844 +,, +916,-0.08543035416968789,0.00088016654 +,, +917,-0.0007051718543386182,0.00090567954 +,, +918,0.11486710323467124,0.00090120564 +,, +919,-0.021296168035226368,0.0009400115 +,, +920,-0.06716635597656154,0.00093044824 +,, +921,0.05211093226030127,0.0009363359 +,, +922,-0.12262653246734334,0.00094092125 +,, +923,-0.049808172334564846,0.0009548993 +,, +924,0.09654576501845298,0.0009190457 +,, +925,-0.03364347772902234,0.00087832485 +,, +926,0.040611710478721454,0.00087282306 +,, +927,0.17422078599147053,0.00082784134 +,, +928,-0.0005256008445545662,0.00079670147 +,, +929,0.05778373542894436,0.0007303604 +,, +930,0.03232444794390584,0.00068764924 +,, +931,-0.028343807436264478,0.000666016 +,, +932,0.027583695112990712,0.0006311025 +,, +933,0.10593288128251314,0.00059834 +,, +934,0.0326441694483893,0.0005966687 +,, +935,0.060029597783596615,0.0005984531 +,, +936,-0.026432599340469973,0.00057811936 +,, +937,0.09728032417279932,0.0006007211 +,, +938,-0.04916227951570889,0.00060122716 +,, +939,0.08966894230686294,0.0006171138 +,, +940,-0.018742086859129092,0.0006120488 +,, +941,0.026239887191244052,0.00062549027 +,, +942,0.04707430662643859,0.0006342864 +,, +943,0.12325141558352272,0.0006736606 +,, +944,-0.04290045124419348,0.00069389667 +,, +945,0.0084569097165987,0.00071260385 +,, +946,0.01611029879519011,0.0006981415 +,, +947,0.0011407696322097913,0.000719516 +,, +948,-0.048065660094869476,0.0007945042 +,, +949,-0.10018373483236877,0.0007949167 +,, +950,-0.009294887011409854,0.00083176774 +,, +951,0.025261393770882153,0.0008178168 +,, +952,-0.04420131101102069,0.00086033036 +,, +953,-0.008502271246224533,0.00089215627 +,, +954,0.009349598250386934,0.00090236793 +,, +955,-0.011245212038513246,0.0008566807 +,, +956,-0.04106760186969443,0.000869186 +,, +957,-0.032649938477803474,0.000840875 +,, +958,-0.07746320713830476,0.0007951775 +,, +959,-0.010963717179263213,0.00078860356 +,, +960,-0.05290185638939077,0.00076531066 +,, +961,0.004013926446732485,0.0007517678 +,, +962,0.05496864496106213,0.0007130546 +,, +963,0.0451087325163764,0.000646938 +,, +964,0.0051878017214164185,0.0006376976 +,, +965,-0.008164702965184772,0.0006450809 +,, +966,-0.11637009413385235,0.00061867124 +,, +967,-0.016769889943618096,0.0006052899 +,, +968,0.05324260627420786,0.0005576364 +,, +969,0.0686887607096859,0.0005497619 +,, +970,0.041160162519328844,0.0005215871 +,, +971,0.08516565475378118,0.0005198188 +,, +972,0.017030491631714766,0.00048232466 +,, +973,0.04759732118416746,0.00047794264 +,, +974,-0.04113154107664889,0.00045661285 +,, +975,-0.04355714373579475,0.00045010308 +,, +976,-0.049021345058767235,0.0004375408 +,, +977,-0.056279828594237816,0.0004536722 +,, +978,0.03704386367629198,0.00045433608 +,, +979,-0.08204579124785988,0.000455904 +,, +980,0.05982228662881163,0.00046207328 +,, +981,0.06743945353414961,0.00046719945 +,, +982,-0.05377855159860976,0.00047198884 +,, +983,0.0396572791708807,0.0005355911 +,, +984,-0.027497993856404224,0.00055250636 +,, +985,-0.1384888079607363,0.0006090977 +,, +986,0.001991277493036285,0.00064342667 +,, +987,0.06909668615812235,0.0006457332 +,, +988,-0.023412762125699954,0.0007277812 +,, +989,-0.05516774263851635,0.0007086428 +,, +990,-0.05310031481378169,0.0007224941 +,, +991,-0.02535149627986928,0.00074280734 +,, +992,0.08227684091010164,0.000818975 +,, +993,-0.06932604038195361,0.0007800755 +,, +994,-0.1340909940149875,0.0007970805 +,, +995,0.05285590663160395,0.00074744096 +,, +996,-0.0908028180258812,0.0007762117 +,, +997,0.015973268439975107,0.00079058885 +,, +998,0.11122217290266381,0.0008190308 +,, +999,0.08342847540176943,0.0008596025 +,, diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/tb/events/events.out.tfevents.1646140823.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/tb/events/events.out.tfevents.1646140823.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..9dcac93 Binary files /dev/null and b/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/tb/events/events.out.tfevents.1646140823.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/warn.txt b/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/warn.txt new file mode 100644 index 0000000..f7e0929 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/warn.txt @@ -0,0 +1,8 @@ +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/backup.txt b/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/backup.txt new file mode 100644 index 0000000..877f0bb --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/backup.txt @@ -0,0 +1,7 @@ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.01 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 888 diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/log.txt b/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/log.txt new file mode 100644 index 0000000..8017b63 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/log.txt @@ -0,0 +1,5048 @@ +Logging to ../log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/ +log dir: ../log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/ +pkl_file: ../archive_tester/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888.pkl +checkpoint_dir: ../checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/ +results_dir: ../results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.01 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 888 +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.0275 | +--------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint 0 +--------------------------------------------------------- +| time-step | 1 | +| y_out | 0.0338 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 2 | +| y_out | 0.1 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 3 | +| y_out | -0.052 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 4 | +| y_out | 0.0202 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 5 | +| y_out | 0.0738 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 6 | +| y_out | -0.125 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 7 | +| y_out | 0.106 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 8 | +| y_out | -0.0371 | +--------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25404385 | +| time-step | 9 | +| y_out | 0.13 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21624255 | +| time-step | 10 | +| y_out | 0.0482 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18596694 | +| time-step | 11 | +| y_out | 0.0499 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1582013 | +| time-step | 12 | +| y_out | 0.0342 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13950877 | +| time-step | 13 | +| y_out | 0.0338 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13145243 | +| time-step | 14 | +| y_out | 0.0288 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.113823175 | +| time-step | 15 | +| y_out | -0.00663 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.10132376 | +| time-step | 16 | +| y_out | 0.0607 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.089000985 | +| time-step | 17 | +| y_out | 0.107 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07814823 | +| time-step | 18 | +| y_out | -0.0585 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07573148 | +| time-step | 19 | +| y_out | 0.042 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06965452 | +| time-step | 20 | +| y_out | -0.0466 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06751619 | +| time-step | 21 | +| y_out | 0.0607 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.063607566 | +| time-step | 22 | +| y_out | -0.103 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05929939 | +| time-step | 23 | +| y_out | -0.0759 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.056123357 | +| time-step | 24 | +| y_out | 0.0133 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05460178 | +| time-step | 25 | +| y_out | 0.0665 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05113139 | +| time-step | 26 | +| y_out | 0.0716 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.046399005 | +| time-step | 27 | +| y_out | 0.0257 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04336382 | +| time-step | 28 | +| y_out | -0.164 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03815507 | +| time-step | 29 | +| y_out | 0.061 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03763888 | +| time-step | 30 | +| y_out | -0.0206 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034713246 | +| time-step | 31 | +| y_out | -0.202 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033163864 | +| time-step | 32 | +| y_out | -0.044 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032462526 | +| time-step | 33 | +| y_out | 0.114 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031926543 | +| time-step | 34 | +| y_out | 0.0339 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030210812 | +| time-step | 35 | +| y_out | 0.043 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028794024 | +| time-step | 36 | +| y_out | -0.102 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027798291 | +| time-step | 37 | +| y_out | 2.42e-05 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027190115 | +| time-step | 38 | +| y_out | 0.0621 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026942408 | +| time-step | 39 | +| y_out | -0.000787 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025916442 | +| time-step | 40 | +| y_out | -0.0536 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025101284 | +| time-step | 41 | +| y_out | 0.076 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023763662 | +| time-step | 42 | +| y_out | -0.103 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02281344 | +| time-step | 43 | +| y_out | 0.0325 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.022030238 | +| time-step | 44 | +| y_out | -0.00575 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021296654 | +| time-step | 45 | +| y_out | -0.0295 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020923782 | +| time-step | 46 | +| y_out | -0.0945 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020564545 | +| time-step | 47 | +| y_out | -0.082 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01976985 | +| time-step | 48 | +| y_out | 0.0332 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.019457562 | +| time-step | 49 | +| y_out | -0.0744 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018895408 | +| time-step | 50 | +| y_out | 0.0279 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018127842 | +| time-step | 51 | +| y_out | -0.0879 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017712202 | +| time-step | 52 | +| y_out | -0.00367 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017694693 | +| time-step | 53 | +| y_out | 0.0312 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01708621 | +| time-step | 54 | +| y_out | 0.089 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.017396536 | +| time-step | 55 | +| y_out | -0.00147 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016502965 | +| time-step | 56 | +| y_out | -0.0236 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017007403 | +| time-step | 57 | +| y_out | 0.0138 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017244082 | +| time-step | 58 | +| y_out | 0.0997 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017256835 | +| time-step | 59 | +| y_out | 0.0299 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01696306 | +| time-step | 60 | +| y_out | 0.0243 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01701211 | +| time-step | 61 | +| y_out | 0.116 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.016506033 | +| time-step | 62 | +| y_out | 0.0291 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016356656 | +| time-step | 63 | +| y_out | 0.143 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016869597 | +| time-step | 64 | +| y_out | 0.0235 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016471535 | +| time-step | 65 | +| y_out | 0.0922 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01647884 | +| time-step | 66 | +| y_out | 0.0502 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.016237836 | +| time-step | 67 | +| y_out | 0.0538 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015627362 | +| time-step | 68 | +| y_out | 0.0655 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015811015 | +| time-step | 69 | +| y_out | -0.0817 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015596211 | +| time-step | 70 | +| y_out | -0.014 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01575188 | +| time-step | 71 | +| y_out | -0.127 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0160154 | +| time-step | 72 | +| y_out | 0.0578 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015327441 | +| time-step | 73 | +| y_out | -0.146 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015119232 | +| time-step | 74 | +| y_out | -0.035 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0147181805 | +| time-step | 75 | +| y_out | 0.0706 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.014494801 | +| time-step | 76 | +| y_out | 0.147 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013972449 | +| time-step | 77 | +| y_out | -0.0494 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014238426 | +| time-step | 78 | +| y_out | 0.0748 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013595769 | +| time-step | 79 | +| y_out | -0.0401 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013565647 | +| time-step | 80 | +| y_out | 0.0922 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013163874 | +| time-step | 81 | +| y_out | -0.0251 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012441501 | +| time-step | 82 | +| y_out | -0.00572 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012963027 | +| time-step | 83 | +| y_out | 0.107 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01223503 | +| time-step | 84 | +| y_out | 0.0404 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.012292897 | +| time-step | 85 | +| y_out | 0.026 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012500109 | +| time-step | 86 | +| y_out | 0.016 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012856695 | +| time-step | 87 | +| y_out | -0.00893 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012276762 | +| time-step | 88 | +| y_out | 0.000483 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011978991 | +| time-step | 89 | +| y_out | 0.0492 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0118127335 | +| time-step | 90 | +| y_out | -0.062 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.011505524 | +| time-step | 91 | +| y_out | 0.0348 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011945838 | +| time-step | 92 | +| y_out | 0.00665 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011627947 | +| time-step | 93 | +| y_out | 0.0926 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011836036 | +| time-step | 94 | +| y_out | -0.0199 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011424037 | +| time-step | 95 | +| y_out | -0.0102 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011475807 | +| time-step | 96 | +| y_out | 0.00391 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011257061 | +| time-step | 97 | +| y_out | 0.0504 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011499898 | +| time-step | 98 | +| y_out | 0.0516 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01183567 | +| time-step | 99 | +| y_out | 0.0785 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.011582458 | +| time-step | 100 | +| y_out | 0.0513 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint 100 +------------------------------------------------------------ +| perf/mse | 0.012255019 | +| time-step | 101 | +| y_out | 0.0353 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011903219 | +| time-step | 102 | +| y_out | 0.0149 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011506565 | +| time-step | 103 | +| y_out | -0.0444 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011738735 | +| time-step | 104 | +| y_out | 0.0404 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01216323 | +| time-step | 105 | +| y_out | 0.0658 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.011550268 | +| time-step | 106 | +| y_out | 0.0308 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011674861 | +| time-step | 107 | +| y_out | 0.0182 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011697022 | +| time-step | 108 | +| y_out | 0.00225 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011616561 | +| time-step | 109 | +| y_out | 0.00584 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011588188 | +| time-step | 110 | +| y_out | 0.0848 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011390748 | +| time-step | 111 | +| y_out | -0.0577 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011482997 | +| time-step | 112 | +| y_out | 0.0462 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011777064 | +| time-step | 113 | +| y_out | 0.0317 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01118183 | +| time-step | 114 | +| y_out | -0.173 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.011029539 | +| time-step | 115 | +| y_out | 0.115 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011370791 | +| time-step | 116 | +| y_out | 0.0842 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011132278 | +| time-step | 117 | +| y_out | 0.0645 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010714049 | +| time-step | 118 | +| y_out | -0.0417 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010616899 | +| time-step | 119 | +| y_out | -0.00702 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0107062645 | +| time-step | 120 | +| y_out | 0.0694 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010425675 | +| time-step | 121 | +| y_out | -0.098 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010234612 | +| time-step | 122 | +| y_out | 0.0795 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010139575 | +| time-step | 123 | +| y_out | 0.0151 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009921612 | +| time-step | 124 | +| y_out | 0.0848 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009880524 | +| time-step | 125 | +| y_out | -0.0948 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009619409 | +| time-step | 126 | +| y_out | -0.00282 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009759772 | +| time-step | 127 | +| y_out | 0.0558 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01052406 | +| time-step | 128 | +| y_out | 0.11 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010426777 | +| time-step | 129 | +| y_out | 0.0238 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01032447 | +| time-step | 130 | +| y_out | 0.062 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010187253 | +| time-step | 131 | +| y_out | -0.0471 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010301651 | +| time-step | 132 | +| y_out | 0.0148 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010122659 | +| time-step | 133 | +| y_out | 0.00518 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01052367 | +| time-step | 134 | +| y_out | 0.0627 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0105337715 | +| time-step | 135 | +| y_out | 0.0728 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.011208582 | +| time-step | 136 | +| y_out | -0.0689 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011015279 | +| time-step | 137 | +| y_out | -0.0652 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010486243 | +| time-step | 138 | +| y_out | -0.0274 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010428895 | +| time-step | 139 | +| y_out | 0.0366 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010207997 | +| time-step | 140 | +| y_out | 0.0603 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009946516 | +| time-step | 141 | +| y_out | -0.0266 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009669334 | +| time-step | 142 | +| y_out | -0.00258 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009626919 | +| time-step | 143 | +| y_out | 0.0414 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009529015 | +| time-step | 144 | +| y_out | -0.0229 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009351367 | +| time-step | 145 | +| y_out | -0.0516 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00849803 | +| time-step | 146 | +| y_out | -0.0258 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008623385 | +| time-step | 147 | +| y_out | -0.0717 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008221876 | +| time-step | 148 | +| y_out | 0.087 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007873524 | +| time-step | 149 | +| y_out | 0.0255 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007916184 | +| time-step | 150 | +| y_out | 0.0258 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007804518 | +| time-step | 151 | +| y_out | 0.0218 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008017892 | +| time-step | 152 | +| y_out | -0.0339 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007977711 | +| time-step | 153 | +| y_out | -0.00406 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007700703 | +| time-step | 154 | +| y_out | 0.0881 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007565164 | +| time-step | 155 | +| y_out | -0.0309 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007904165 | +| time-step | 156 | +| y_out | -0.0543 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007764823 | +| time-step | 157 | +| y_out | 0.00624 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007927408 | +| time-step | 158 | +| y_out | -0.0634 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007884043 | +| time-step | 159 | +| y_out | -0.0602 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007820913 | +| time-step | 160 | +| y_out | -0.0593 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007894961 | +| time-step | 161 | +| y_out | 0.0535 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007741635 | +| time-step | 162 | +| y_out | 0.0587 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0076313056 | +| time-step | 163 | +| y_out | -0.0478 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007826738 | +| time-step | 164 | +| y_out | 0.012 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0078485925 | +| time-step | 165 | +| y_out | 0.0361 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007923691 | +| time-step | 166 | +| y_out | 0.00821 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0076683476 | +| time-step | 167 | +| y_out | -0.0256 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007849395 | +| time-step | 168 | +| y_out | -0.0226 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008243648 | +| time-step | 169 | +| y_out | -0.0258 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008323584 | +| time-step | 170 | +| y_out | 0.0962 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0084346365 | +| time-step | 171 | +| y_out | -0.0559 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008533811 | +| time-step | 172 | +| y_out | 0.00247 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008782488 | +| time-step | 173 | +| y_out | -0.00381 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008873643 | +| time-step | 174 | +| y_out | 0.0387 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008888138 | +| time-step | 175 | +| y_out | 0.134 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008590636 | +| time-step | 176 | +| y_out | 0.0483 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009116266 | +| time-step | 177 | +| y_out | -0.0597 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0089461375 | +| time-step | 178 | +| y_out | -0.0661 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008508241 | +| time-step | 179 | +| y_out | 0.0103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008263703 | +| time-step | 180 | +| y_out | 0.122 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008159729 | +| time-step | 181 | +| y_out | 0.0553 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0081051495 | +| time-step | 182 | +| y_out | -0.00639 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0077546365 | +| time-step | 183 | +| y_out | -0.0359 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007629416 | +| time-step | 184 | +| y_out | 0.00915 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0075756563 | +| time-step | 185 | +| y_out | 0.00427 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0073037795 | +| time-step | 186 | +| y_out | -0.0327 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007007529 | +| time-step | 187 | +| y_out | -0.00937 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0070983833 | +| time-step | 188 | +| y_out | 0.0265 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0070726215 | +| time-step | 189 | +| y_out | -0.00807 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007085839 | +| time-step | 190 | +| y_out | 0.0366 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0070583774 | +| time-step | 191 | +| y_out | 0.0313 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0068005277 | +| time-step | 192 | +| y_out | 0.00746 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00681666 | +| time-step | 193 | +| y_out | -0.0369 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0066086957 | +| time-step | 194 | +| y_out | -0.15 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0067581646 | +| time-step | 195 | +| y_out | -0.0317 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006944844 | +| time-step | 196 | +| y_out | -0.0694 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0065717967 | +| time-step | 197 | +| y_out | 0.0104 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0062894537 | +| time-step | 198 | +| y_out | -0.0295 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0063204193 | +| time-step | 199 | +| y_out | -0.0298 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0063961274 | +| time-step | 200 | +| y_out | 0.0483 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint 200 +------------------------------------------------------------- +| perf/mse | 0.0062630577 | +| time-step | 201 | +| y_out | -0.0602 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006385171 | +| time-step | 202 | +| y_out | -0.0408 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0063078664 | +| time-step | 203 | +| y_out | -0.0162 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0063694417 | +| time-step | 204 | +| y_out | 0.0407 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0060950117 | +| time-step | 205 | +| y_out | -0.0601 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0062709255 | +| time-step | 206 | +| y_out | 0.0248 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0065209977 | +| time-step | 207 | +| y_out | 0.0886 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006340006 | +| time-step | 208 | +| y_out | -0.00118 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006474778 | +| time-step | 209 | +| y_out | -0.0274 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0063971914 | +| time-step | 210 | +| y_out | -0.0222 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006349617 | +| time-step | 211 | +| y_out | -0.0639 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0060998867 | +| time-step | 212 | +| y_out | 0.0993 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0061355657 | +| time-step | 213 | +| y_out | -0.0498 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0060756244 | +| time-step | 214 | +| y_out | 0.0155 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0062592314 | +| time-step | 215 | +| y_out | 0.0158 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005870505 | +| time-step | 216 | +| y_out | 0.139 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005837211 | +| time-step | 217 | +| y_out | -0.0708 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0057791797 | +| time-step | 218 | +| y_out | 0.031 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005591608 | +| time-step | 219 | +| y_out | -0.0693 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0054245694 | +| time-step | 220 | +| y_out | -0.0219 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0056076837 | +| time-step | 221 | +| y_out | -0.0718 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005767855 | +| time-step | 222 | +| y_out | 0.0256 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0057838922 | +| time-step | 223 | +| y_out | -0.122 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0059193918 | +| time-step | 224 | +| y_out | -0.00652 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00552589 | +| time-step | 225 | +| y_out | -0.0408 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005704405 | +| time-step | 226 | +| y_out | -0.0613 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0054674693 | +| time-step | 227 | +| y_out | 0.0815 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005680097 | +| time-step | 228 | +| y_out | -0.0496 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005847095 | +| time-step | 229 | +| y_out | 0.0999 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0061057126 | +| time-step | 230 | +| y_out | -0.0963 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006135303 | +| time-step | 231 | +| y_out | -0.0934 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006066792 | +| time-step | 232 | +| y_out | -0.0973 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005963771 | +| time-step | 233 | +| y_out | -0.0437 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005739975 | +| time-step | 234 | +| y_out | 0.0246 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005813966 | +| time-step | 235 | +| y_out | 0.0326 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00580691 | +| time-step | 236 | +| y_out | -0.00875 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005958374 | +| time-step | 237 | +| y_out | -0.00615 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0058803153 | +| time-step | 238 | +| y_out | -0.0254 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0058792084 | +| time-step | 239 | +| y_out | -0.0362 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005652588 | +| time-step | 240 | +| y_out | 0.145 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005467559 | +| time-step | 241 | +| y_out | 0.0131 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005469047 | +| time-step | 242 | +| y_out | 0.0501 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0054667136 | +| time-step | 243 | +| y_out | 0.0618 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005457503 | +| time-step | 244 | +| y_out | 0.0114 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0054744883 | +| time-step | 245 | +| y_out | 0.16 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005458428 | +| time-step | 246 | +| y_out | -0.0675 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005487296 | +| time-step | 247 | +| y_out | -0.103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005292962 | +| time-step | 248 | +| y_out | -0.0274 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0050754272 | +| time-step | 249 | +| y_out | 0.0853 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005090325 | +| time-step | 250 | +| y_out | -0.012 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0052569495 | +| time-step | 251 | +| y_out | -0.0414 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0051961266 | +| time-step | 252 | +| y_out | -0.0363 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052097486 | +| time-step | 253 | +| y_out | -0.0717 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005309787 | +| time-step | 254 | +| y_out | -0.0247 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0053571933 | +| time-step | 255 | +| y_out | -0.0646 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005246134 | +| time-step | 256 | +| y_out | 0.0245 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005201134 | +| time-step | 257 | +| y_out | 0.105 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0054008705 | +| time-step | 258 | +| y_out | -0.0326 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005316445 | +| time-step | 259 | +| y_out | -0.0932 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0055139065 | +| time-step | 260 | +| y_out | -0.14 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054254136 | +| time-step | 261 | +| y_out | -0.0657 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054273074 | +| time-step | 262 | +| y_out | -0.0242 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0055618426 | +| time-step | 263 | +| y_out | -0.0395 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054359483 | +| time-step | 264 | +| y_out | 0.0155 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0055935187 | +| time-step | 265 | +| y_out | 0.106 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005602519 | +| time-step | 266 | +| y_out | 0.0259 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005675219 | +| time-step | 267 | +| y_out | 0.0204 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005508154 | +| time-step | 268 | +| y_out | 0.0821 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0056658 | +| time-step | 269 | +| y_out | 0.0403 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005427112 | +| time-step | 270 | +| y_out | -0.00278 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005184242 | +| time-step | 271 | +| y_out | 0.00855 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0054330626 | +| time-step | 272 | +| y_out | 0.00219 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052553625 | +| time-step | 273 | +| y_out | -0.165 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005137074 | +| time-step | 274 | +| y_out | 0.0377 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0049403897 | +| time-step | 275 | +| y_out | -0.0623 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004833267 | +| time-step | 276 | +| y_out | 0.0689 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00465387 | +| time-step | 277 | +| y_out | 0.0581 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0045900894 | +| time-step | 278 | +| y_out | 0.00191 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004555408 | +| time-step | 279 | +| y_out | 0.000525 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004857788 | +| time-step | 280 | +| y_out | 0.0134 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0049341284 | +| time-step | 281 | +| y_out | -0.0934 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047065816 | +| time-step | 282 | +| y_out | 0.0681 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047200955 | +| time-step | 283 | +| y_out | 0.0741 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047404333 | +| time-step | 284 | +| y_out | 0.11 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047004186 | +| time-step | 285 | +| y_out | 0.0532 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0048402185 | +| time-step | 286 | +| y_out | 0.125 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004919482 | +| time-step | 287 | +| y_out | 0.0223 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0050935135 | +| time-step | 288 | +| y_out | -0.0939 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005063246 | +| time-step | 289 | +| y_out | 0.183 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0047773127 | +| time-step | 290 | +| y_out | 0.0312 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004832393 | +| time-step | 291 | +| y_out | 0.00446 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0047424813 | +| time-step | 292 | +| y_out | 0.0557 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047391644 | +| time-step | 293 | +| y_out | -0.0188 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004881492 | +| time-step | 294 | +| y_out | 0.0304 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00494863 | +| time-step | 295 | +| y_out | -0.0491 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0050296835 | +| time-step | 296 | +| y_out | -0.146 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0050590634 | +| time-step | 297 | +| y_out | -0.159 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004910364 | +| time-step | 298 | +| y_out | 0.0645 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0048138397 | +| time-step | 299 | +| y_out | -0.0186 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0048563695 | +| time-step | 300 | +| y_out | -0.0148 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint 300 +------------------------------------------------------------ +| perf/mse | 0.004725837 | +| time-step | 301 | +| y_out | -0.0323 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005021532 | +| time-step | 302 | +| y_out | -0.152 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005168277 | +| time-step | 303 | +| y_out | 0.0425 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005011716 | +| time-step | 304 | +| y_out | 0.0629 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004822015 | +| time-step | 305 | +| y_out | -0.0101 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004661045 | +| time-step | 306 | +| y_out | 0.036 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004567806 | +| time-step | 307 | +| y_out | 0.125 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004523878 | +| time-step | 308 | +| y_out | 0.059 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0047308295 | +| time-step | 309 | +| y_out | -0.0111 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004642966 | +| time-step | 310 | +| y_out | -0.0722 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0046033063 | +| time-step | 311 | +| y_out | 0.0516 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004354543 | +| time-step | 312 | +| y_out | -0.146 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00422345 | +| time-step | 313 | +| y_out | -0.0754 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0042403187 | +| time-step | 314 | +| y_out | 0.0868 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0046130084 | +| time-step | 315 | +| y_out | -0.0808 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0045602033 | +| time-step | 316 | +| y_out | -0.00468 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0044538863 | +| time-step | 317 | +| y_out | 0.0275 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0044705262 | +| time-step | 318 | +| y_out | -0.0286 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0042575835 | +| time-step | 319 | +| y_out | -0.0981 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004264278 | +| time-step | 320 | +| y_out | 0.0511 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0041419743 | +| time-step | 321 | +| y_out | 0.124 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004052129 | +| time-step | 322 | +| y_out | 0.0236 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0039242436 | +| time-step | 323 | +| y_out | -0.00865 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037850111 | +| time-step | 324 | +| y_out | -0.0329 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034822044 | +| time-step | 325 | +| y_out | -0.035 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035128954 | +| time-step | 326 | +| y_out | 0.0798 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034760344 | +| time-step | 327 | +| y_out | 0.0074 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003427165 | +| time-step | 328 | +| y_out | -0.0311 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0033458625 | +| time-step | 329 | +| y_out | 0.0866 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034201262 | +| time-step | 330 | +| y_out | -0.0399 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038642138 | +| time-step | 331 | +| y_out | -0.02 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00387008 | +| time-step | 332 | +| y_out | 0.0823 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003879546 | +| time-step | 333 | +| y_out | 0.0606 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003977562 | +| time-step | 334 | +| y_out | 0.027 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0041400227 | +| time-step | 335 | +| y_out | -0.0573 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041529005 | +| time-step | 336 | +| y_out | 0.0102 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0042182216 | +| time-step | 337 | +| y_out | -0.0295 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041941693 | +| time-step | 338 | +| y_out | 0.0704 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0042140465 | +| time-step | 339 | +| y_out | -0.0779 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0040386682 | +| time-step | 340 | +| y_out | 0.104 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037491308 | +| time-step | 341 | +| y_out | 0.138 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037041823 | +| time-step | 342 | +| y_out | 0.121 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037164632 | +| time-step | 343 | +| y_out | 0.07 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036125612 | +| time-step | 344 | +| y_out | -0.0978 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033701803 | +| time-step | 345 | +| y_out | -0.174 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003206561 | +| time-step | 346 | +| y_out | 0.0255 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003049308 | +| time-step | 347 | +| y_out | 0.0401 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0029211715 | +| time-step | 348 | +| y_out | -0.0165 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029971832 | +| time-step | 349 | +| y_out | -0.123 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031138198 | +| time-step | 350 | +| y_out | -0.0646 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003042331 | +| time-step | 351 | +| y_out | -0.121 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0030804093 | +| time-step | 352 | +| y_out | -0.0818 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029486802 | +| time-step | 353 | +| y_out | -0.0533 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002996923 | +| time-step | 354 | +| y_out | 0.178 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0029818472 | +| time-step | 355 | +| y_out | -0.0709 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030159433 | +| time-step | 356 | +| y_out | -0.13 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030697635 | +| time-step | 357 | +| y_out | 0.00774 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031509504 | +| time-step | 358 | +| y_out | -0.0525 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030464414 | +| time-step | 359 | +| y_out | 0.011 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028993026 | +| time-step | 360 | +| y_out | 0.0693 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028431062 | +| time-step | 361 | +| y_out | 0.0426 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002842519 | +| time-step | 362 | +| y_out | 0.0647 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003114042 | +| time-step | 363 | +| y_out | -0.00697 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0030059158 | +| time-step | 364 | +| y_out | 0.02 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031718377 | +| time-step | 365 | +| y_out | -0.0133 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032990153 | +| time-step | 366 | +| y_out | -0.014 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033004645 | +| time-step | 367 | +| y_out | -0.0538 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034388423 | +| time-step | 368 | +| y_out | 0.00901 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003431335 | +| time-step | 369 | +| y_out | -0.0664 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0035038304 | +| time-step | 370 | +| y_out | 0.0625 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003555777 | +| time-step | 371 | +| y_out | -0.0186 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0035579181 | +| time-step | 372 | +| y_out | 0.0806 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00344878 | +| time-step | 373 | +| y_out | 0.0213 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003668848 | +| time-step | 374 | +| y_out | -0.0567 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0035509455 | +| time-step | 375 | +| y_out | 0.155 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003515996 | +| time-step | 376 | +| y_out | 0.0613 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003621233 | +| time-step | 377 | +| y_out | -0.0217 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0035541516 | +| time-step | 378 | +| y_out | -0.000877 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035739723 | +| time-step | 379 | +| y_out | -0.0459 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035632234 | +| time-step | 380 | +| y_out | -0.0558 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037005625 | +| time-step | 381 | +| y_out | 0.03 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036168557 | +| time-step | 382 | +| y_out | -0.0461 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035267782 | +| time-step | 383 | +| y_out | -0.01 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003529625 | +| time-step | 384 | +| y_out | 0.0198 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0034791995 | +| time-step | 385 | +| y_out | -0.0104 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033669532 | +| time-step | 386 | +| y_out | 0.133 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033413756 | +| time-step | 387 | +| y_out | -0.0287 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032457628 | +| time-step | 388 | +| y_out | -0.00364 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00326313 | +| time-step | 389 | +| y_out | -0.0797 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032733716 | +| time-step | 390 | +| y_out | -0.125 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031835102 | +| time-step | 391 | +| y_out | 0.0131 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032087662 | +| time-step | 392 | +| y_out | -0.0222 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031948138 | +| time-step | 393 | +| y_out | 0.16 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003007216 | +| time-step | 394 | +| y_out | 0.0122 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0029921124 | +| time-step | 395 | +| y_out | 0.0419 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003020805 | +| time-step | 396 | +| y_out | 0.0635 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0028801016 | +| time-step | 397 | +| y_out | 0.0965 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029464185 | +| time-step | 398 | +| y_out | 0.0273 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028379273 | +| time-step | 399 | +| y_out | -0.0995 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027249907 | +| time-step | 400 | +| y_out | 0.12 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint 400 +------------------------------------------------------------ +| perf/mse | 0.002695386 | +| time-step | 401 | +| y_out | 0.0628 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0026794672 | +| time-step | 402 | +| y_out | -0.0479 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002735395 | +| time-step | 403 | +| y_out | 0.0632 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0027150828 | +| time-step | 404 | +| y_out | 0.0112 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028524597 | +| time-step | 405 | +| y_out | -0.0853 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027905018 | +| time-step | 406 | +| y_out | -0.034 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002882365 | +| time-step | 407 | +| y_out | 0.0623 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0027978588 | +| time-step | 408 | +| y_out | 0.0921 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028928067 | +| time-step | 409 | +| y_out | -0.109 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029323287 | +| time-step | 410 | +| y_out | -0.145 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003114619 | +| time-step | 411 | +| y_out | 0.0572 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0032254017 | +| time-step | 412 | +| y_out | 0.0905 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031854133 | +| time-step | 413 | +| y_out | 0.0543 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033857622 | +| time-step | 414 | +| y_out | -0.0221 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003287709 | +| time-step | 415 | +| y_out | -0.107 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0032431737 | +| time-step | 416 | +| y_out | 0.0428 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033213347 | +| time-step | 417 | +| y_out | -0.0223 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034633086 | +| time-step | 418 | +| y_out | 0.00784 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003504065 | +| time-step | 419 | +| y_out | 0.0682 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036496674 | +| time-step | 420 | +| y_out | 0.0874 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003693853 | +| time-step | 421 | +| y_out | -0.075 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003573691 | +| time-step | 422 | +| y_out | -0.0513 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0037425898 | +| time-step | 423 | +| y_out | 0.0339 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038778633 | +| time-step | 424 | +| y_out | 0.0939 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038061433 | +| time-step | 425 | +| y_out | 0.0731 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004416661 | +| time-step | 426 | +| y_out | -0.0837 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004411501 | +| time-step | 427 | +| y_out | -0.00185 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0043706344 | +| time-step | 428 | +| y_out | 0.0527 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047676335 | +| time-step | 429 | +| y_out | -0.0106 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004815673 | +| time-step | 430 | +| y_out | -0.00814 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0045618555 | +| time-step | 431 | +| y_out | 0.0389 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0048903003 | +| time-step | 432 | +| y_out | 0.0491 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0048577874 | +| time-step | 433 | +| y_out | 0.00271 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004568345 | +| time-step | 434 | +| y_out | 0.0816 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0047095087 | +| time-step | 435 | +| y_out | 0.0406 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0043004802 | +| time-step | 436 | +| y_out | 0.0133 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004158512 | +| time-step | 437 | +| y_out | 0.0795 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004246843 | +| time-step | 438 | +| y_out | -0.0241 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003936456 | +| time-step | 439 | +| y_out | 0.037 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0038993838 | +| time-step | 440 | +| y_out | -0.0175 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038526668 | +| time-step | 441 | +| y_out | 0.21 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035223279 | +| time-step | 442 | +| y_out | 0.0588 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034675982 | +| time-step | 443 | +| y_out | -0.105 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003449841 | +| time-step | 444 | +| y_out | 0.0783 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0033970077 | +| time-step | 445 | +| y_out | -0.0795 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032083844 | +| time-step | 446 | +| y_out | 0.0126 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032191083 | +| time-step | 447 | +| y_out | 0.0568 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030373132 | +| time-step | 448 | +| y_out | 0.124 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002832634 | +| time-step | 449 | +| y_out | -0.0171 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0027092178 | +| time-step | 450 | +| y_out | 0.0421 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027993654 | +| time-step | 451 | +| y_out | -0.0299 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028605787 | +| time-step | 452 | +| y_out | -0.113 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026752297 | +| time-step | 453 | +| y_out | 0.0422 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027000871 | +| time-step | 454 | +| y_out | -0.0146 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025785663 | +| time-step | 455 | +| y_out | -0.0123 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024993517 | +| time-step | 456 | +| y_out | -0.0135 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002478785 | +| time-step | 457 | +| y_out | -0.0189 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0024777818 | +| time-step | 458 | +| y_out | 0.125 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002458927 | +| time-step | 459 | +| y_out | -0.0421 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0023675757 | +| time-step | 460 | +| y_out | 0.0541 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022650189 | +| time-step | 461 | +| y_out | -0.224 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021926733 | +| time-step | 462 | +| y_out | 0.0484 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022442187 | +| time-step | 463 | +| y_out | 0.0485 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020998898 | +| time-step | 464 | +| y_out | 0.0995 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021024528 | +| time-step | 465 | +| y_out | 0.145 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020906813 | +| time-step | 466 | +| y_out | 0.0149 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020193045 | +| time-step | 467 | +| y_out | 0.0683 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019543953 | +| time-step | 468 | +| y_out | 0.0471 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018932378 | +| time-step | 469 | +| y_out | -0.0139 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019138686 | +| time-step | 470 | +| y_out | -0.0565 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019028299 | +| time-step | 471 | +| y_out | -0.0338 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018164773 | +| time-step | 472 | +| y_out | -0.0366 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017435333 | +| time-step | 473 | +| y_out | 0.0474 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018003061 | +| time-step | 474 | +| y_out | 0.0802 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017218882 | +| time-step | 475 | +| y_out | -0.0423 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001684279 | +| time-step | 476 | +| y_out | 0.0103 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0016763661 | +| time-step | 477 | +| y_out | -0.0584 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017205063 | +| time-step | 478 | +| y_out | 0.0925 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017603608 | +| time-step | 479 | +| y_out | 0.0448 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017245576 | +| time-step | 480 | +| y_out | -0.0666 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016624087 | +| time-step | 481 | +| y_out | -0.0149 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016428211 | +| time-step | 482 | +| y_out | -0.0408 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017297517 | +| time-step | 483 | +| y_out | -0.147 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016518139 | +| time-step | 484 | +| y_out | -0.0888 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016908478 | +| time-step | 485 | +| y_out | 0.014 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017396715 | +| time-step | 486 | +| y_out | 0.0581 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017373674 | +| time-step | 487 | +| y_out | 0.088 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016673455 | +| time-step | 488 | +| y_out | 0.0384 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00158371 | +| time-step | 489 | +| y_out | -0.0303 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015815301 | +| time-step | 490 | +| y_out | -0.091 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016661342 | +| time-step | 491 | +| y_out | 0.122 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016753192 | +| time-step | 492 | +| y_out | -0.0255 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016785947 | +| time-step | 493 | +| y_out | -0.0312 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001772495 | +| time-step | 494 | +| y_out | -0.225 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0017736319 | +| time-step | 495 | +| y_out | -0.0133 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018837117 | +| time-step | 496 | +| y_out | 0.116 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018875517 | +| time-step | 497 | +| y_out | -0.108 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001921845 | +| time-step | 498 | +| y_out | 0.00924 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002022256 | +| time-step | 499 | +| y_out | -0.0665 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0020047543 | +| time-step | 500 | +| y_out | -0.0365 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint 500 +------------------------------------------------------------- +| perf/mse | 0.0020039312 | +| time-step | 501 | +| y_out | -0.0838 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020370446 | +| time-step | 502 | +| y_out | 0.0414 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019321634 | +| time-step | 503 | +| y_out | 0.0964 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019290233 | +| time-step | 504 | +| y_out | 0.0724 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019330776 | +| time-step | 505 | +| y_out | 0.0232 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017912758 | +| time-step | 506 | +| y_out | -0.0263 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017951546 | +| time-step | 507 | +| y_out | 0.0266 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017879081 | +| time-step | 508 | +| y_out | 0.0096 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017211379 | +| time-step | 509 | +| y_out | 0.0371 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017111085 | +| time-step | 510 | +| y_out | 0.0782 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015988341 | +| time-step | 511 | +| y_out | 0.052 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015991902 | +| time-step | 512 | +| y_out | 0.0293 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001596882 | +| time-step | 513 | +| y_out | 0.0149 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0014749819 | +| time-step | 514 | +| y_out | 0.118 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014614912 | +| time-step | 515 | +| y_out | -0.12 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014667718 | +| time-step | 516 | +| y_out | 0.0134 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014564025 | +| time-step | 517 | +| y_out | 0.158 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015266333 | +| time-step | 518 | +| y_out | -0.0158 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015924074 | +| time-step | 519 | +| y_out | 0.0606 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016178818 | +| time-step | 520 | +| y_out | -0.193 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016894946 | +| time-step | 521 | +| y_out | 0.153 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016992416 | +| time-step | 522 | +| y_out | -0.0412 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001764079 | +| time-step | 523 | +| y_out | 0.0229 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.001823039 | +| time-step | 524 | +| y_out | 0.0509 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0018382244 | +| time-step | 525 | +| y_out | 0.132 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018616552 | +| time-step | 526 | +| y_out | 0.0788 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018887825 | +| time-step | 527 | +| y_out | 0.0177 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001908743 | +| time-step | 528 | +| y_out | -0.156 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0019206364 | +| time-step | 529 | +| y_out | -0.0269 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019301809 | +| time-step | 530 | +| y_out | -0.0361 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019566207 | +| time-step | 531 | +| y_out | -0.112 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001962641 | +| time-step | 532 | +| y_out | 0.0279 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0019991086 | +| time-step | 533 | +| y_out | 0.0202 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019544857 | +| time-step | 534 | +| y_out | -0.000581 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002035989 | +| time-step | 535 | +| y_out | -0.0285 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0021131162 | +| time-step | 536 | +| y_out | 0.157 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021001971 | +| time-step | 537 | +| y_out | 0.0517 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020319205 | +| time-step | 538 | +| y_out | 0.0519 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019359395 | +| time-step | 539 | +| y_out | 0.0454 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019430589 | +| time-step | 540 | +| y_out | 0.107 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019210335 | +| time-step | 541 | +| y_out | -0.0549 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001963705 | +| time-step | 542 | +| y_out | -0.0338 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0018713437 | +| time-step | 543 | +| y_out | -0.0635 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002005464 | +| time-step | 544 | +| y_out | 0.0968 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0018908065 | +| time-step | 545 | +| y_out | -0.0914 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019246961 | +| time-step | 546 | +| y_out | 0.0598 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019107908 | +| time-step | 547 | +| y_out | 0.0862 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018855829 | +| time-step | 548 | +| y_out | 0.0244 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001898213 | +| time-step | 549 | +| y_out | -0.0861 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.001863506 | +| time-step | 550 | +| y_out | -0.0447 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0018874655 | +| time-step | 551 | +| y_out | 0.0184 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018460691 | +| time-step | 552 | +| y_out | -0.0198 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019216121 | +| time-step | 553 | +| y_out | 0.000665 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018543961 | +| time-step | 554 | +| y_out | 0.0464 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018949676 | +| time-step | 555 | +| y_out | 0.0697 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018328143 | +| time-step | 556 | +| y_out | -0.0769 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019074312 | +| time-step | 557 | +| y_out | 0.0408 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019691791 | +| time-step | 558 | +| y_out | -0.068 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020057554 | +| time-step | 559 | +| y_out | 0.0929 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020674686 | +| time-step | 560 | +| y_out | -0.114 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020839528 | +| time-step | 561 | +| y_out | -0.0213 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021000248 | +| time-step | 562 | +| y_out | -0.188 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020321535 | +| time-step | 563 | +| y_out | -0.0131 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020988125 | +| time-step | 564 | +| y_out | -0.147 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021145795 | +| time-step | 565 | +| y_out | 0.177 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002098894 | +| time-step | 566 | +| y_out | 0.0247 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0020550906 | +| time-step | 567 | +| y_out | -0.00537 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002026525 | +| time-step | 568 | +| y_out | 0.00804 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002051998 | +| time-step | 569 | +| y_out | -0.0161 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0019867157 | +| time-step | 570 | +| y_out | 0.0464 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019181123 | +| time-step | 571 | +| y_out | -0.084 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018791903 | +| time-step | 572 | +| y_out | -0.137 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001876292 | +| time-step | 573 | +| y_out | 0.00258 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0018547786 | +| time-step | 574 | +| y_out | 0.0532 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018406834 | +| time-step | 575 | +| y_out | 0.0369 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001769655 | +| time-step | 576 | +| y_out | -0.0605 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0018028232 | +| time-step | 577 | +| y_out | -0.0378 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017970685 | +| time-step | 578 | +| y_out | -0.000645 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001787435 | +| time-step | 579 | +| y_out | 0.0332 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0017943239 | +| time-step | 580 | +| y_out | -0.0839 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017846429 | +| time-step | 581 | +| y_out | 0.0925 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017564133 | +| time-step | 582 | +| y_out | 0.0828 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017647475 | +| time-step | 583 | +| y_out | 0.000887 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016614299 | +| time-step | 584 | +| y_out | -0.0216 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016063887 | +| time-step | 585 | +| y_out | -0.0399 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016128639 | +| time-step | 586 | +| y_out | -0.00623 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014955291 | +| time-step | 587 | +| y_out | -0.0145 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014464997 | +| time-step | 588 | +| y_out | 0.0105 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001398869 | +| time-step | 589 | +| y_out | 0.0775 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0013778738 | +| time-step | 590 | +| y_out | -0.121 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013745308 | +| time-step | 591 | +| y_out | 0.0235 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013672747 | +| time-step | 592 | +| y_out | -0.0151 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013323801 | +| time-step | 593 | +| y_out | -0.0338 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013053135 | +| time-step | 594 | +| y_out | -0.12 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012961403 | +| time-step | 595 | +| y_out | 0.0696 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013024146 | +| time-step | 596 | +| y_out | -0.0881 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013250818 | +| time-step | 597 | +| y_out | 0.0555 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013150477 | +| time-step | 598 | +| y_out | -0.0227 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012520016 | +| time-step | 599 | +| y_out | -0.0145 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012569686 | +| time-step | 600 | +| y_out | 0.114 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint 600 +------------------------------------------------------------- +| perf/mse | 0.0012697636 | +| time-step | 601 | +| y_out | 0.131 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013004772 | +| time-step | 602 | +| y_out | 0.0133 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013117633 | +| time-step | 603 | +| y_out | -0.0552 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013281712 | +| time-step | 604 | +| y_out | -0.0665 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014254451 | +| time-step | 605 | +| y_out | 0.00538 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014005085 | +| time-step | 606 | +| y_out | 0.00538 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013961944 | +| time-step | 607 | +| y_out | 0.0756 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014525477 | +| time-step | 608 | +| y_out | -0.0335 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001519191 | +| time-step | 609 | +| y_out | 0.0427 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015447239 | +| time-step | 610 | +| y_out | 0.00601 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014677106 | +| time-step | 611 | +| y_out | 0.00625 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013843477 | +| time-step | 612 | +| y_out | 0.219 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013700541 | +| time-step | 613 | +| y_out | -0.11 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013428393 | +| time-step | 614 | +| y_out | -0.00335 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012454236 | +| time-step | 615 | +| y_out | 0.0543 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012533384 | +| time-step | 616 | +| y_out | -0.107 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012849139 | +| time-step | 617 | +| y_out | -0.0295 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012527828 | +| time-step | 618 | +| y_out | -0.0533 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012444494 | +| time-step | 619 | +| y_out | -0.0649 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012695559 | +| time-step | 620 | +| y_out | -0.0353 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013112181 | +| time-step | 621 | +| y_out | 0.0668 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013514087 | +| time-step | 622 | +| y_out | -0.158 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013635417 | +| time-step | 623 | +| y_out | -0.00632 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014409134 | +| time-step | 624 | +| y_out | -0.1 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014583239 | +| time-step | 625 | +| y_out | 0.0313 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015712464 | +| time-step | 626 | +| y_out | 0.0669 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015128684 | +| time-step | 627 | +| y_out | 0.0941 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015506728 | +| time-step | 628 | +| y_out | 0.0387 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016227548 | +| time-step | 629 | +| y_out | -0.033 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001630237 | +| time-step | 630 | +| y_out | -0.024 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0016448429 | +| time-step | 631 | +| y_out | 0.00958 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015883439 | +| time-step | 632 | +| y_out | -0.0457 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016770326 | +| time-step | 633 | +| y_out | -0.0198 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018076223 | +| time-step | 634 | +| y_out | -0.0647 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018845929 | +| time-step | 635 | +| y_out | -0.0401 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018737372 | +| time-step | 636 | +| y_out | 0.0409 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0019149439 | +| time-step | 637 | +| y_out | -0.0455 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001947668 | +| time-step | 638 | +| y_out | -0.0284 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0019284387 | +| time-step | 639 | +| y_out | -0.0589 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018166339 | +| time-step | 640 | +| y_out | 0.0632 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017884426 | +| time-step | 641 | +| y_out | 0.103 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0018237059 | +| time-step | 642 | +| y_out | -0.0126 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017315864 | +| time-step | 643 | +| y_out | 0.0214 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015924254 | +| time-step | 644 | +| y_out | 0.105 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014983196 | +| time-step | 645 | +| y_out | 0.0114 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014402111 | +| time-step | 646 | +| y_out | 0.0177 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014410474 | +| time-step | 647 | +| y_out | 0.0828 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00134639 | +| time-step | 648 | +| y_out | -0.0204 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013404057 | +| time-step | 649 | +| y_out | -0.0327 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014057737 | +| time-step | 650 | +| y_out | 0.0651 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014291888 | +| time-step | 651 | +| y_out | -0.08 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014712964 | +| time-step | 652 | +| y_out | -0.0995 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014658961 | +| time-step | 653 | +| y_out | -0.115 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014968063 | +| time-step | 654 | +| y_out | -0.0168 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015456323 | +| time-step | 655 | +| y_out | 0.0626 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015468011 | +| time-step | 656 | +| y_out | 0.0727 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015656151 | +| time-step | 657 | +| y_out | 0.108 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015823657 | +| time-step | 658 | +| y_out | 0.0207 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015337823 | +| time-step | 659 | +| y_out | -0.0716 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016243138 | +| time-step | 660 | +| y_out | -0.0481 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001617544 | +| time-step | 661 | +| y_out | -0.0941 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0016212013 | +| time-step | 662 | +| y_out | 0.0265 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016805325 | +| time-step | 663 | +| y_out | -0.0915 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015839137 | +| time-step | 664 | +| y_out | -0.0857 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015407805 | +| time-step | 665 | +| y_out | 0.0973 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015286522 | +| time-step | 666 | +| y_out | -0.068 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015011401 | +| time-step | 667 | +| y_out | -0.00557 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015630085 | +| time-step | 668 | +| y_out | 0.0137 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015728811 | +| time-step | 669 | +| y_out | 0.047 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015028403 | +| time-step | 670 | +| y_out | -0.0897 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001527854 | +| time-step | 671 | +| y_out | 0.14 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0014969496 | +| time-step | 672 | +| y_out | 0.0075 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001485966 | +| time-step | 673 | +| y_out | 0.0496 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015473317 | +| time-step | 674 | +| y_out | -0.112 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015247725 | +| time-step | 675 | +| y_out | 0.0465 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016368071 | +| time-step | 676 | +| y_out | -0.0682 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016484316 | +| time-step | 677 | +| y_out | -0.0873 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016139641 | +| time-step | 678 | +| y_out | 0.0715 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016643817 | +| time-step | 679 | +| y_out | 0.0785 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016313422 | +| time-step | 680 | +| y_out | -0.0264 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016340213 | +| time-step | 681 | +| y_out | -0.0207 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016779233 | +| time-step | 682 | +| y_out | 0.0018 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016093779 | +| time-step | 683 | +| y_out | -0.0877 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015863193 | +| time-step | 684 | +| y_out | -0.0309 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016307397 | +| time-step | 685 | +| y_out | -0.0555 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015177442 | +| time-step | 686 | +| y_out | -0.209 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015409404 | +| time-step | 687 | +| y_out | 0.0629 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016464142 | +| time-step | 688 | +| y_out | 0.00828 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015846018 | +| time-step | 689 | +| y_out | 0.078 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015498542 | +| time-step | 690 | +| y_out | 0.022 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016153401 | +| time-step | 691 | +| y_out | 0.0494 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016121231 | +| time-step | 692 | +| y_out | -0.0459 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016613256 | +| time-step | 693 | +| y_out | 0.00521 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016914855 | +| time-step | 694 | +| y_out | 0.0997 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016825378 | +| time-step | 695 | +| y_out | -0.013 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001616143 | +| time-step | 696 | +| y_out | 0.0364 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015601993 | +| time-step | 697 | +| y_out | 0.0678 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014514831 | +| time-step | 698 | +| y_out | -0.0304 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001539682 | +| time-step | 699 | +| y_out | 0.0157 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0016030623 | +| time-step | 700 | +| y_out | 0.0458 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint 700 +------------------------------------------------------------- +| perf/mse | 0.0014816022 | +| time-step | 701 | +| y_out | -0.0224 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014149598 | +| time-step | 702 | +| y_out | -0.00393 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014740886 | +| time-step | 703 | +| y_out | -0.0477 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014727968 | +| time-step | 704 | +| y_out | 0.047 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014626773 | +| time-step | 705 | +| y_out | -0.0842 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014940612 | +| time-step | 706 | +| y_out | -0.0647 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015993789 | +| time-step | 707 | +| y_out | -0.0351 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015763196 | +| time-step | 708 | +| y_out | -0.0131 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015403478 | +| time-step | 709 | +| y_out | 0.0091 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014987963 | +| time-step | 710 | +| y_out | 0.00544 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015496066 | +| time-step | 711 | +| y_out | 0.00898 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016412217 | +| time-step | 712 | +| y_out | -0.0955 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016250139 | +| time-step | 713 | +| y_out | -0.0102 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015875548 | +| time-step | 714 | +| y_out | -0.143 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016020648 | +| time-step | 715 | +| y_out | -0.145 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016212922 | +| time-step | 716 | +| y_out | 0.0269 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016419597 | +| time-step | 717 | +| y_out | -0.0319 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016763052 | +| time-step | 718 | +| y_out | -0.0583 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016095603 | +| time-step | 719 | +| y_out | -0.0364 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016297493 | +| time-step | 720 | +| y_out | -0.0857 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016001847 | +| time-step | 721 | +| y_out | 0.11 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015412235 | +| time-step | 722 | +| y_out | -0.00827 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001488206 | +| time-step | 723 | +| y_out | -0.102 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0014943511 | +| time-step | 724 | +| y_out | -0.0631 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015017873 | +| time-step | 725 | +| y_out | 0.185 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015227173 | +| time-step | 726 | +| y_out | 0.073 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013941253 | +| time-step | 727 | +| y_out | -0.0833 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013641053 | +| time-step | 728 | +| y_out | 0.0851 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013759707 | +| time-step | 729 | +| y_out | -0.00561 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013534677 | +| time-step | 730 | +| y_out | 0.168 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013629955 | +| time-step | 731 | +| y_out | 0.21 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013518177 | +| time-step | 732 | +| y_out | 0.0283 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012926044 | +| time-step | 733 | +| y_out | 0.00764 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012653987 | +| time-step | 734 | +| y_out | 0.0776 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012558422 | +| time-step | 735 | +| y_out | 0.116 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012732265 | +| time-step | 736 | +| y_out | -0.147 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012746044 | +| time-step | 737 | +| y_out | 0.0567 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001308241 | +| time-step | 738 | +| y_out | 0.027 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0013368338 | +| time-step | 739 | +| y_out | -0.0568 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013069513 | +| time-step | 740 | +| y_out | 0.0291 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013355837 | +| time-step | 741 | +| y_out | 0.0242 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013662466 | +| time-step | 742 | +| y_out | -0.0933 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013604152 | +| time-step | 743 | +| y_out | -0.0573 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013837991 | +| time-step | 744 | +| y_out | -0.117 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013333956 | +| time-step | 745 | +| y_out | -0.0616 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013569245 | +| time-step | 746 | +| y_out | -0.0717 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014491847 | +| time-step | 747 | +| y_out | -0.0929 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014151782 | +| time-step | 748 | +| y_out | 0.0171 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013548705 | +| time-step | 749 | +| y_out | 0.0459 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014152452 | +| time-step | 750 | +| y_out | 0.00297 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013835679 | +| time-step | 751 | +| y_out | 0.0711 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014039897 | +| time-step | 752 | +| y_out | 0.0382 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014107164 | +| time-step | 753 | +| y_out | 0.115 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013971764 | +| time-step | 754 | +| y_out | -0.107 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014266205 | +| time-step | 755 | +| y_out | -0.0338 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013308247 | +| time-step | 756 | +| y_out | -0.0292 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012277218 | +| time-step | 757 | +| y_out | 0.0919 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012604803 | +| time-step | 758 | +| y_out | 0.0295 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012660809 | +| time-step | 759 | +| y_out | 0.0571 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012378447 | +| time-step | 760 | +| y_out | 0.0135 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012316607 | +| time-step | 761 | +| y_out | -0.0165 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011885753 | +| time-step | 762 | +| y_out | 0.0233 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012399842 | +| time-step | 763 | +| y_out | 0.0698 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012556204 | +| time-step | 764 | +| y_out | -0.0439 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012823503 | +| time-step | 765 | +| y_out | 0.0399 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013519218 | +| time-step | 766 | +| y_out | 0.0114 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013685614 | +| time-step | 767 | +| y_out | 0.0481 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014297662 | +| time-step | 768 | +| y_out | 0.145 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015234398 | +| time-step | 769 | +| y_out | 0.0108 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001632954 | +| time-step | 770 | +| y_out | 0.0683 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0016493459 | +| time-step | 771 | +| y_out | 0.0318 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016499363 | +| time-step | 772 | +| y_out | -0.0183 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016605736 | +| time-step | 773 | +| y_out | -0.0147 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016189611 | +| time-step | 774 | +| y_out | 0.0358 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016293947 | +| time-step | 775 | +| y_out | -0.11 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016620125 | +| time-step | 776 | +| y_out | -0.0125 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001639788 | +| time-step | 777 | +| y_out | -0.00572 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015269461 | +| time-step | 778 | +| y_out | 0.0277 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015961269 | +| time-step | 779 | +| y_out | 0.0441 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001488887 | +| time-step | 780 | +| y_out | -0.0428 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.001520644 | +| time-step | 781 | +| y_out | 0.0205 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015393305 | +| time-step | 782 | +| y_out | 0.00329 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001533292 | +| time-step | 783 | +| y_out | -0.033 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015550258 | +| time-step | 784 | +| y_out | 0.0859 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001564206 | +| time-step | 785 | +| y_out | 0.0473 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015619909 | +| time-step | 786 | +| y_out | 0.0597 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016349365 | +| time-step | 787 | +| y_out | 0.00654 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016121648 | +| time-step | 788 | +| y_out | 0.00609 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015286787 | +| time-step | 789 | +| y_out | -0.0741 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015791589 | +| time-step | 790 | +| y_out | -0.0774 | +------------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0015862 | +| time-step | 791 | +| y_out | -0.0318 | +---------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016430316 | +| time-step | 792 | +| y_out | 0.0496 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016612026 | +| time-step | 793 | +| y_out | -0.155 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001705773 | +| time-step | 794 | +| y_out | -0.0302 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0017095857 | +| time-step | 795 | +| y_out | -0.0635 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016576644 | +| time-step | 796 | +| y_out | -0.085 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015880729 | +| time-step | 797 | +| y_out | 0.132 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001561817 | +| time-step | 798 | +| y_out | -0.00564 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0014963356 | +| time-step | 799 | +| y_out | 0.0217 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013792056 | +| time-step | 800 | +| y_out | 0.047 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint 800 +------------------------------------------------------------- +| perf/mse | 0.0013139077 | +| time-step | 801 | +| y_out | -0.0566 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012064158 | +| time-step | 802 | +| y_out | -0.0814 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011227394 | +| time-step | 803 | +| y_out | 0.0232 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010652235 | +| time-step | 804 | +| y_out | -0.0839 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010063705 | +| time-step | 805 | +| y_out | -0.0185 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009313339 | +| time-step | 806 | +| y_out | 0.0202 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009764189 | +| time-step | 807 | +| y_out | 0.0175 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010051323 | +| time-step | 808 | +| y_out | -0.0374 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009578525 | +| time-step | 809 | +| y_out | -0.0142 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009976508 | +| time-step | 810 | +| y_out | 0.0548 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009936997 | +| time-step | 811 | +| y_out | -0.0721 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009953096 | +| time-step | 812 | +| y_out | 0.0312 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009886217 | +| time-step | 813 | +| y_out | -0.0756 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009773261 | +| time-step | 814 | +| y_out | -0.0122 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009670124 | +| time-step | 815 | +| y_out | 0.031 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00096423505 | +| time-step | 816 | +| y_out | -0.0113 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00092683884 | +| time-step | 817 | +| y_out | -0.0432 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009833213 | +| time-step | 818 | +| y_out | 0.0318 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009936083 | +| time-step | 819 | +| y_out | -0.00974 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009949177 | +| time-step | 820 | +| y_out | -0.0265 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010193815 | +| time-step | 821 | +| y_out | -0.0332 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010876535 | +| time-step | 822 | +| y_out | -0.00756 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011380808 | +| time-step | 823 | +| y_out | 0.0223 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012768683 | +| time-step | 824 | +| y_out | -0.0816 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012991218 | +| time-step | 825 | +| y_out | -0.057 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001354258 | +| time-step | 826 | +| y_out | -0.0178 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015106251 | +| time-step | 827 | +| y_out | -0.022 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014538752 | +| time-step | 828 | +| y_out | 0.00573 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016875062 | +| time-step | 829 | +| y_out | 0.04 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016941025 | +| time-step | 830 | +| y_out | -0.0178 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017291667 | +| time-step | 831 | +| y_out | 0.00744 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017540681 | +| time-step | 832 | +| y_out | 0.0129 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001710535 | +| time-step | 833 | +| y_out | 0.0229 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0017356438 | +| time-step | 834 | +| y_out | -0.0378 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017026818 | +| time-step | 835 | +| y_out | 0.0315 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017175585 | +| time-step | 836 | +| y_out | 0.0264 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017254393 | +| time-step | 837 | +| y_out | -0.0518 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017319337 | +| time-step | 838 | +| y_out | 0.022 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016571712 | +| time-step | 839 | +| y_out | 0.0864 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016579969 | +| time-step | 840 | +| y_out | -0.0442 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016339527 | +| time-step | 841 | +| y_out | 0.0989 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001519721 | +| time-step | 842 | +| y_out | -0.0865 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015197153 | +| time-step | 843 | +| y_out | -0.0578 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001353838 | +| time-step | 844 | +| y_out | 0.108 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0013635682 | +| time-step | 845 | +| y_out | -0.0741 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013530097 | +| time-step | 846 | +| y_out | 0.033 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012082167 | +| time-step | 847 | +| y_out | 0.148 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011938962 | +| time-step | 848 | +| y_out | -0.149 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010359393 | +| time-step | 849 | +| y_out | 0.0301 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010175499 | +| time-step | 850 | +| y_out | -0.00607 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00094430224 | +| time-step | 851 | +| y_out | 0.0504 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00095826306 | +| time-step | 852 | +| y_out | 0.00774 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000947598 | +| time-step | 853 | +| y_out | 0.0141 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.00093136076 | +| time-step | 854 | +| y_out | -0.0472 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00094816927 | +| time-step | 855 | +| y_out | 0.0527 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00090709666 | +| time-step | 856 | +| y_out | 0.0105 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00089000363 | +| time-step | 857 | +| y_out | 0.0963 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008932337 | +| time-step | 858 | +| y_out | -0.0218 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008874565 | +| time-step | 859 | +| y_out | 0.048 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008836418 | +| time-step | 860 | +| y_out | 0.0405 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009614425 | +| time-step | 861 | +| y_out | 0.0649 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010424951 | +| time-step | 862 | +| y_out | -0.024 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010786236 | +| time-step | 863 | +| y_out | 0.00693 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010896754 | +| time-step | 864 | +| y_out | 0.0091 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011004236 | +| time-step | 865 | +| y_out | 0.0925 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010793271 | +| time-step | 866 | +| y_out | -0.0775 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001067426 | +| time-step | 867 | +| y_out | -0.124 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0011082778 | +| time-step | 868 | +| y_out | 0.0417 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011463218 | +| time-step | 869 | +| y_out | -0.0864 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011629704 | +| time-step | 870 | +| y_out | 0.0723 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011140731 | +| time-step | 871 | +| y_out | -0.0334 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011147743 | +| time-step | 872 | +| y_out | 0.0261 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011119181 | +| time-step | 873 | +| y_out | -0.0238 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012028043 | +| time-step | 874 | +| y_out | -0.0195 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012490407 | +| time-step | 875 | +| y_out | 0.0218 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001245074 | +| time-step | 876 | +| y_out | -0.047 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0014086334 | +| time-step | 877 | +| y_out | 0.0729 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013753776 | +| time-step | 878 | +| y_out | 0.0964 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014156981 | +| time-step | 879 | +| y_out | -0.0751 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014426743 | +| time-step | 880 | +| y_out | 0.0207 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014448159 | +| time-step | 881 | +| y_out | 0.0422 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001494928 | +| time-step | 882 | +| y_out | -0.0618 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0015137955 | +| time-step | 883 | +| y_out | 0.00511 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015403086 | +| time-step | 884 | +| y_out | 0.0583 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014997727 | +| time-step | 885 | +| y_out | 0.0729 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015864294 | +| time-step | 886 | +| y_out | -0.0336 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001590246 | +| time-step | 887 | +| y_out | 0.025 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.001572282 | +| time-step | 888 | +| y_out | 0.143 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0016519555 | +| time-step | 889 | +| y_out | -0.0502 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016490292 | +| time-step | 890 | +| y_out | -0.0126 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017483182 | +| time-step | 891 | +| y_out | -0.0203 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017382024 | +| time-step | 892 | +| y_out | 0.0486 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016975643 | +| time-step | 893 | +| y_out | 0.0156 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016574562 | +| time-step | 894 | +| y_out | 0.0045 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017741101 | +| time-step | 895 | +| y_out | -0.0852 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017445082 | +| time-step | 896 | +| y_out | -0.0477 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001645507 | +| time-step | 897 | +| y_out | 0.0476 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0016793279 | +| time-step | 898 | +| y_out | -0.00897 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015680805 | +| time-step | 899 | +| y_out | -0.109 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0017065794 | +| time-step | 900 | +| y_out | 0.0224 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/checkpoint 900 +------------------------------------------------------------- +| perf/mse | 0.0015966247 | +| time-step | 901 | +| y_out | -0.116 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015480891 | +| time-step | 902 | +| y_out | -0.039 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0016080616 | +| time-step | 903 | +| y_out | -0.0239 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015988548 | +| time-step | 904 | +| y_out | 0.0545 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015027409 | +| time-step | 905 | +| y_out | 0.0572 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0015189637 | +| time-step | 906 | +| y_out | -0.0132 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0014535878 | +| time-step | 907 | +| y_out | 0.0296 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001484911 | +| time-step | 908 | +| y_out | 0.0618 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.001481435 | +| time-step | 909 | +| y_out | -0.0668 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0013689965 | +| time-step | 910 | +| y_out | -0.0217 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013781392 | +| time-step | 911 | +| y_out | 0.127 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013740219 | +| time-step | 912 | +| y_out | 0.0282 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013306374 | +| time-step | 913 | +| y_out | 0.0204 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0013018546 | +| time-step | 914 | +| y_out | -0.0147 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012775271 | +| time-step | 915 | +| y_out | 0.0539 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011926976 | +| time-step | 916 | +| y_out | -0.152 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012097347 | +| time-step | 917 | +| y_out | 0.0752 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012356499 | +| time-step | 918 | +| y_out | -0.0412 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012392241 | +| time-step | 919 | +| y_out | -0.0152 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012708695 | +| time-step | 920 | +| y_out | 0.0455 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012496191 | +| time-step | 921 | +| y_out | -0.0364 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012434265 | +| time-step | 922 | +| y_out | -0.0932 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012441714 | +| time-step | 923 | +| y_out | 0.0926 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012208009 | +| time-step | 924 | +| y_out | 0.0228 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011978479 | +| time-step | 925 | +| y_out | -0.0887 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011823905 | +| time-step | 926 | +| y_out | 0.0459 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0012313379 | +| time-step | 927 | +| y_out | -0.0969 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011789666 | +| time-step | 928 | +| y_out | -0.0857 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001210572 | +| time-step | 929 | +| y_out | -0.0309 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0010731418 | +| time-step | 930 | +| y_out | -0.0369 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00108647 | +| time-step | 931 | +| y_out | 0.00145 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010750546 | +| time-step | 932 | +| y_out | -0.0327 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001055077 | +| time-step | 933 | +| y_out | 0.146 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0010376245 | +| time-step | 934 | +| y_out | 0.0103 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010033941 | +| time-step | 935 | +| y_out | -0.068 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010275629 | +| time-step | 936 | +| y_out | 0.0789 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009324721 | +| time-step | 937 | +| y_out | 0.0105 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00087942835 | +| time-step | 938 | +| y_out | -0.0559 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00079536356 | +| time-step | 939 | +| y_out | 0.0205 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008116107 | +| time-step | 940 | +| y_out | 0.0144 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007895584 | +| time-step | 941 | +| y_out | 0.0663 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007302059 | +| time-step | 942 | +| y_out | 0.106 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0006918643 | +| time-step | 943 | +| y_out | -0.0315 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00068389054 | +| time-step | 944 | +| y_out | 0.034 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00070424855 | +| time-step | 945 | +| y_out | -0.0325 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00071053277 | +| time-step | 946 | +| y_out | -0.00593 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00074432173 | +| time-step | 947 | +| y_out | -0.178 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007698019 | +| time-step | 948 | +| y_out | -0.0703 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008218087 | +| time-step | 949 | +| y_out | -0.00329 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008365728 | +| time-step | 950 | +| y_out | -0.0478 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00084103865 | +| time-step | 951 | +| y_out | -0.0521 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00084248197 | +| time-step | 952 | +| y_out | 0.119 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008920681 | +| time-step | 953 | +| y_out | -0.0325 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009082917 | +| time-step | 954 | +| y_out | -0.119 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00087403355 | +| time-step | 955 | +| y_out | 0.109 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008673421 | +| time-step | 956 | +| y_out | -0.023 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00087674864 | +| time-step | 957 | +| y_out | 0.0917 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008622051 | +| time-step | 958 | +| y_out | -0.0395 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008164689 | +| time-step | 959 | +| y_out | -0.0113 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007855097 | +| time-step | 960 | +| y_out | 0.0424 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000818237 | +| time-step | 961 | +| y_out | -0.0542 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.00081053993 | +| time-step | 962 | +| y_out | 0.0218 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00076409854 | +| time-step | 963 | +| y_out | -0.0118 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007725415 | +| time-step | 964 | +| y_out | 0.0361 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007710451 | +| time-step | 965 | +| y_out | 0.00928 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00076997624 | +| time-step | 966 | +| y_out | -0.0475 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007644209 | +| time-step | 967 | +| y_out | -0.0154 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00075979176 | +| time-step | 968 | +| y_out | -0.00548 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00076298544 | +| time-step | 969 | +| y_out | 0.0798 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007329193 | +| time-step | 970 | +| y_out | -0.0951 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0006682177 | +| time-step | 971 | +| y_out | 0.0745 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00071620126 | +| time-step | 972 | +| y_out | -0.0646 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00072191557 | +| time-step | 973 | +| y_out | -0.0217 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0006783087 | +| time-step | 974 | +| y_out | -0.123 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.000700054 | +| time-step | 975 | +| y_out | 0.0491 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.00070882315 | +| time-step | 976 | +| y_out | 0.0196 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00070343225 | +| time-step | 977 | +| y_out | 0.0165 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007215146 | +| time-step | 978 | +| y_out | 0.0579 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00071637164 | +| time-step | 979 | +| y_out | -0.132 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007803744 | +| time-step | 980 | +| y_out | -0.0142 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007832245 | +| time-step | 981 | +| y_out | -0.092 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007240266 | +| time-step | 982 | +| y_out | -0.0318 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007644796 | +| time-step | 983 | +| y_out | 0.11 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00081334834 | +| time-step | 984 | +| y_out | 0.0165 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00080815546 | +| time-step | 985 | +| y_out | -0.0432 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007955482 | +| time-step | 986 | +| y_out | 0.149 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0007927171 | +| time-step | 987 | +| y_out | -0.0638 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0008125946 | +| time-step | 988 | +| y_out | 0.0559 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00085731986 | +| time-step | 989 | +| y_out | -0.126 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00087744324 | +| time-step | 990 | +| y_out | -0.0324 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009319998 | +| time-step | 991 | +| y_out | -0.00866 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.00095575926 | +| time-step | 992 | +| y_out | 0.0558 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0009917759 | +| time-step | 993 | +| y_out | -0.0721 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0010477038 | +| time-step | 994 | +| y_out | 0.0253 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011287092 | +| time-step | 995 | +| y_out | 0.00192 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.001170326 | +| time-step | 996 | +| y_out | -0.0151 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0011970011 | +| time-step | 997 | +| y_out | 0.0235 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011807921 | +| time-step | 998 | +| y_out | -0.0755 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0011292533 | +| time-step | 999 | +| y_out | -0.0125 | +------------------------------------------------------------- diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/progress-[||perf--mse||, ||timestep||].csv b/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/progress-[||perf--mse||, ||timestep||].csv new file mode 100644 index 0000000..76904d5 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/progress-[||perf--mse||, ||timestep||].csv @@ -0,0 +1,2001 @@ +perf/mse,time-step +,0.0 +, +,1.0 +, +,2.0 +, +,3.0 +, +,4.0 +, +,5.0 +, +,6.0 +, +,7.0 +, +,8.0 +, +0.25404385,9.0 +, +0.21624255,10.0 +, +0.18596694,11.0 +, +0.1582013,12.0 +, +0.13950877,13.0 +, +0.13145243,14.0 +, +0.113823175,15.0 +, +0.10132376,16.0 +, +0.089000985,17.0 +, +0.07814823,18.0 +, +0.07573148,19.0 +, +0.06965452,20.0 +, +0.06751619,21.0 +, +0.063607566,22.0 +, +0.05929939,23.0 +, +0.056123357,24.0 +, +0.05460178,25.0 +, +0.05113139,26.0 +, +0.046399005,27.0 +, +0.04336382,28.0 +, +0.03815507,29.0 +, +0.03763888,30.0 +, +0.034713246,31.0 +, +0.033163864,32.0 +, +0.032462526,33.0 +, +0.031926543,34.0 +, +0.030210812,35.0 +, +0.028794024,36.0 +, +0.027798291,37.0 +, +0.027190115,38.0 +, +0.026942408,39.0 +, +0.025916442,40.0 +, +0.025101284,41.0 +, +0.023763662,42.0 +, +0.02281344,43.0 +, +0.022030238,44.0 +, +0.021296654,45.0 +, +0.020923782,46.0 +, +0.020564545,47.0 +, +0.01976985,48.0 +, +0.019457562,49.0 +, +0.018895408,50.0 +, +0.018127842,51.0 +, +0.017712202,52.0 +, +0.017694693,53.0 +, +0.01708621,54.0 +, +0.017396536,55.0 +, +0.016502965,56.0 +, +0.017007403,57.0 +, +0.017244082,58.0 +, +0.017256835,59.0 +, +0.01696306,60.0 +, +0.01701211,61.0 +, +0.016506033,62.0 +, +0.016356656,63.0 +, +0.016869597,64.0 +, +0.016471535,65.0 +, +0.01647884,66.0 +, +0.016237836,67.0 +, +0.015627362,68.0 +, +0.015811015,69.0 +, +0.015596211,70.0 +, +0.01575188,71.0 +, +0.0160154,72.0 +, +0.015327441,73.0 +, +0.015119232,74.0 +, +0.0147181805,75.0 +, +0.014494801,76.0 +, +0.013972449,77.0 +, +0.014238426,78.0 +, +0.013595769,79.0 +, +0.013565647,80.0 +, +0.013163874,81.0 +, +0.012441501,82.0 +, +0.012963027,83.0 +, +0.01223503,84.0 +, +0.012292897,85.0 +, +0.012500109,86.0 +, +0.012856695,87.0 +, +0.012276762,88.0 +, +0.011978991,89.0 +, +0.0118127335,90.0 +, +0.011505524,91.0 +, +0.011945838,92.0 +, +0.011627947,93.0 +, +0.011836036,94.0 +, +0.011424037,95.0 +, +0.011475807,96.0 +, +0.011257061,97.0 +, +0.011499898,98.0 +, +0.01183567,99.0 +, +0.011582458,100.0 +, +0.012255019,101.0 +, +0.011903219,102.0 +, +0.011506565,103.0 +, +0.011738735,104.0 +, +0.01216323,105.0 +, +0.011550268,106.0 +, +0.011674861,107.0 +, +0.011697022,108.0 +, +0.011616561,109.0 +, +0.011588188,110.0 +, +0.011390748,111.0 +, +0.011482997,112.0 +, +0.011777064,113.0 +, +0.01118183,114.0 +, +0.011029539,115.0 +, +0.011370791,116.0 +, +0.011132278,117.0 +, +0.010714049,118.0 +, +0.010616899,119.0 +, +0.0107062645,120.0 +, +0.010425675,121.0 +, +0.010234612,122.0 +, +0.010139575,123.0 +, +0.009921612,124.0 +, +0.009880524,125.0 +, +0.009619409,126.0 +, +0.009759772,127.0 +, +0.01052406,128.0 +, +0.010426777,129.0 +, +0.01032447,130.0 +, +0.010187253,131.0 +, +0.010301651,132.0 +, +0.010122659,133.0 +, +0.01052367,134.0 +, +0.0105337715,135.0 +, +0.011208582,136.0 +, +0.011015279,137.0 +, +0.010486243,138.0 +, +0.010428895,139.0 +, +0.010207997,140.0 +, +0.009946516,141.0 +, +0.009669334,142.0 +, +0.009626919,143.0 +, +0.009529015,144.0 +, +0.009351367,145.0 +, +0.00849803,146.0 +, +0.008623385,147.0 +, +0.008221876,148.0 +, +0.007873524,149.0 +, +0.007916184,150.0 +, +0.007804518,151.0 +, +0.008017892,152.0 +, +0.007977711,153.0 +, +0.007700703,154.0 +, +0.007565164,155.0 +, +0.007904165,156.0 +, +0.007764823,157.0 +, +0.007927408,158.0 +, +0.007884043,159.0 +, +0.007820913,160.0 +, +0.007894961,161.0 +, +0.007741635,162.0 +, +0.0076313056,163.0 +, +0.007826738,164.0 +, +0.0078485925,165.0 +, +0.007923691,166.0 +, +0.0076683476,167.0 +, +0.007849395,168.0 +, +0.008243648,169.0 +, +0.008323584,170.0 +, +0.0084346365,171.0 +, +0.008533811,172.0 +, +0.008782488,173.0 +, +0.008873643,174.0 +, +0.008888138,175.0 +, +0.008590636,176.0 +, +0.009116266,177.0 +, +0.0089461375,178.0 +, +0.008508241,179.0 +, +0.008263703,180.0 +, +0.008159729,181.0 +, +0.0081051495,182.0 +, +0.0077546365,183.0 +, +0.007629416,184.0 +, +0.0075756563,185.0 +, +0.0073037795,186.0 +, +0.007007529,187.0 +, +0.0070983833,188.0 +, +0.0070726215,189.0 +, +0.007085839,190.0 +, +0.0070583774,191.0 +, +0.0068005277,192.0 +, +0.00681666,193.0 +, +0.0066086957,194.0 +, +0.0067581646,195.0 +, +0.006944844,196.0 +, +0.0065717967,197.0 +, +0.0062894537,198.0 +, +0.0063204193,199.0 +, +0.0063961274,200.0 +, +0.0062630577,201.0 +, +0.006385171,202.0 +, +0.0063078664,203.0 +, +0.0063694417,204.0 +, +0.0060950117,205.0 +, +0.0062709255,206.0 +, +0.0065209977,207.0 +, +0.006340006,208.0 +, +0.006474778,209.0 +, +0.0063971914,210.0 +, +0.006349617,211.0 +, +0.0060998867,212.0 +, +0.0061355657,213.0 +, +0.0060756244,214.0 +, +0.0062592314,215.0 +, +0.005870505,216.0 +, +0.005837211,217.0 +, +0.0057791797,218.0 +, +0.005591608,219.0 +, +0.0054245694,220.0 +, +0.0056076837,221.0 +, +0.005767855,222.0 +, +0.0057838922,223.0 +, +0.0059193918,224.0 +, +0.00552589,225.0 +, +0.005704405,226.0 +, +0.0054674693,227.0 +, +0.005680097,228.0 +, +0.005847095,229.0 +, +0.0061057126,230.0 +, +0.006135303,231.0 +, +0.006066792,232.0 +, +0.005963771,233.0 +, +0.005739975,234.0 +, +0.005813966,235.0 +, +0.00580691,236.0 +, +0.005958374,237.0 +, +0.0058803153,238.0 +, +0.0058792084,239.0 +, +0.005652588,240.0 +, +0.005467559,241.0 +, +0.005469047,242.0 +, +0.0054667136,243.0 +, +0.005457503,244.0 +, +0.0054744883,245.0 +, +0.005458428,246.0 +, +0.005487296,247.0 +, +0.005292962,248.0 +, +0.0050754272,249.0 +, +0.005090325,250.0 +, +0.0052569495,251.0 +, +0.0051961266,252.0 +, +0.0052097486,253.0 +, +0.005309787,254.0 +, +0.0053571933,255.0 +, +0.005246134,256.0 +, +0.005201134,257.0 +, +0.0054008705,258.0 +, +0.005316445,259.0 +, +0.0055139065,260.0 +, +0.0054254136,261.0 +, +0.0054273074,262.0 +, +0.0055618426,263.0 +, +0.0054359483,264.0 +, +0.0055935187,265.0 +, +0.005602519,266.0 +, +0.005675219,267.0 +, +0.005508154,268.0 +, +0.0056658,269.0 +, +0.005427112,270.0 +, +0.005184242,271.0 +, +0.0054330626,272.0 +, +0.0052553625,273.0 +, +0.005137074,274.0 +, +0.0049403897,275.0 +, +0.004833267,276.0 +, +0.00465387,277.0 +, +0.0045900894,278.0 +, +0.004555408,279.0 +, +0.004857788,280.0 +, +0.0049341284,281.0 +, +0.0047065816,282.0 +, +0.0047200955,283.0 +, +0.0047404333,284.0 +, +0.0047004186,285.0 +, +0.0048402185,286.0 +, +0.004919482,287.0 +, +0.0050935135,288.0 +, +0.005063246,289.0 +, +0.0047773127,290.0 +, +0.004832393,291.0 +, +0.0047424813,292.0 +, +0.0047391644,293.0 +, +0.004881492,294.0 +, +0.00494863,295.0 +, +0.0050296835,296.0 +, +0.0050590634,297.0 +, +0.004910364,298.0 +, +0.0048138397,299.0 +, +0.0048563695,300.0 +, +0.004725837,301.0 +, +0.005021532,302.0 +, +0.005168277,303.0 +, +0.005011716,304.0 +, +0.004822015,305.0 +, +0.004661045,306.0 +, +0.004567806,307.0 +, +0.004523878,308.0 +, +0.0047308295,309.0 +, +0.004642966,310.0 +, +0.0046033063,311.0 +, +0.004354543,312.0 +, +0.00422345,313.0 +, +0.0042403187,314.0 +, +0.0046130084,315.0 +, +0.0045602033,316.0 +, +0.0044538863,317.0 +, +0.0044705262,318.0 +, +0.0042575835,319.0 +, +0.004264278,320.0 +, +0.0041419743,321.0 +, +0.004052129,322.0 +, +0.0039242436,323.0 +, +0.0037850111,324.0 +, +0.0034822044,325.0 +, +0.0035128954,326.0 +, +0.0034760344,327.0 +, +0.003427165,328.0 +, +0.0033458625,329.0 +, +0.0034201262,330.0 +, +0.0038642138,331.0 +, +0.00387008,332.0 +, +0.003879546,333.0 +, +0.003977562,334.0 +, +0.0041400227,335.0 +, +0.0041529005,336.0 +, +0.0042182216,337.0 +, +0.0041941693,338.0 +, +0.0042140465,339.0 +, +0.0040386682,340.0 +, +0.0037491308,341.0 +, +0.0037041823,342.0 +, +0.0037164632,343.0 +, +0.0036125612,344.0 +, +0.0033701803,345.0 +, +0.003206561,346.0 +, +0.003049308,347.0 +, +0.0029211715,348.0 +, +0.0029971832,349.0 +, +0.0031138198,350.0 +, +0.003042331,351.0 +, +0.0030804093,352.0 +, +0.0029486802,353.0 +, +0.002996923,354.0 +, +0.0029818472,355.0 +, +0.0030159433,356.0 +, +0.0030697635,357.0 +, +0.0031509504,358.0 +, +0.0030464414,359.0 +, +0.0028993026,360.0 +, +0.0028431062,361.0 +, +0.002842519,362.0 +, +0.003114042,363.0 +, +0.0030059158,364.0 +, +0.0031718377,365.0 +, +0.0032990153,366.0 +, +0.0033004645,367.0 +, +0.0034388423,368.0 +, +0.003431335,369.0 +, +0.0035038304,370.0 +, +0.003555777,371.0 +, +0.0035579181,372.0 +, +0.00344878,373.0 +, +0.003668848,374.0 +, +0.0035509455,375.0 +, +0.003515996,376.0 +, +0.003621233,377.0 +, +0.0035541516,378.0 +, +0.0035739723,379.0 +, +0.0035632234,380.0 +, +0.0037005625,381.0 +, +0.0036168557,382.0 +, +0.0035267782,383.0 +, +0.003529625,384.0 +, +0.0034791995,385.0 +, +0.0033669532,386.0 +, +0.0033413756,387.0 +, +0.0032457628,388.0 +, +0.00326313,389.0 +, +0.0032733716,390.0 +, +0.0031835102,391.0 +, +0.0032087662,392.0 +, +0.0031948138,393.0 +, +0.003007216,394.0 +, +0.0029921124,395.0 +, +0.003020805,396.0 +, +0.0028801016,397.0 +, +0.0029464185,398.0 +, +0.0028379273,399.0 +, +0.0027249907,400.0 +, +0.002695386,401.0 +, +0.0026794672,402.0 +, +0.002735395,403.0 +, +0.0027150828,404.0 +, +0.0028524597,405.0 +, +0.0027905018,406.0 +, +0.002882365,407.0 +, +0.0027978588,408.0 +, +0.0028928067,409.0 +, +0.0029323287,410.0 +, +0.003114619,411.0 +, +0.0032254017,412.0 +, +0.0031854133,413.0 +, +0.0033857622,414.0 +, +0.003287709,415.0 +, +0.0032431737,416.0 +, +0.0033213347,417.0 +, +0.0034633086,418.0 +, +0.003504065,419.0 +, +0.0036496674,420.0 +, +0.003693853,421.0 +, +0.003573691,422.0 +, +0.0037425898,423.0 +, +0.0038778633,424.0 +, +0.0038061433,425.0 +, +0.004416661,426.0 +, +0.004411501,427.0 +, +0.0043706344,428.0 +, +0.0047676335,429.0 +, +0.004815673,430.0 +, +0.0045618555,431.0 +, +0.0048903003,432.0 +, +0.0048577874,433.0 +, +0.004568345,434.0 +, +0.0047095087,435.0 +, +0.0043004802,436.0 +, +0.004158512,437.0 +, +0.004246843,438.0 +, +0.003936456,439.0 +, +0.0038993838,440.0 +, +0.0038526668,441.0 +, +0.0035223279,442.0 +, +0.0034675982,443.0 +, +0.003449841,444.0 +, +0.0033970077,445.0 +, +0.0032083844,446.0 +, +0.0032191083,447.0 +, +0.0030373132,448.0 +, +0.002832634,449.0 +, +0.0027092178,450.0 +, +0.0027993654,451.0 +, +0.0028605787,452.0 +, +0.0026752297,453.0 +, +0.0027000871,454.0 +, +0.0025785663,455.0 +, +0.0024993517,456.0 +, +0.002478785,457.0 +, +0.0024777818,458.0 +, +0.002458927,459.0 +, +0.0023675757,460.0 +, +0.0022650189,461.0 +, +0.0021926733,462.0 +, +0.0022442187,463.0 +, +0.0020998898,464.0 +, +0.0021024528,465.0 +, +0.0020906813,466.0 +, +0.0020193045,467.0 +, +0.0019543953,468.0 +, +0.0018932378,469.0 +, +0.0019138686,470.0 +, +0.0019028299,471.0 +, +0.0018164773,472.0 +, +0.0017435333,473.0 +, +0.0018003061,474.0 +, +0.0017218882,475.0 +, +0.001684279,476.0 +, +0.0016763661,477.0 +, +0.0017205063,478.0 +, +0.0017603608,479.0 +, +0.0017245576,480.0 +, +0.0016624087,481.0 +, +0.0016428211,482.0 +, +0.0017297517,483.0 +, +0.0016518139,484.0 +, +0.0016908478,485.0 +, +0.0017396715,486.0 +, +0.0017373674,487.0 +, +0.0016673455,488.0 +, +0.00158371,489.0 +, +0.0015815301,490.0 +, +0.0016661342,491.0 +, +0.0016753192,492.0 +, +0.0016785947,493.0 +, +0.001772495,494.0 +, +0.0017736319,495.0 +, +0.0018837117,496.0 +, +0.0018875517,497.0 +, +0.001921845,498.0 +, +0.002022256,499.0 +, +0.0020047543,500.0 +, +0.0020039312,501.0 +, +0.0020370446,502.0 +, +0.0019321634,503.0 +, +0.0019290233,504.0 +, +0.0019330776,505.0 +, +0.0017912758,506.0 +, +0.0017951546,507.0 +, +0.0017879081,508.0 +, +0.0017211379,509.0 +, +0.0017111085,510.0 +, +0.0015988341,511.0 +, +0.0015991902,512.0 +, +0.001596882,513.0 +, +0.0014749819,514.0 +, +0.0014614912,515.0 +, +0.0014667718,516.0 +, +0.0014564025,517.0 +, +0.0015266333,518.0 +, +0.0015924074,519.0 +, +0.0016178818,520.0 +, +0.0016894946,521.0 +, +0.0016992416,522.0 +, +0.001764079,523.0 +, +0.001823039,524.0 +, +0.0018382244,525.0 +, +0.0018616552,526.0 +, +0.0018887825,527.0 +, +0.001908743,528.0 +, +0.0019206364,529.0 +, +0.0019301809,530.0 +, +0.0019566207,531.0 +, +0.001962641,532.0 +, +0.0019991086,533.0 +, +0.0019544857,534.0 +, +0.002035989,535.0 +, +0.0021131162,536.0 +, +0.0021001971,537.0 +, +0.0020319205,538.0 +, +0.0019359395,539.0 +, +0.0019430589,540.0 +, +0.0019210335,541.0 +, +0.001963705,542.0 +, +0.0018713437,543.0 +, +0.002005464,544.0 +, +0.0018908065,545.0 +, +0.0019246961,546.0 +, +0.0019107908,547.0 +, +0.0018855829,548.0 +, +0.001898213,549.0 +, +0.001863506,550.0 +, +0.0018874655,551.0 +, +0.0018460691,552.0 +, +0.0019216121,553.0 +, +0.0018543961,554.0 +, +0.0018949676,555.0 +, +0.0018328143,556.0 +, +0.0019074312,557.0 +, +0.0019691791,558.0 +, +0.0020057554,559.0 +, +0.0020674686,560.0 +, +0.0020839528,561.0 +, +0.0021000248,562.0 +, +0.0020321535,563.0 +, +0.0020988125,564.0 +, +0.0021145795,565.0 +, +0.002098894,566.0 +, +0.0020550906,567.0 +, +0.002026525,568.0 +, +0.002051998,569.0 +, +0.0019867157,570.0 +, +0.0019181123,571.0 +, +0.0018791903,572.0 +, +0.001876292,573.0 +, +0.0018547786,574.0 +, +0.0018406834,575.0 +, +0.001769655,576.0 +, +0.0018028232,577.0 +, +0.0017970685,578.0 +, +0.001787435,579.0 +, +0.0017943239,580.0 +, +0.0017846429,581.0 +, +0.0017564133,582.0 +, +0.0017647475,583.0 +, +0.0016614299,584.0 +, +0.0016063887,585.0 +, +0.0016128639,586.0 +, +0.0014955291,587.0 +, +0.0014464997,588.0 +, +0.001398869,589.0 +, +0.0013778738,590.0 +, +0.0013745308,591.0 +, +0.0013672747,592.0 +, +0.0013323801,593.0 +, +0.0013053135,594.0 +, +0.0012961403,595.0 +, +0.0013024146,596.0 +, +0.0013250818,597.0 +, +0.0013150477,598.0 +, +0.0012520016,599.0 +, +0.0012569686,600.0 +, +0.0012697636,601.0 +, +0.0013004772,602.0 +, +0.0013117633,603.0 +, +0.0013281712,604.0 +, +0.0014254451,605.0 +, +0.0014005085,606.0 +, +0.0013961944,607.0 +, +0.0014525477,608.0 +, +0.001519191,609.0 +, +0.0015447239,610.0 +, +0.0014677106,611.0 +, +0.0013843477,612.0 +, +0.0013700541,613.0 +, +0.0013428393,614.0 +, +0.0012454236,615.0 +, +0.0012533384,616.0 +, +0.0012849139,617.0 +, +0.0012527828,618.0 +, +0.0012444494,619.0 +, +0.0012695559,620.0 +, +0.0013112181,621.0 +, +0.0013514087,622.0 +, +0.0013635417,623.0 +, +0.0014409134,624.0 +, +0.0014583239,625.0 +, +0.0015712464,626.0 +, +0.0015128684,627.0 +, +0.0015506728,628.0 +, +0.0016227548,629.0 +, +0.001630237,630.0 +, +0.0016448429,631.0 +, +0.0015883439,632.0 +, +0.0016770326,633.0 +, +0.0018076223,634.0 +, +0.0018845929,635.0 +, +0.0018737372,636.0 +, +0.0019149439,637.0 +, +0.001947668,638.0 +, +0.0019284387,639.0 +, +0.0018166339,640.0 +, +0.0017884426,641.0 +, +0.0018237059,642.0 +, +0.0017315864,643.0 +, +0.0015924254,644.0 +, +0.0014983196,645.0 +, +0.0014402111,646.0 +, +0.0014410474,647.0 +, +0.00134639,648.0 +, +0.0013404057,649.0 +, +0.0014057737,650.0 +, +0.0014291888,651.0 +, +0.0014712964,652.0 +, +0.0014658961,653.0 +, +0.0014968063,654.0 +, +0.0015456323,655.0 +, +0.0015468011,656.0 +, +0.0015656151,657.0 +, +0.0015823657,658.0 +, +0.0015337823,659.0 +, +0.0016243138,660.0 +, +0.001617544,661.0 +, +0.0016212013,662.0 +, +0.0016805325,663.0 +, +0.0015839137,664.0 +, +0.0015407805,665.0 +, +0.0015286522,666.0 +, +0.0015011401,667.0 +, +0.0015630085,668.0 +, +0.0015728811,669.0 +, +0.0015028403,670.0 +, +0.001527854,671.0 +, +0.0014969496,672.0 +, +0.001485966,673.0 +, +0.0015473317,674.0 +, +0.0015247725,675.0 +, +0.0016368071,676.0 +, +0.0016484316,677.0 +, +0.0016139641,678.0 +, +0.0016643817,679.0 +, +0.0016313422,680.0 +, +0.0016340213,681.0 +, +0.0016779233,682.0 +, +0.0016093779,683.0 +, +0.0015863193,684.0 +, +0.0016307397,685.0 +, +0.0015177442,686.0 +, +0.0015409404,687.0 +, +0.0016464142,688.0 +, +0.0015846018,689.0 +, +0.0015498542,690.0 +, +0.0016153401,691.0 +, +0.0016121231,692.0 +, +0.0016613256,693.0 +, +0.0016914855,694.0 +, +0.0016825378,695.0 +, +0.001616143,696.0 +, +0.0015601993,697.0 +, +0.0014514831,698.0 +, +0.001539682,699.0 +, +0.0016030623,700.0 +, +0.0014816022,701.0 +, +0.0014149598,702.0 +, +0.0014740886,703.0 +, +0.0014727968,704.0 +, +0.0014626773,705.0 +, +0.0014940612,706.0 +, +0.0015993789,707.0 +, +0.0015763196,708.0 +, +0.0015403478,709.0 +, +0.0014987963,710.0 +, +0.0015496066,711.0 +, +0.0016412217,712.0 +, +0.0016250139,713.0 +, +0.0015875548,714.0 +, +0.0016020648,715.0 +, +0.0016212922,716.0 +, +0.0016419597,717.0 +, +0.0016763052,718.0 +, +0.0016095603,719.0 +, +0.0016297493,720.0 +, +0.0016001847,721.0 +, +0.0015412235,722.0 +, +0.001488206,723.0 +, +0.0014943511,724.0 +, +0.0015017873,725.0 +, +0.0015227173,726.0 +, +0.0013941253,727.0 +, +0.0013641053,728.0 +, +0.0013759707,729.0 +, +0.0013534677,730.0 +, +0.0013629955,731.0 +, +0.0013518177,732.0 +, +0.0012926044,733.0 +, +0.0012653987,734.0 +, +0.0012558422,735.0 +, +0.0012732265,736.0 +, +0.0012746044,737.0 +, +0.001308241,738.0 +, +0.0013368338,739.0 +, +0.0013069513,740.0 +, +0.0013355837,741.0 +, +0.0013662466,742.0 +, +0.0013604152,743.0 +, +0.0013837991,744.0 +, +0.0013333956,745.0 +, +0.0013569245,746.0 +, +0.0014491847,747.0 +, +0.0014151782,748.0 +, +0.0013548705,749.0 +, +0.0014152452,750.0 +, +0.0013835679,751.0 +, +0.0014039897,752.0 +, +0.0014107164,753.0 +, +0.0013971764,754.0 +, +0.0014266205,755.0 +, +0.0013308247,756.0 +, +0.0012277218,757.0 +, +0.0012604803,758.0 +, +0.0012660809,759.0 +, +0.0012378447,760.0 +, +0.0012316607,761.0 +, +0.0011885753,762.0 +, +0.0012399842,763.0 +, +0.0012556204,764.0 +, +0.0012823503,765.0 +, +0.0013519218,766.0 +, +0.0013685614,767.0 +, +0.0014297662,768.0 +, +0.0015234398,769.0 +, +0.001632954,770.0 +, +0.0016493459,771.0 +, +0.0016499363,772.0 +, +0.0016605736,773.0 +, +0.0016189611,774.0 +, +0.0016293947,775.0 +, +0.0016620125,776.0 +, +0.001639788,777.0 +, +0.0015269461,778.0 +, +0.0015961269,779.0 +, +0.001488887,780.0 +, +0.001520644,781.0 +, +0.0015393305,782.0 +, +0.001533292,783.0 +, +0.0015550258,784.0 +, +0.001564206,785.0 +, +0.0015619909,786.0 +, +0.0016349365,787.0 +, +0.0016121648,788.0 +, +0.0015286787,789.0 +, +0.0015791589,790.0 +, +0.0015862,791.0 +, +0.0016430316,792.0 +, +0.0016612026,793.0 +, +0.001705773,794.0 +, +0.0017095857,795.0 +, +0.0016576644,796.0 +, +0.0015880729,797.0 +, +0.001561817,798.0 +, +0.0014963356,799.0 +, +0.0013792056,800.0 +, +0.0013139077,801.0 +, +0.0012064158,802.0 +, +0.0011227394,803.0 +, +0.0010652235,804.0 +, +0.0010063705,805.0 +, +0.0009313339,806.0 +, +0.0009764189,807.0 +, +0.0010051323,808.0 +, +0.0009578525,809.0 +, +0.0009976508,810.0 +, +0.0009936997,811.0 +, +0.0009953096,812.0 +, +0.0009886217,813.0 +, +0.0009773261,814.0 +, +0.0009670124,815.0 +, +0.00096423505,816.0 +, +0.00092683884,817.0 +, +0.0009833213,818.0 +, +0.0009936083,819.0 +, +0.0009949177,820.0 +, +0.0010193815,821.0 +, +0.0010876535,822.0 +, +0.0011380808,823.0 +, +0.0012768683,824.0 +, +0.0012991218,825.0 +, +0.001354258,826.0 +, +0.0015106251,827.0 +, +0.0014538752,828.0 +, +0.0016875062,829.0 +, +0.0016941025,830.0 +, +0.0017291667,831.0 +, +0.0017540681,832.0 +, +0.001710535,833.0 +, +0.0017356438,834.0 +, +0.0017026818,835.0 +, +0.0017175585,836.0 +, +0.0017254393,837.0 +, +0.0017319337,838.0 +, +0.0016571712,839.0 +, +0.0016579969,840.0 +, +0.0016339527,841.0 +, +0.001519721,842.0 +, +0.0015197153,843.0 +, +0.001353838,844.0 +, +0.0013635682,845.0 +, +0.0013530097,846.0 +, +0.0012082167,847.0 +, +0.0011938962,848.0 +, +0.0010359393,849.0 +, +0.0010175499,850.0 +, +0.00094430224,851.0 +, +0.00095826306,852.0 +, +0.000947598,853.0 +, +0.00093136076,854.0 +, +0.00094816927,855.0 +, +0.00090709666,856.0 +, +0.00089000363,857.0 +, +0.0008932337,858.0 +, +0.0008874565,859.0 +, +0.0008836418,860.0 +, +0.0009614425,861.0 +, +0.0010424951,862.0 +, +0.0010786236,863.0 +, +0.0010896754,864.0 +, +0.0011004236,865.0 +, +0.0010793271,866.0 +, +0.001067426,867.0 +, +0.0011082778,868.0 +, +0.0011463218,869.0 +, +0.0011629704,870.0 +, +0.0011140731,871.0 +, +0.0011147743,872.0 +, +0.0011119181,873.0 +, +0.0012028043,874.0 +, +0.0012490407,875.0 +, +0.001245074,876.0 +, +0.0014086334,877.0 +, +0.0013753776,878.0 +, +0.0014156981,879.0 +, +0.0014426743,880.0 +, +0.0014448159,881.0 +, +0.001494928,882.0 +, +0.0015137955,883.0 +, +0.0015403086,884.0 +, +0.0014997727,885.0 +, +0.0015864294,886.0 +, +0.001590246,887.0 +, +0.001572282,888.0 +, +0.0016519555,889.0 +, +0.0016490292,890.0 +, +0.0017483182,891.0 +, +0.0017382024,892.0 +, +0.0016975643,893.0 +, +0.0016574562,894.0 +, +0.0017741101,895.0 +, +0.0017445082,896.0 +, +0.001645507,897.0 +, +0.0016793279,898.0 +, +0.0015680805,899.0 +, +0.0017065794,900.0 +, +0.0015966247,901.0 +, +0.0015480891,902.0 +, +0.0016080616,903.0 +, +0.0015988548,904.0 +, +0.0015027409,905.0 +, +0.0015189637,906.0 +, +0.0014535878,907.0 +, +0.001484911,908.0 +, +0.001481435,909.0 +, +0.0013689965,910.0 +, +0.0013781392,911.0 +, +0.0013740219,912.0 +, +0.0013306374,913.0 +, +0.0013018546,914.0 +, +0.0012775271,915.0 +, +0.0011926976,916.0 +, +0.0012097347,917.0 +, +0.0012356499,918.0 +, +0.0012392241,919.0 +, +0.0012708695,920.0 +, +0.0012496191,921.0 +, +0.0012434265,922.0 +, +0.0012441714,923.0 +, +0.0012208009,924.0 +, +0.0011978479,925.0 +, +0.0011823905,926.0 +, +0.0012313379,927.0 +, +0.0011789666,928.0 +, +0.001210572,929.0 +, +0.0010731418,930.0 +, +0.00108647,931.0 +, +0.0010750546,932.0 +, +0.001055077,933.0 +, +0.0010376245,934.0 +, +0.0010033941,935.0 +, +0.0010275629,936.0 +, +0.0009324721,937.0 +, +0.00087942835,938.0 +, +0.00079536356,939.0 +, +0.0008116107,940.0 +, +0.0007895584,941.0 +, +0.0007302059,942.0 +, +0.0006918643,943.0 +, +0.00068389054,944.0 +, +0.00070424855,945.0 +, +0.00071053277,946.0 +, +0.00074432173,947.0 +, +0.0007698019,948.0 +, +0.0008218087,949.0 +, +0.0008365728,950.0 +, +0.00084103865,951.0 +, +0.00084248197,952.0 +, +0.0008920681,953.0 +, +0.0009082917,954.0 +, +0.00087403355,955.0 +, +0.0008673421,956.0 +, +0.00087674864,957.0 +, +0.0008622051,958.0 +, +0.0008164689,959.0 +, +0.0007855097,960.0 +, +0.000818237,961.0 +, +0.00081053993,962.0 +, +0.00076409854,963.0 +, +0.0007725415,964.0 +, +0.0007710451,965.0 +, +0.00076997624,966.0 +, +0.0007644209,967.0 +, +0.00075979176,968.0 +, +0.00076298544,969.0 +, +0.0007329193,970.0 +, +0.0006682177,971.0 +, +0.00071620126,972.0 +, +0.00072191557,973.0 +, +0.0006783087,974.0 +, +0.000700054,975.0 +, +0.00070882315,976.0 +, +0.00070343225,977.0 +, +0.0007215146,978.0 +, +0.00071637164,979.0 +, +0.0007803744,980.0 +, +0.0007832245,981.0 +, +0.0007240266,982.0 +, +0.0007644796,983.0 +, +0.00081334834,984.0 +, +0.00080815546,985.0 +, +0.0007955482,986.0 +, +0.0007927171,987.0 +, +0.0008125946,988.0 +, +0.00085731986,989.0 +, +0.00087744324,990.0 +, +0.0009319998,991.0 +, +0.00095575926,992.0 +, +0.0009917759,993.0 +, +0.0010477038,994.0 +, +0.0011287092,995.0 +, +0.001170326,996.0 +, +0.0011970011,997.0 +, +0.0011807921,998.0 +, +0.0011292533,999.0 +, diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/progress.csv b/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/progress.csv new file mode 100644 index 0000000..58247dd --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/progress.csv @@ -0,0 +1,2001 @@ +time-step,y_out,perf/mse +0,0.027489057490298268, +,, +1,0.03383943686917408, +,, +2,0.10048490502727697, +,, +3,-0.052043374842352545, +,, +4,0.020200100591427753, +,, +5,0.0737710139918437, +,, +6,-0.12505266037628973, +,, +7,0.10640373806667935, +,, +8,-0.037115906562423834, +,, +9,0.1299973918395534,0.25404385 +,, +10,0.048189410223540154,0.21624255 +,, +11,0.04990721567176539,0.18596694 +,, +12,0.03417405416445801,0.1582013 +,, +13,0.03378412208206964,0.13950877 +,, +14,0.028797863097579347,0.13145243 +,, +15,-0.00663100405785557,0.113823175 +,, +16,0.06070651573815519,0.10132376 +,, +17,0.10683817401447347,0.089000985 +,, +18,-0.05851561487275698,0.07814823 +,, +19,0.04198831964609696,0.07573148 +,, +20,-0.046601687663713254,0.06965452 +,, +21,0.060667004746230754,0.06751619 +,, +22,-0.10305766113565043,0.063607566 +,, +23,-0.07589105224499651,0.05929939 +,, +24,0.013276784083461165,0.056123357 +,, +25,0.06653610232161597,0.05460178 +,, +26,0.07162726897316611,0.05113139 +,, +27,0.025747987413264957,0.046399005 +,, +28,-0.16412734918133043,0.04336382 +,, +29,0.0609564629962416,0.03815507 +,, +30,-0.020575963437058267,0.03763888 +,, +31,-0.20218860674665579,0.034713246 +,, +32,-0.044006542286568626,0.033163864 +,, +33,0.11401755227377518,0.032462526 +,, +34,0.03392149262470401,0.031926543 +,, +35,0.04302767448969723,0.030210812 +,, +36,-0.10236511057715353,0.028794024 +,, +37,2.4245258245868262e-05,0.027798291 +,, +38,0.06205460721315238,0.027190115 +,, +39,-0.0007867037274102307,0.026942408 +,, +40,-0.05358983587682742,0.025916442 +,, +41,0.07596135605136463,0.025101284 +,, +42,-0.1032859466779448,0.023763662 +,, +43,0.03254971575917456,0.02281344 +,, +44,-0.005748852967503104,0.022030238 +,, +45,-0.029470264142429238,0.021296654 +,, +46,-0.09445071342216627,0.020923782 +,, +47,-0.08204230068004104,0.020564545 +,, +48,0.03315484248120979,0.01976985 +,, +49,-0.074398879774102,0.019457562 +,, +50,0.02791223575768978,0.018895408 +,, +51,-0.08791307210870006,0.018127842 +,, +52,-0.003670429969539535,0.017712202 +,, +53,0.031184462981102532,0.017694693 +,, +54,0.08899209004425122,0.01708621 +,, +55,-0.0014705992841195208,0.017396536 +,, +56,-0.02360427139263685,0.016502965 +,, +57,0.013760798386207685,0.017007403 +,, +58,0.09974054027503784,0.017244082 +,, +59,0.029873430876102457,0.017256835 +,, +60,0.024311567218117478,0.01696306 +,, +61,0.11615775551232746,0.01701211 +,, +62,0.029092651078626335,0.016506033 +,, +63,0.14283422142706143,0.016356656 +,, +64,0.02350537273320681,0.016869597 +,, +65,0.09216478270125635,0.016471535 +,, +66,0.05022559474333474,0.01647884 +,, +67,0.05377594104867052,0.016237836 +,, +68,0.06546771637583218,0.015627362 +,, +69,-0.0816659282973736,0.015811015 +,, +70,-0.013996186533289157,0.015596211 +,, +71,-0.1269125425510938,0.01575188 +,, +72,0.05782453046791113,0.0160154 +,, +73,-0.14573959949177634,0.015327441 +,, +74,-0.035035898813363796,0.015119232 +,, +75,0.07059691384142662,0.0147181805 +,, +76,0.14696603797745922,0.014494801 +,, +77,-0.04942678084144561,0.013972449 +,, +78,0.07483127254026606,0.014238426 +,, +79,-0.04007011268325698,0.013595769 +,, +80,0.09218043036898674,0.013565647 +,, +81,-0.025123625651642202,0.013163874 +,, +82,-0.005717770708863687,0.012441501 +,, +83,0.10718667278570412,0.012963027 +,, +84,0.04040916076994447,0.01223503 +,, +85,0.02598014372440952,0.012292897 +,, +86,0.015993753967208826,0.012500109 +,, +87,-0.00893117172153668,0.012856695 +,, +88,0.00048297605181154765,0.012276762 +,, +89,0.049181014599337804,0.011978991 +,, +90,-0.06196352740546348,0.0118127335 +,, +91,0.03484618290338535,0.011505524 +,, +92,0.006653885239382238,0.011945838 +,, +93,0.09262640935125302,0.011627947 +,, +94,-0.019893058558177582,0.011836036 +,, +95,-0.010223010078329993,0.011424037 +,, +96,0.0039146104978400875,0.011475807 +,, +97,0.050368768341542886,0.011257061 +,, +98,0.05159541948095288,0.011499898 +,, +99,0.07852601294779091,0.01183567 +,, +100,0.051325759540783805,0.011582458 +,, +101,0.0352544574010975,0.012255019 +,, +102,0.014932534113763843,0.011903219 +,, +103,-0.04442544732799567,0.011506565 +,, +104,0.040396344417154034,0.011738735 +,, +105,0.06579454510906188,0.01216323 +,, +106,0.03075637837447561,0.011550268 +,, +107,0.018200683528700162,0.011674861 +,, +108,0.002250402475335027,0.011697022 +,, +109,0.005837034429014926,0.011616561 +,, +110,0.08475634243990723,0.011588188 +,, +111,-0.05770851683536485,0.011390748 +,, +112,0.0462229674602882,0.011482997 +,, +113,0.031735825595698604,0.011777064 +,, +114,-0.17317422526039794,0.01118183 +,, +115,0.1148575802359366,0.011029539 +,, +116,0.08419698065086556,0.011370791 +,, +117,0.0645473617481418,0.011132278 +,, +118,-0.04170115079641868,0.010714049 +,, +119,-0.007017898103924017,0.010616899 +,, +120,0.06942934492580886,0.0107062645 +,, +121,-0.09803465197564509,0.010425675 +,, +122,0.0794885429929186,0.010234612 +,, +123,0.01511794561400378,0.010139575 +,, +124,0.08475777659509863,0.009921612 +,, +125,-0.09481904514841949,0.009880524 +,, +126,-0.00281960264146823,0.009619409 +,, +127,0.0557742427973937,0.009759772 +,, +128,0.11007011461637123,0.01052406 +,, +129,0.023758238769956645,0.010426777 +,, +130,0.0619756924713934,0.01032447 +,, +131,-0.04714845887952111,0.010187253 +,, +132,0.014769102758238544,0.010301651 +,, +133,0.005184502673579802,0.010122659 +,, +134,0.06272356216823143,0.01052367 +,, +135,0.07282944612198627,0.0105337715 +,, +136,-0.06886494148486116,0.011208582 +,, +137,-0.06523963849233039,0.011015279 +,, +138,-0.027385549865570572,0.010486243 +,, +139,0.03660066204273599,0.010428895 +,, +140,0.06028872377705415,0.010207997 +,, +141,-0.026633313102916792,0.009946516 +,, +142,-0.002584883932699601,0.009669334 +,, +143,0.04141453940066381,0.009626919 +,, +144,-0.02291530867858431,0.009529015 +,, +145,-0.05158026056845809,0.009351367 +,, +146,-0.025829635528019097,0.00849803 +,, +147,-0.07169854382154615,0.008623385 +,, +148,0.08703193475739066,0.008221876 +,, +149,0.025506098338488166,0.007873524 +,, +150,0.02584118438804487,0.007916184 +,, +151,0.02179638995627979,0.007804518 +,, +152,-0.033907066377101364,0.008017892 +,, +153,-0.004057493217568348,0.007977711 +,, +154,0.0881456017995952,0.007700703 +,, +155,-0.030927352792779226,0.007565164 +,, +156,-0.05428327885603775,0.007904165 +,, +157,0.006241892907618979,0.007764823 +,, +158,-0.06337918991289547,0.007927408 +,, +159,-0.060168981029129466,0.007884043 +,, +160,-0.059264213131900986,0.007820913 +,, +161,0.05347586909975829,0.007894961 +,, +162,0.05867371041275338,0.007741635 +,, +163,-0.04780081526776444,0.0076313056 +,, +164,0.011983687100694383,0.007826738 +,, +165,0.03612258265412288,0.0078485925 +,, +166,0.008208482511355059,0.007923691 +,, +167,-0.025602218071141783,0.0076683476 +,, +168,-0.022564084422375858,0.007849395 +,, +169,-0.025756043145654155,0.008243648 +,, +170,0.09622291100060226,0.008323584 +,, +171,-0.055872953633806136,0.0084346365 +,, +172,0.002474476414154916,0.008533811 +,, +173,-0.003811716436377066,0.008782488 +,, +174,0.038662374080205016,0.008873643 +,, +175,0.1338598330467758,0.008888138 +,, +176,0.04826148608673141,0.008590636 +,, +177,-0.059668717531881243,0.009116266 +,, +178,-0.06608559052844698,0.0089461375 +,, +179,0.010346101629254076,0.008508241 +,, +180,0.1220254375993062,0.008263703 +,, +181,0.05533387334711676,0.008159729 +,, +182,-0.006387859349557478,0.0081051495 +,, +183,-0.03591860586811453,0.0077546365 +,, +184,0.009146057925298184,0.007629416 +,, +185,0.004265855565032534,0.0075756563 +,, +186,-0.032722250864614534,0.0073037795 +,, +187,-0.009365296564316481,0.007007529 +,, +188,0.026513640523197123,0.0070983833 +,, +189,-0.008068907848293033,0.0070726215 +,, +190,0.0366230273144705,0.007085839 +,, +191,0.03130439569441966,0.0070583774 +,, +192,0.007460658028326184,0.0068005277 +,, +193,-0.0369025835447556,0.00681666 +,, +194,-0.14952025543081424,0.0066086957 +,, +195,-0.03167505159412653,0.0067581646 +,, +196,-0.06940598075646275,0.006944844 +,, +197,0.010425811391162658,0.0065717967 +,, +198,-0.02954565633366335,0.0062894537 +,, +199,-0.0298469557546419,0.0063204193 +,, +200,0.048324354965201016,0.0063961274 +,, +201,-0.060215697075004,0.0062630577 +,, +202,-0.04075596054504691,0.006385171 +,, +203,-0.016160200777038055,0.0063078664 +,, +204,0.04067277356933696,0.0063694417 +,, +205,-0.06012255243479899,0.0060950117 +,, +206,0.02479656340564075,0.0062709255 +,, +207,0.08863652514186501,0.0065209977 +,, +208,-0.0011755722502281097,0.006340006 +,, +209,-0.027435076687525078,0.006474778 +,, +210,-0.022240742351529653,0.0063971914 +,, +211,-0.0639497332208046,0.006349617 +,, +212,0.0992588874437108,0.0060998867 +,, +213,-0.049809326203250896,0.0061355657 +,, +214,0.015467118901925071,0.0060756244 +,, +215,0.015757935808703265,0.0062592314 +,, +216,0.13879728717064024,0.005870505 +,, +217,-0.07076780195137142,0.005837211 +,, +218,0.031045967715961013,0.0057791797 +,, +219,-0.06926181992403664,0.005591608 +,, +220,-0.02188611541475037,0.0054245694 +,, +221,-0.07177613099951179,0.0056076837 +,, +222,0.02562816633857835,0.005767855 +,, +223,-0.12159655612988701,0.0057838922 +,, +224,-0.006522265732167312,0.0059193918 +,, +225,-0.04075930387881675,0.00552589 +,, +226,-0.061283209795115076,0.005704405 +,, +227,0.08152336832930711,0.0054674693 +,, +228,-0.04963600852022586,0.005680097 +,, +229,0.09988252144907263,0.005847095 +,, +230,-0.09627781386967582,0.0061057126 +,, +231,-0.0934081457031967,0.006135303 +,, +232,-0.09730892935555992,0.006066792 +,, +233,-0.04372713934362904,0.005963771 +,, +234,0.024627816663951647,0.005739975 +,, +235,0.03264079072240894,0.005813966 +,, +236,-0.008747104564045372,0.00580691 +,, +237,-0.0061459785958557014,0.005958374 +,, +238,-0.025356021458218848,0.0058803153 +,, +239,-0.03621666477849354,0.0058792084 +,, +240,0.1453063236466605,0.005652588 +,, +241,0.013141899928308304,0.005467559 +,, +242,0.050065501807789854,0.005469047 +,, +243,0.06178425191319317,0.0054667136 +,, +244,0.01140042781437687,0.005457503 +,, +245,0.1601979944558255,0.0054744883 +,, +246,-0.06750885609315185,0.005458428 +,, +247,-0.10271763376174178,0.005487296 +,, +248,-0.027359749879148944,0.005292962 +,, +249,0.08534234640178384,0.0050754272 +,, +250,-0.012000221957132667,0.005090325 +,, +251,-0.041374158379549546,0.0052569495 +,, +252,-0.03630859385763387,0.0051961266 +,, +253,-0.07174375198167708,0.0052097486 +,, +254,-0.024729980321709248,0.005309787 +,, +255,-0.06463612263074725,0.0053571933 +,, +256,0.024516229906699324,0.005246134 +,, +257,0.10497013037680758,0.005201134 +,, +258,-0.03259312995715302,0.0054008705 +,, +259,-0.09323113115438063,0.005316445 +,, +260,-0.14032555098374572,0.0055139065 +,, +261,-0.06570917778357513,0.0054254136 +,, +262,-0.024193817389197868,0.0054273074 +,, +263,-0.03954077824871785,0.0055618426 +,, +264,0.015454791929528047,0.0054359483 +,, +265,0.10623826088375668,0.0055935187 +,, +266,0.025875332747677508,0.005602519 +,, +267,0.02040781293247722,0.005675219 +,, +268,0.08207530138215216,0.005508154 +,, +269,0.04033163910192383,0.0056658 +,, +270,-0.0027821932021388565,0.005427112 +,, +271,0.00854802488682592,0.005184242 +,, +272,0.0021899737551824214,0.0054330626 +,, +273,-0.16481364552300828,0.0052553625 +,, +274,0.037669752168637334,0.005137074 +,, +275,-0.062304521924853105,0.0049403897 +,, +276,0.06885092666126716,0.004833267 +,, +277,0.05813305568517049,0.00465387 +,, +278,0.0019083162266465004,0.0045900894 +,, +279,0.0005248048259492363,0.004555408 +,, +280,0.013439182043971862,0.004857788 +,, +281,-0.09339715850648714,0.0049341284 +,, +282,0.06809029747630507,0.0047065816 +,, +283,0.07413784607171876,0.0047200955 +,, +284,0.10985248509488153,0.0047404333 +,, +285,0.05319035893575946,0.0047004186 +,, +286,0.12483849169321815,0.0048402185 +,, +287,0.02231329676570106,0.004919482 +,, +288,-0.09393671377316017,0.0050935135 +,, +289,0.18299664123788645,0.005063246 +,, +290,0.031235583166447783,0.0047773127 +,, +291,0.004464523613433078,0.004832393 +,, +292,0.055711608506722674,0.0047424813 +,, +293,-0.018822026623737498,0.0047391644 +,, +294,0.03043719089926153,0.004881492 +,, +295,-0.04905585642614666,0.00494863 +,, +296,-0.14648617277625925,0.0050296835 +,, +297,-0.15869376598775453,0.0050590634 +,, +298,0.06448938440406765,0.004910364 +,, +299,-0.01864041655752602,0.0048138397 +,, +300,-0.014843403587261418,0.0048563695 +,, +301,-0.032270882085879214,0.004725837 +,, +302,-0.15204299706435026,0.005021532 +,, +303,0.042528775099401075,0.005168277 +,, +304,0.0628715889023813,0.005011716 +,, +305,-0.010123067948399157,0.004822015 +,, +306,0.0359663670975208,0.004661045 +,, +307,0.12498251496030266,0.004567806 +,, +308,0.0590374973697022,0.004523878 +,, +309,-0.011106231309101787,0.0047308295 +,, +310,-0.07220960256310699,0.004642966 +,, +311,0.051587470148865146,0.0046033063 +,, +312,-0.14629685879564858,0.004354543 +,, +313,-0.07542463982809876,0.00422345 +,, +314,0.08681026660317344,0.0042403187 +,, +315,-0.08083985574219929,0.0046130084 +,, +316,-0.004678879158906954,0.0045602033 +,, +317,0.027458515500193095,0.0044538863 +,, +318,-0.028562621943194807,0.0044705262 +,, +319,-0.09814416536000592,0.0042575835 +,, +320,0.05106764769060687,0.004264278 +,, +321,0.12377424566307826,0.0041419743 +,, +322,0.02355830406286602,0.004052129 +,, +323,-0.008650265827820601,0.0039242436 +,, +324,-0.03290956732441712,0.0037850111 +,, +325,-0.03502426087988773,0.0034822044 +,, +326,0.07983040721252783,0.0035128954 +,, +327,0.00739619245844636,0.0034760344 +,, +328,-0.03113412294337803,0.003427165 +,, +329,0.08658297210415979,0.0033458625 +,, +330,-0.03990618047142003,0.0034201262 +,, +331,-0.020000452665566507,0.0038642138 +,, +332,0.08227492682788612,0.00387008 +,, +333,0.060551411772972186,0.003879546 +,, +334,0.027044567439328523,0.003977562 +,, +335,-0.057293063598330335,0.0041400227 +,, +336,0.01020052140722405,0.0041529005 +,, +337,-0.029455084112767056,0.0042182216 +,, +338,0.07037434474309744,0.0041941693 +,, +339,-0.07791218390142995,0.0042140465 +,, +340,0.10350941270235017,0.0040386682 +,, +341,0.13785249487750798,0.0037491308 +,, +342,0.12063975321466132,0.0037041823 +,, +343,0.06999974447819401,0.0037164632 +,, +344,-0.09779063879380917,0.0036125612 +,, +345,-0.1742015666400185,0.0033701803 +,, +346,0.02553897072193649,0.003206561 +,, +347,0.04008153445569794,0.003049308 +,, +348,-0.016528496298304676,0.0029211715 +,, +349,-0.12281439916034742,0.0029971832 +,, +350,-0.06463651073037252,0.0031138198 +,, +351,-0.1205760158062407,0.003042331 +,, +352,-0.08177551216057026,0.0030804093 +,, +353,-0.0533092378612928,0.0029486802 +,, +354,0.17806087319413944,0.002996923 +,, +355,-0.07089451678147499,0.0029818472 +,, +356,-0.1298295222993551,0.0030159433 +,, +357,0.007739526805792872,0.0030697635 +,, +358,-0.05247397937897361,0.0031509504 +,, +359,0.01100919928211616,0.0030464414 +,, +360,0.06932044497472173,0.0028993026 +,, +361,0.042567933755754045,0.0028431062 +,, +362,0.06474586656302853,0.002842519 +,, +363,-0.006974253437910104,0.003114042 +,, +364,0.020041008142565205,0.0030059158 +,, +365,-0.013317734919622036,0.0031718377 +,, +366,-0.013986120223192622,0.0032990153 +,, +367,-0.053839784209465474,0.0033004645 +,, +368,0.009011735398121105,0.0034388423 +,, +369,-0.06644600305730733,0.003431335 +,, +370,0.0625251084711047,0.0035038304 +,, +371,-0.018576984964998107,0.003555777 +,, +372,0.08062917715342328,0.0035579181 +,, +373,0.02126066654343341,0.00344878 +,, +374,-0.05666387561573949,0.003668848 +,, +375,0.1554823759004757,0.0035509455 +,, +376,0.061328235250273276,0.003515996 +,, +377,-0.021661794757762358,0.003621233 +,, +378,-0.0008771553287130335,0.0035541516 +,, +379,-0.045892789443704604,0.0035739723 +,, +380,-0.055787129020932205,0.0035632234 +,, +381,0.029992713566686487,0.0037005625 +,, +382,-0.04610142373737068,0.0036168557 +,, +383,-0.00999696595969772,0.0035267782 +,, +384,0.01980629093919867,0.003529625 +,, +385,-0.010428256562264593,0.0034791995 +,, +386,0.13330447430699094,0.0033669532 +,, +387,-0.02868646517440828,0.0033413756 +,, +388,-0.0036416376031119246,0.0032457628 +,, +389,-0.07972758281466595,0.00326313 +,, +390,-0.12463244272792708,0.0032733716 +,, +391,0.013061381124250905,0.0031835102 +,, +392,-0.02222465886932018,0.0032087662 +,, +393,0.1597655400631429,0.0031948138 +,, +394,0.012187978255387599,0.003007216 +,, +395,0.041944347320028066,0.0029921124 +,, +396,0.06348181512150938,0.003020805 +,, +397,0.09648064478515259,0.0028801016 +,, +398,0.02727612524722786,0.0029464185 +,, +399,-0.09952358278060663,0.0028379273 +,, +400,0.12031595779950474,0.0027249907 +,, +401,0.06278728299504507,0.002695386 +,, +402,-0.04791677449001801,0.0026794672 +,, +403,0.06318132252945553,0.002735395 +,, +404,0.0111951279340969,0.0027150828 +,, +405,-0.08530243015911998,0.0028524597 +,, +406,-0.034047218077938216,0.0027905018 +,, +407,0.062292127626059235,0.002882365 +,, +408,0.09208290425909052,0.0027978588 +,, +409,-0.10897552587581444,0.0028928067 +,, +410,-0.14531273588811364,0.0029323287 +,, +411,0.057234324586540986,0.003114619 +,, +412,0.09052176438280676,0.0032254017 +,, +413,0.05432186591464415,0.0031854133 +,, +414,-0.02210404392074428,0.0033857622 +,, +415,-0.10707020963786017,0.003287709 +,, +416,0.04277369573802764,0.0032431737 +,, +417,-0.02231389896141693,0.0033213347 +,, +418,0.007837229965795944,0.0034633086 +,, +419,0.06816880864164117,0.003504065 +,, +420,0.08740930654629812,0.0036496674 +,, +421,-0.07496735246249514,0.003693853 +,, +422,-0.05134353921235495,0.003573691 +,, +423,0.03387878344549808,0.0037425898 +,, +424,0.09387086388234228,0.0038778633 +,, +425,0.0730910754680821,0.0038061433 +,, +426,-0.08367880715197457,0.004416661 +,, +427,-0.001851917536489429,0.004411501 +,, +428,0.052707724081997476,0.0043706344 +,, +429,-0.010555145483026551,0.0047676335 +,, +430,-0.00814468357085229,0.004815673 +,, +431,0.038867094589926016,0.0045618555 +,, +432,0.04905233998004832,0.0048903003 +,, +433,0.0027135418184495927,0.0048577874 +,, +434,0.08161762919378493,0.004568345 +,, +435,0.04063681985927382,0.0047095087 +,, +436,0.013317019186722026,0.0043004802 +,, +437,0.07953208909800058,0.004158512 +,, +438,-0.024054859025852714,0.004246843 +,, +439,0.036988499071522754,0.003936456 +,, +440,-0.0175359435815584,0.0038993838 +,, +441,0.2099906988576387,0.0038526668 +,, +442,0.05878230672772023,0.0035223279 +,, +443,-0.10475605580639055,0.0034675982 +,, +444,0.07829708947126655,0.003449841 +,, +445,-0.07945175518011274,0.0033970077 +,, +446,0.012590481935974885,0.0032083844 +,, +447,0.05683770913799835,0.0032191083 +,, +448,0.1238182164338251,0.0030373132 +,, +449,-0.01714327872172553,0.002832634 +,, +450,0.042126081597180294,0.0027092178 +,, +451,-0.029871023660504065,0.0027993654 +,, +452,-0.11274071794042978,0.0028605787 +,, +453,0.042238346751341964,0.0026752297 +,, +454,-0.014618952323794725,0.0027000871 +,, +455,-0.012329220195906827,0.0025785663 +,, +456,-0.013504246956830529,0.0024993517 +,, +457,-0.01889017041582624,0.002478785 +,, +458,0.12538741442945653,0.0024777818 +,, +459,-0.0421108460974973,0.002458927 +,, +460,0.05408303958700357,0.0023675757 +,, +461,-0.22389660251190321,0.0022650189 +,, +462,0.04840745663788779,0.0021926733 +,, +463,0.04848876348963526,0.0022442187 +,, +464,0.09947202090945238,0.0020998898 +,, +465,0.1452513678683839,0.0021024528 +,, +466,0.014892403147617958,0.0020906813 +,, +467,0.06832467297037784,0.0020193045 +,, +468,0.04710280383308244,0.0019543953 +,, +469,-0.013927789194846572,0.0018932378 +,, +470,-0.05652133756436192,0.0019138686 +,, +471,-0.03381179679165443,0.0019028299 +,, +472,-0.03656352626911953,0.0018164773 +,, +473,0.04735693954629644,0.0017435333 +,, +474,0.08017465538743276,0.0018003061 +,, +475,-0.04231725337330106,0.0017218882 +,, +476,0.010298668958874525,0.001684279 +,, +477,-0.05836767499227963,0.0016763661 +,, +478,0.0924910599152952,0.0017205063 +,, +479,0.04478606061477024,0.0017603608 +,, +480,-0.06663392681108188,0.0017245576 +,, +481,-0.014916070246681965,0.0016624087 +,, +482,-0.04083940540247635,0.0016428211 +,, +483,-0.14662020133778694,0.0017297517 +,, +484,-0.08884121093716203,0.0016518139 +,, +485,0.01402854333848266,0.0016908478 +,, +486,0.058109238770753455,0.0017396715 +,, +487,0.08803814680558682,0.0017373674 +,, +488,0.03837799573980915,0.0016673455 +,, +489,-0.03028638776813956,0.00158371 +,, +490,-0.09095682756311825,0.0015815301 +,, +491,0.12202754202754172,0.0016661342 +,, +492,-0.025493565283066143,0.0016753192 +,, +493,-0.03116274019372467,0.0016785947 +,, +494,-0.2246427081005089,0.001772495 +,, +495,-0.013339495250657933,0.0017736319 +,, +496,0.11602208282125387,0.0018837117 +,, +497,-0.10806231045086777,0.0018875517 +,, +498,0.00923711079210545,0.001921845 +,, +499,-0.06651454053770002,0.002022256 +,, +500,-0.0364852675925938,0.0020047543 +,, +501,-0.08382435559398266,0.0020039312 +,, +502,0.041425829922140486,0.0020370446 +,, +503,0.09643423876858463,0.0019321634 +,, +504,0.07243370208856452,0.0019290233 +,, +505,0.02317026808101299,0.0019330776 +,, +506,-0.026269047942106712,0.0017912758 +,, +507,0.026576635680417664,0.0017951546 +,, +508,0.00960417740939623,0.0017879081 +,, +509,0.0371368640179019,0.0017211379 +,, +510,0.07824816807426746,0.0017111085 +,, +511,0.052026749647303194,0.0015988341 +,, +512,0.029330838991545285,0.0015991902 +,, +513,0.014909225987156521,0.001596882 +,, +514,0.11794309584866888,0.0014749819 +,, +515,-0.11962335186936793,0.0014614912 +,, +516,0.01343719998539114,0.0014667718 +,, +517,0.1582445395205174,0.0014564025 +,, +518,-0.015780697482923732,0.0015266333 +,, +519,0.06060236255333497,0.0015924074 +,, +520,-0.1930388863354292,0.0016178818 +,, +521,0.1533207901973182,0.0016894946 +,, +522,-0.04124573917953448,0.0016992416 +,, +523,0.02285772110411845,0.001764079 +,, +524,0.050861951330881464,0.001823039 +,, +525,0.1319987015002982,0.0018382244 +,, +526,0.07875908943012286,0.0018616552 +,, +527,0.01770303520843458,0.0018887825 +,, +528,-0.15565667177744982,0.001908743 +,, +529,-0.026923738454610522,0.0019206364 +,, +530,-0.03609686236877792,0.0019301809 +,, +531,-0.11160632675440871,0.0019566207 +,, +532,0.027905608780592513,0.001962641 +,, +533,0.02018799880372936,0.0019991086 +,, +534,-0.0005809795441915344,0.0019544857 +,, +535,-0.02845020806260351,0.002035989 +,, +536,0.15681317039901052,0.0021131162 +,, +537,0.05171019914795138,0.0021001971 +,, +538,0.051942271943924236,0.0020319205 +,, +539,0.0454230190514426,0.0019359395 +,, +540,0.1065350208399661,0.0019430589 +,, +541,-0.05485069997398473,0.0019210335 +,, +542,-0.03375890585612036,0.001963705 +,, +543,-0.06350007531689078,0.0018713437 +,, +544,0.0968413583918549,0.002005464 +,, +545,-0.09144512940953411,0.0018908065 +,, +546,0.05980006825238416,0.0019246961 +,, +547,0.08620821996487787,0.0019107908 +,, +548,0.024356727748597415,0.0018855829 +,, +549,-0.08614271701351017,0.001898213 +,, +550,-0.04473443363308492,0.001863506 +,, +551,0.018437343690495475,0.0018874655 +,, +552,-0.01982421712274544,0.0018460691 +,, +553,0.0006653106962454317,0.0019216121 +,, +554,0.04643287284470139,0.0018543961 +,, +555,0.06973335068147202,0.0018949676 +,, +556,-0.07691789191274301,0.0018328143 +,, +557,0.04080802739736469,0.0019074312 +,, +558,-0.06804243233409887,0.0019691791 +,, +559,0.09289713435083422,0.0020057554 +,, +560,-0.11410947975976238,0.0020674686 +,, +561,-0.021272329327930724,0.0020839528 +,, +562,-0.18801594235212232,0.0021000248 +,, +563,-0.013134991451850164,0.0020321535 +,, +564,-0.1467793139758765,0.0020988125 +,, +565,0.17665908216142018,0.0021145795 +,, +566,0.024712910189891885,0.002098894 +,, +567,-0.0053686199010262135,0.0020550906 +,, +568,0.008037324696203028,0.002026525 +,, +569,-0.016108848794768725,0.002051998 +,, +570,0.04643451391771215,0.0019867157 +,, +571,-0.08400453886466357,0.0019181123 +,, +572,-0.13696036073976126,0.0018791903 +,, +573,0.0025769061106088384,0.001876292 +,, +574,0.05317053134336358,0.0018547786 +,, +575,0.03688708203202092,0.0018406834 +,, +576,-0.06045143521784356,0.001769655 +,, +577,-0.037763438947084796,0.0018028232 +,, +578,-0.0006454569901213278,0.0017970685 +,, +579,0.03318905299150328,0.001787435 +,, +580,-0.08387028356358645,0.0017943239 +,, +581,0.09250413275610252,0.0017846429 +,, +582,0.08283209984178158,0.0017564133 +,, +583,0.0008869902009903952,0.0017647475 +,, +584,-0.021561991272079698,0.0016614299 +,, +585,-0.039852938514200256,0.0016063887 +,, +586,-0.006234596672137903,0.0016128639 +,, +587,-0.014535579316156413,0.0014955291 +,, +588,0.010480188095925482,0.0014464997 +,, +589,0.07749613709021924,0.001398869 +,, +590,-0.12093946017111488,0.0013778738 +,, +591,0.023469143893999227,0.0013745308 +,, +592,-0.015063997753945416,0.0013672747 +,, +593,-0.03379495131619074,0.0013323801 +,, +594,-0.11952038321764427,0.0013053135 +,, +595,0.06960039940064713,0.0012961403 +,, +596,-0.08812699186502548,0.0013024146 +,, +597,0.055505441850784855,0.0013250818 +,, +598,-0.02274065181438572,0.0013150477 +,, +599,-0.014460929046795926,0.0012520016 +,, +600,0.11374051897449591,0.0012569686 +,, +601,0.1314527856761012,0.0012697636 +,, +602,0.013311680922967922,0.0013004772 +,, +603,-0.05519723506255879,0.0013117633 +,, +604,-0.06648503252896285,0.0013281712 +,, +605,0.0053787039344831075,0.0014254451 +,, +606,0.005381921606513172,0.0014005085 +,, +607,0.07561719258484269,0.0013961944 +,, +608,-0.033460306822817934,0.0014525477 +,, +609,0.042659492561327755,0.001519191 +,, +610,0.006011854617697411,0.0015447239 +,, +611,0.0062527528718843775,0.0014677106 +,, +612,0.21883341348585497,0.0013843477 +,, +613,-0.11005951076826592,0.0013700541 +,, +614,-0.0033452121015280223,0.0013428393 +,, +615,0.05433805796371618,0.0012454236 +,, +616,-0.10703419951066083,0.0012533384 +,, +617,-0.029519178123001893,0.0012849139 +,, +618,-0.0532546302105872,0.0012527828 +,, +619,-0.06489453466116989,0.0012444494 +,, +620,-0.035251515061319544,0.0012695559 +,, +621,0.0667678386769824,0.0013112181 +,, +622,-0.1581860419208495,0.0013514087 +,, +623,-0.006323591652064604,0.0013635417 +,, +624,-0.10023951187542966,0.0014409134 +,, +625,0.03127291492470566,0.0014583239 +,, +626,0.0669298084918447,0.0015712464 +,, +627,0.09413944234583731,0.0015128684 +,, +628,0.03869056549047898,0.0015506728 +,, +629,-0.03296695885164596,0.0016227548 +,, +630,-0.024029321856949313,0.001630237 +,, +631,0.009581000458424027,0.0016448429 +,, +632,-0.04567250256521142,0.0015883439 +,, +633,-0.019793830380115122,0.0016770326 +,, +634,-0.06473864149104813,0.0018076223 +,, +635,-0.04005884998765266,0.0018845929 +,, +636,0.04085690189211568,0.0018737372 +,, +637,-0.04546608203049793,0.0019149439 +,, +638,-0.028384133258889808,0.001947668 +,, +639,-0.05893491917200572,0.0019284387 +,, +640,0.06323819899164691,0.0018166339 +,, +641,0.1031669167652805,0.0017884426 +,, +642,-0.012617006521842316,0.0018237059 +,, +643,0.021387948330553602,0.0017315864 +,, +644,0.10538734966021086,0.0015924254 +,, +645,0.011386918319341202,0.0014983196 +,, +646,0.017707596884291125,0.0014402111 +,, +647,0.08283934288276404,0.0014410474 +,, +648,-0.020392599695122762,0.00134639 +,, +649,-0.03267445241423944,0.0013404057 +,, +650,0.0651159863797674,0.0014057737 +,, +651,-0.08002777567134539,0.0014291888 +,, +652,-0.09949643214823078,0.0014712964 +,, +653,-0.11476157819015051,0.0014658961 +,, +654,-0.016764144565506414,0.0014968063 +,, +655,0.06258708784344083,0.0015456323 +,, +656,0.07269161229405108,0.0015468011 +,, +657,0.10772624405377314,0.0015656151 +,, +658,0.020707542105475478,0.0015823657 +,, +659,-0.07161271747591103,0.0015337823 +,, +660,-0.04812490880380656,0.0016243138 +,, +661,-0.09407079270027045,0.001617544 +,, +662,0.026535994653415346,0.0016212013 +,, +663,-0.0914837449022242,0.0016805325 +,, +664,-0.0857142277111683,0.0015839137 +,, +665,0.09725913285388446,0.0015407805 +,, +666,-0.06795845891405923,0.0015286522 +,, +667,-0.005567197544145589,0.0015011401 +,, +668,0.01370760973911897,0.0015630085 +,, +669,0.04695937345808549,0.0015728811 +,, +670,-0.08968619421781548,0.0015028403 +,, +671,0.14039163072612204,0.001527854 +,, +672,0.007495121689482916,0.0014969496 +,, +673,0.049622375580551006,0.001485966 +,, +674,-0.11175280357315429,0.0015473317 +,, +675,0.04654483281125271,0.0015247725 +,, +676,-0.06816157323528413,0.0016368071 +,, +677,-0.08730185823124258,0.0016484316 +,, +678,0.07147126114670563,0.0016139641 +,, +679,0.07853993638615239,0.0016643817 +,, +680,-0.026399807003829386,0.0016313422 +,, +681,-0.020713986559095475,0.0016340213 +,, +682,0.001804119024131686,0.0016779233 +,, +683,-0.08766819218603167,0.0016093779 +,, +684,-0.030928019583703198,0.0015863193 +,, +685,-0.05547149758896797,0.0016307397 +,, +686,-0.2089204064259479,0.0015177442 +,, +687,0.06285010609386098,0.0015409404 +,, +688,0.008282565974234157,0.0016464142 +,, +689,0.07804330640243702,0.0015846018 +,, +690,0.021975214929378387,0.0015498542 +,, +691,0.04943046535845573,0.0016153401 +,, +692,-0.04594455598784577,0.0016121231 +,, +693,0.005212174361807775,0.0016613256 +,, +694,0.09971486610772964,0.0016914855 +,, +695,-0.012963087788330916,0.0016825378 +,, +696,0.036403101187304554,0.001616143 +,, +697,0.06776066026978264,0.0015601993 +,, +698,-0.03038982154718392,0.0014514831 +,, +699,0.015686740180293,0.001539682 +,, +700,0.04579589846236572,0.0016030623 +,, +701,-0.022358911165720245,0.0014816022 +,, +702,-0.003934117355747689,0.0014149598 +,, +703,-0.04766940169115307,0.0014740886 +,, +704,0.047042503885358695,0.0014727968 +,, +705,-0.0842446980130241,0.0014626773 +,, +706,-0.06466039784894771,0.0014940612 +,, +707,-0.035096267342702825,0.0015993789 +,, +708,-0.01311456746263285,0.0015763196 +,, +709,0.009095697161270533,0.0015403478 +,, +710,0.005435087386450425,0.0014987963 +,, +711,0.008981001211498321,0.0015496066 +,, +712,-0.09545815135305152,0.0016412217 +,, +713,-0.010158361773863506,0.0016250139 +,, +714,-0.14311933613860736,0.0015875548 +,, +715,-0.14473123247216382,0.0016020648 +,, +716,0.02691451042150673,0.0016212922 +,, +717,-0.03185532931697853,0.0016419597 +,, +718,-0.058275977352751515,0.0016763052 +,, +719,-0.03642766206538432,0.0016095603 +,, +720,-0.08567411795285346,0.0016297493 +,, +721,0.11036086931652833,0.0016001847 +,, +722,-0.008265766959156318,0.0015412235 +,, +723,-0.1017415544511614,0.001488206 +,, +724,-0.06309536887370817,0.0014943511 +,, +725,0.18462073236924814,0.0015017873 +,, +726,0.07297610028136224,0.0015227173 +,, +727,-0.08328400629712307,0.0013941253 +,, +728,0.08510895706042132,0.0013641053 +,, +729,-0.005606537733908519,0.0013759707 +,, +730,0.1680616656665337,0.0013534677 +,, +731,0.20963980150955674,0.0013629955 +,, +732,0.028332366871336223,0.0013518177 +,, +733,0.007640250799664601,0.0012926044 +,, +734,0.07759565331166883,0.0012653987 +,, +735,0.11603894726572432,0.0012558422 +,, +736,-0.14749878071716757,0.0012732265 +,, +737,0.05672363247891506,0.0012746044 +,, +738,0.02697346225146774,0.001308241 +,, +739,-0.056805473689377606,0.0013368338 +,, +740,0.029083780696928588,0.0013069513 +,, +741,0.024169613497177583,0.0013355837 +,, +742,-0.0932903632949009,0.0013662466 +,, +743,-0.057320286851568,0.0013604152 +,, +744,-0.11747940238911972,0.0013837991 +,, +745,-0.06156256744340216,0.0013333956 +,, +746,-0.07168512196398899,0.0013569245 +,, +747,-0.09288177949215681,0.0014491847 +,, +748,0.01705034155201169,0.0014151782 +,, +749,0.04586546176173788,0.0013548705 +,, +750,0.002969318013759964,0.0014152452 +,, +751,0.07105794787197511,0.0013835679 +,, +752,0.038178722880756355,0.0014039897 +,, +753,0.11536263814946354,0.0014107164 +,, +754,-0.10690226596096611,0.0013971764 +,, +755,-0.03384275884476416,0.0014266205 +,, +756,-0.02916568133088475,0.0013308247 +,, +757,0.0919050900154044,0.0012277218 +,, +758,0.029491396508862643,0.0012604803 +,, +759,0.05710882290593085,0.0012660809 +,, +760,0.013499628739275207,0.0012378447 +,, +761,-0.016471076702691406,0.0012316607 +,, +762,0.023286883452198325,0.0011885753 +,, +763,0.06979950380295113,0.0012399842 +,, +764,-0.043890494034903506,0.0012556204 +,, +765,0.03986990101577312,0.0012823503 +,, +766,0.011412173989693408,0.0013519218 +,, +767,0.04814905067761509,0.0013685614 +,, +768,0.14481916110256723,0.0014297662 +,, +769,0.010772755006747847,0.0015234398 +,, +770,0.06831946910675582,0.001632954 +,, +771,0.031812557404205175,0.0016493459 +,, +772,-0.018336452684512776,0.0016499363 +,, +773,-0.014720219149760095,0.0016605736 +,, +774,0.035832341648929705,0.0016189611 +,, +775,-0.10991464077006738,0.0016293947 +,, +776,-0.012464423155177894,0.0016620125 +,, +777,-0.00572117742931845,0.001639788 +,, +778,0.027722783574636634,0.0015269461 +,, +779,0.04406318131316249,0.0015961269 +,, +780,-0.042784056103841964,0.001488887 +,, +781,0.02047130697162549,0.001520644 +,, +782,0.0032896299951629127,0.0015393305 +,, +783,-0.03303425528226478,0.001533292 +,, +784,0.08590196994619917,0.0015550258 +,, +785,0.0473155799071668,0.001564206 +,, +786,0.059669081709644946,0.0015619909 +,, +787,0.00653759768447075,0.0016349365 +,, +788,0.006086541070656606,0.0016121648 +,, +789,-0.07408900442000242,0.0015286787 +,, +790,-0.077368313992081,0.0015791589 +,, +791,-0.03184839221267921,0.0015862 +,, +792,0.04964312353950445,0.0016430316 +,, +793,-0.15453877289722973,0.0016612026 +,, +794,-0.030158414753877018,0.001705773 +,, +795,-0.06350248682229874,0.0017095857 +,, +796,-0.08499965904921863,0.0016576644 +,, +797,0.13231797245046056,0.0015880729 +,, +798,-0.0056437094570299315,0.001561817 +,, +799,0.021662305632722333,0.0014963356 +,, +800,0.04697495541792328,0.0013792056 +,, +801,-0.05656280589761763,0.0013139077 +,, +802,-0.08135008669002727,0.0012064158 +,, +803,0.02315248041624433,0.0011227394 +,, +804,-0.08388748023076584,0.0010652235 +,, +805,-0.01854027225703772,0.0010063705 +,, +806,0.020227117889672956,0.0009313339 +,, +807,0.017536381702498768,0.0009764189 +,, +808,-0.037417277677199455,0.0010051323 +,, +809,-0.014186968350354661,0.0009578525 +,, +810,0.05478808128914167,0.0009976508 +,, +811,-0.07207896952528775,0.0009936997 +,, +812,0.03121069452536346,0.0009953096 +,, +813,-0.07564699260282326,0.0009886217 +,, +814,-0.012215070167636032,0.0009773261 +,, +815,0.03100949444673732,0.0009670124 +,, +816,-0.01133546251079301,0.00096423505 +,, +817,-0.043247744928602234,0.00092683884 +,, +818,0.03183235947754899,0.0009833213 +,, +819,-0.00973696419226884,0.0009936083 +,, +820,-0.026545899440965512,0.0009949177 +,, +821,-0.03320311771766071,0.0010193815 +,, +822,-0.007560760424591867,0.0010876535 +,, +823,0.022267975358910487,0.0011380808 +,, +824,-0.08158946206226082,0.0012768683 +,, +825,-0.0569940019703053,0.0012991218 +,, +826,-0.01781863682870514,0.001354258 +,, +827,-0.022043492412986143,0.0015106251 +,, +828,0.005726870056667929,0.0014538752 +,, +829,0.03997026415292691,0.0016875062 +,, +830,-0.01783074787492754,0.0016941025 +,, +831,0.007443651501855593,0.0017291667 +,, +832,0.01285447156231902,0.0017540681 +,, +833,0.022908769336872692,0.001710535 +,, +834,-0.03775857443580198,0.0017356438 +,, +835,0.03146486321145145,0.0017026818 +,, +836,0.026354264593634158,0.0017175585 +,, +837,-0.051769959968607525,0.0017254393 +,, +838,0.02203600392911515,0.0017319337 +,, +839,0.08638688545260728,0.0016571712 +,, +840,-0.04419576588587712,0.0016579969 +,, +841,0.0989419390486286,0.0016339527 +,, +842,-0.08648264676353254,0.001519721 +,, +843,-0.057789553448766476,0.0015197153 +,, +844,0.1082680283655637,0.001353838 +,, +845,-0.07408567036072215,0.0013635682 +,, +846,0.032965744527478726,0.0013530097 +,, +847,0.14820756793298911,0.0012082167 +,, +848,-0.14854570723343785,0.0011938962 +,, +849,0.030148484631223972,0.0010359393 +,, +850,-0.006072160874125425,0.0010175499 +,, +851,0.0504146365269158,0.00094430224 +,, +852,0.0077351700022983,0.00095826306 +,, +853,0.014051160517296997,0.000947598 +,, +854,-0.047173106610733644,0.00093136076 +,, +855,0.05267655774827479,0.00094816927 +,, +856,0.01050195183103942,0.00090709666 +,, +857,0.096282498306281,0.00089000363 +,, +858,-0.021824521273335964,0.0008932337 +,, +859,0.048003431904673335,0.0008874565 +,, +860,0.0405485760822527,0.0008836418 +,, +861,0.06489449561000964,0.0009614425 +,, +862,-0.024017338891728232,0.0010424951 +,, +863,0.00693026443935316,0.0010786236 +,, +864,0.009100166710488744,0.0010896754 +,, +865,0.0924515038964833,0.0011004236 +,, +866,-0.0775147130530732,0.0010793271 +,, +867,-0.12423168263398718,0.001067426 +,, +868,0.04166673086076307,0.0011082778 +,, +869,-0.08642256476738966,0.0011463218 +,, +870,0.07226285071412346,0.0011629704 +,, +871,-0.03340911630550146,0.0011140731 +,, +872,0.026122803964947476,0.0011147743 +,, +873,-0.023846150784118655,0.0011119181 +,, +874,-0.019487785257851914,0.0012028043 +,, +875,0.021753419477359773,0.0012490407 +,, +876,-0.04698392866853118,0.001245074 +,, +877,0.07287603212225924,0.0014086334 +,, +878,0.09642535401637983,0.0013753776 +,, +879,-0.07513336590167415,0.0014156981 +,, +880,0.02065406860257479,0.0014426743 +,, +881,0.04216817799082321,0.0014448159 +,, +882,-0.061762220500703444,0.001494928 +,, +883,0.005109948839682084,0.0015137955 +,, +884,0.05834575986619052,0.0015403086 +,, +885,0.07294088094189798,0.0014997727 +,, +886,-0.03361437223386248,0.0015864294 +,, +887,0.02495953975702263,0.001590246 +,, +888,0.14330207751162766,0.001572282 +,, +889,-0.050205558397817165,0.0016519555 +,, +890,-0.012594006031340997,0.0016490292 +,, +891,-0.020287447609524938,0.0017483182 +,, +892,0.0485925870392082,0.0017382024 +,, +893,0.015563000779763254,0.0016975643 +,, +894,0.004495097862161589,0.0016574562 +,, +895,-0.08520977651159746,0.0017741101 +,, +896,-0.04774926109804469,0.0017445082 +,, +897,0.04755676409662875,0.001645507 +,, +898,-0.008969296017262929,0.0016793279 +,, +899,-0.10926919236844292,0.0015680805 +,, +900,0.02240966450808162,0.0017065794 +,, +901,-0.11613803757237892,0.0015966247 +,, +902,-0.03902173076233929,0.0015480891 +,, +903,-0.023942039639297336,0.0016080616 +,, +904,0.05449655822952741,0.0015988548 +,, +905,0.05724036580619677,0.0015027409 +,, +906,-0.013179272865774097,0.0015189637 +,, +907,0.029606169302860863,0.0014535878 +,, +908,0.061750087892242435,0.001484911 +,, +909,-0.06678296294050574,0.001481435 +,, +910,-0.021734390095362877,0.0013689965 +,, +911,0.12653330990049322,0.0013781392 +,, +912,0.028237226414812258,0.0013740219 +,, +913,0.020446278769759435,0.0013306374 +,, +914,-0.014704132027099567,0.0013018546 +,, +915,0.05388080842226259,0.0012775271 +,, +916,-0.1524413626915631,0.0011926976 +,, +917,0.07524425707663726,0.0012097347 +,, +918,-0.0412041142035956,0.0012356499 +,, +919,-0.015229739827114536,0.0012392241 +,, +920,0.045521984121899936,0.0012708695 +,, +921,-0.03637859100871772,0.0012496191 +,, +922,-0.09324838640990421,0.0012434265 +,, +923,0.09256943728191923,0.0012441714 +,, +924,0.02275840269626867,0.0012208009 +,, +925,-0.08874184822268857,0.0011978479 +,, +926,0.04585116244075357,0.0011823905 +,, +927,-0.09686762280720304,0.0012313379 +,, +928,-0.08567628440809194,0.0011789666 +,, +929,-0.030908696209924414,0.001210572 +,, +930,-0.036890416668950474,0.0010731418 +,, +931,0.0014466257517982972,0.00108647 +,, +932,-0.03271253679941116,0.0010750546 +,, +933,0.14557612086533622,0.001055077 +,, +934,0.010255717928914589,0.0010376245 +,, +935,-0.06795477280169784,0.0010033941 +,, +936,0.07892781880237168,0.0010275629 +,, +937,0.010540711829597163,0.0009324721 +,, +938,-0.0558571935948388,0.00087942835 +,, +939,0.020545334958220633,0.00079536356 +,, +940,0.014437601224081307,0.0008116107 +,, +941,0.06628480207263385,0.0007895584 +,, +942,0.10554300566096236,0.0007302059 +,, +943,-0.031483661496743566,0.0006918643 +,, +944,0.03398933073924138,0.00068389054 +,, +945,-0.0324516391786472,0.00070424855 +,, +946,-0.005934750107913767,0.00071053277 +,, +947,-0.17825732794211618,0.00074432173 +,, +948,-0.07029850134542223,0.0007698019 +,, +949,-0.0032865389304768365,0.0008218087 +,, +950,-0.047795090194895036,0.0008365728 +,, +951,-0.05207659408220988,0.00084103865 +,, +952,0.11865413572749475,0.00084248197 +,, +953,-0.032460377806898755,0.0008920681 +,, +954,-0.1192314971147035,0.0009082917 +,, +955,0.10864813462299915,0.00087403355 +,, +956,-0.023030745095320715,0.0008673421 +,, +957,0.09173654590347288,0.00087674864 +,, +958,-0.03949152050028487,0.0008622051 +,, +959,-0.01129964385886565,0.0008164689 +,, +960,0.0423808481576944,0.0007855097 +,, +961,-0.05423552690404053,0.000818237 +,, +962,0.021841563354696475,0.00081053993 +,, +963,-0.011776613808783039,0.00076409854 +,, +964,0.03613940614198717,0.0007725415 +,, +965,0.009278967084022725,0.0007710451 +,, +966,-0.04750055114974758,0.00076997624 +,, +967,-0.015434323617827685,0.0007644209 +,, +968,-0.00548402859375785,0.00075979176 +,, +969,0.0798116442068432,0.00076298544 +,, +970,-0.09506012600492621,0.0007329193 +,, +971,0.07451816302822048,0.0006682177 +,, +972,-0.06462393900640835,0.00071620126 +,, +973,-0.02172902881056727,0.00072191557 +,, +974,-0.12271358079323161,0.0006783087 +,, +975,0.049083446936739036,0.000700054 +,, +976,0.01962237968165481,0.00070882315 +,, +977,0.016543575264463248,0.00070343225 +,, +978,0.057914034192337614,0.0007215146 +,, +979,-0.13238567566606269,0.00071637164 +,, +980,-0.014234454586650973,0.0007803744 +,, +981,-0.09198106637971612,0.0007832245 +,, +982,-0.03184465062762387,0.0007240266 +,, +983,0.10963209367625827,0.0007644796 +,, +984,0.016535318274775147,0.00081334834 +,, +985,-0.043218634309970465,0.00080815546 +,, +986,0.1488792053525355,0.0007955482 +,, +987,-0.06379716987547497,0.0007927171 +,, +988,0.05590268305282983,0.0008125946 +,, +989,-0.12601573241779418,0.00085731986 +,, +990,-0.03237056743549869,0.00087744324 +,, +991,-0.008655201793518516,0.0009319998 +,, +992,0.05580060910795471,0.00095575926 +,, +993,-0.07205290038842252,0.0009917759 +,, +994,0.02533603383531701,0.0010477038 +,, +995,0.001915550514977174,0.0011287092 +,, +996,-0.015148736593699141,0.001170326 +,, +997,0.02345254884625209,0.0011970011 +,, +998,-0.07548239991181832,0.0011807921 +,, +999,-0.012463844268081954,0.0011292533 +,, diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/tb/events/events.out.tfevents.1646140978.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/tb/events/events.out.tfevents.1646140978.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..8df0396 Binary files /dev/null and b/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/tb/events/events.out.tfevents.1646140978.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/warn.txt b/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/warn.txt new file mode 100644 index 0000000..f7e0929 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/warn.txt @@ -0,0 +1,8 @@ +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/backup.txt b/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/backup.txt new file mode 100644 index 0000000..e0ed068 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/backup.txt @@ -0,0 +1,7 @@ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.001 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 888 diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/log.txt b/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/log.txt new file mode 100644 index 0000000..1b858fc --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/log.txt @@ -0,0 +1,5048 @@ +Logging to ../log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/ +log dir: ../log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/ +pkl_file: ../archive_tester/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888.pkl +checkpoint_dir: ../checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/ +results_dir: ../results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.001 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 888 +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.0275 | +--------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint 0 +--------------------------------------------------------- +| time-step | 1 | +| y_out | 0.0338 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 2 | +| y_out | 0.1 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 3 | +| y_out | -0.052 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 4 | +| y_out | 0.0202 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 5 | +| y_out | 0.0738 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 6 | +| y_out | -0.125 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 7 | +| y_out | 0.106 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 8 | +| y_out | -0.0371 | +--------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2213418 | +| time-step | 9 | +| y_out | 0.13 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18151541 | +| time-step | 10 | +| y_out | 0.0482 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15199599 | +| time-step | 11 | +| y_out | 0.0499 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13638918 | +| time-step | 12 | +| y_out | 0.0342 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11555026 | +| time-step | 13 | +| y_out | 0.0338 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1025746 | +| time-step | 14 | +| y_out | 0.0288 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08903063 | +| time-step | 15 | +| y_out | -0.00663 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.082288586 | +| time-step | 16 | +| y_out | 0.0607 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.075040475 | +| time-step | 17 | +| y_out | 0.107 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07045758 | +| time-step | 18 | +| y_out | -0.0585 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06912045 | +| time-step | 19 | +| y_out | 0.042 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06851025 | +| time-step | 20 | +| y_out | -0.0466 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.067601785 | +| time-step | 21 | +| y_out | 0.0607 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.062033504 | +| time-step | 22 | +| y_out | -0.103 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06083738 | +| time-step | 23 | +| y_out | -0.0759 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.056046844 | +| time-step | 24 | +| y_out | 0.0133 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.052001763 | +| time-step | 25 | +| y_out | 0.0665 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050352037 | +| time-step | 26 | +| y_out | 0.0716 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.048408873 | +| time-step | 27 | +| y_out | 0.0257 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.049339093 | +| time-step | 28 | +| y_out | -0.164 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.049158037 | +| time-step | 29 | +| y_out | 0.061 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047397114 | +| time-step | 30 | +| y_out | -0.0206 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04551185 | +| time-step | 31 | +| y_out | -0.202 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.047057323 | +| time-step | 32 | +| y_out | -0.044 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.046180792 | +| time-step | 33 | +| y_out | 0.114 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04624776 | +| time-step | 34 | +| y_out | 0.0339 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.047249004 | +| time-step | 35 | +| y_out | 0.043 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.049095653 | +| time-step | 36 | +| y_out | -0.102 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.048703287 | +| time-step | 37 | +| y_out | 2.42e-05 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04864519 | +| time-step | 38 | +| y_out | 0.0621 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.047138564 | +| time-step | 39 | +| y_out | -0.000787 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045966193 | +| time-step | 40 | +| y_out | -0.0536 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04617403 | +| time-step | 41 | +| y_out | 0.076 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0450994 | +| time-step | 42 | +| y_out | -0.103 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.044573702 | +| time-step | 43 | +| y_out | 0.0325 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043455534 | +| time-step | 44 | +| y_out | -0.00575 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041777693 | +| time-step | 45 | +| y_out | -0.0295 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039458685 | +| time-step | 46 | +| y_out | -0.0945 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040559005 | +| time-step | 47 | +| y_out | -0.082 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0386033 | +| time-step | 48 | +| y_out | 0.0332 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03760356 | +| time-step | 49 | +| y_out | -0.0744 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035813883 | +| time-step | 50 | +| y_out | 0.0279 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035661034 | +| time-step | 51 | +| y_out | -0.0879 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035118055 | +| time-step | 52 | +| y_out | -0.00367 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03511173 | +| time-step | 53 | +| y_out | 0.0312 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035650674 | +| time-step | 54 | +| y_out | 0.089 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035762656 | +| time-step | 55 | +| y_out | -0.00147 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03560549 | +| time-step | 56 | +| y_out | -0.0236 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0349341 | +| time-step | 57 | +| y_out | 0.0138 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03472092 | +| time-step | 58 | +| y_out | 0.0997 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035575476 | +| time-step | 59 | +| y_out | 0.0299 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035381716 | +| time-step | 60 | +| y_out | 0.0243 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034856774 | +| time-step | 61 | +| y_out | 0.116 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034570497 | +| time-step | 62 | +| y_out | 0.0291 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034000043 | +| time-step | 63 | +| y_out | 0.143 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03381919 | +| time-step | 64 | +| y_out | 0.0235 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03339701 | +| time-step | 65 | +| y_out | 0.0922 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0337741 | +| time-step | 66 | +| y_out | 0.0502 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.033254325 | +| time-step | 67 | +| y_out | 0.0538 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032633655 | +| time-step | 68 | +| y_out | 0.0655 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03219404 | +| time-step | 69 | +| y_out | -0.0817 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.032805838 | +| time-step | 70 | +| y_out | -0.014 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032841913 | +| time-step | 71 | +| y_out | -0.127 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031482257 | +| time-step | 72 | +| y_out | 0.0578 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031539984 | +| time-step | 73 | +| y_out | -0.146 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031192064 | +| time-step | 74 | +| y_out | -0.035 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03175701 | +| time-step | 75 | +| y_out | 0.0706 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031267945 | +| time-step | 76 | +| y_out | 0.147 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029908344 | +| time-step | 77 | +| y_out | -0.0494 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0303464 | +| time-step | 78 | +| y_out | 0.0748 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.029448232 | +| time-step | 79 | +| y_out | -0.0401 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028521877 | +| time-step | 80 | +| y_out | 0.0922 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02831181 | +| time-step | 81 | +| y_out | -0.0251 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.029110854 | +| time-step | 82 | +| y_out | -0.00572 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028900817 | +| time-step | 83 | +| y_out | 0.107 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028351873 | +| time-step | 84 | +| y_out | 0.0404 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02713016 | +| time-step | 85 | +| y_out | 0.026 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.027275499 | +| time-step | 86 | +| y_out | 0.016 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02898648 | +| time-step | 87 | +| y_out | -0.00893 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02910329 | +| time-step | 88 | +| y_out | 0.000483 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.028891105 | +| time-step | 89 | +| y_out | 0.0492 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029155355 | +| time-step | 90 | +| y_out | -0.062 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028093165 | +| time-step | 91 | +| y_out | 0.0348 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027509117 | +| time-step | 92 | +| y_out | 0.00665 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02631087 | +| time-step | 93 | +| y_out | 0.0926 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.024781937 | +| time-step | 94 | +| y_out | -0.0199 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024651572 | +| time-step | 95 | +| y_out | -0.0102 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0238366 | +| time-step | 96 | +| y_out | 0.00391 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.021582127 | +| time-step | 97 | +| y_out | 0.0504 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020574383 | +| time-step | 98 | +| y_out | 0.0516 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02091686 | +| time-step | 99 | +| y_out | 0.0785 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.020916494 | +| time-step | 100 | +| y_out | 0.0513 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint 100 +------------------------------------------------------------ +| perf/mse | 0.021655126 | +| time-step | 101 | +| y_out | 0.0353 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021175686 | +| time-step | 102 | +| y_out | 0.0149 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020749059 | +| time-step | 103 | +| y_out | -0.0444 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02127223 | +| time-step | 104 | +| y_out | 0.0404 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.020565215 | +| time-step | 105 | +| y_out | 0.0658 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020838127 | +| time-step | 106 | +| y_out | 0.0308 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02159388 | +| time-step | 107 | +| y_out | 0.0182 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.021593995 | +| time-step | 108 | +| y_out | 0.00225 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02105179 | +| time-step | 109 | +| y_out | 0.00584 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02001243 | +| time-step | 110 | +| y_out | 0.0848 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.020365763 | +| time-step | 111 | +| y_out | -0.0577 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020517994 | +| time-step | 112 | +| y_out | 0.0462 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020068152 | +| time-step | 113 | +| y_out | 0.0317 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020240221 | +| time-step | 114 | +| y_out | -0.173 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02081648 | +| time-step | 115 | +| y_out | 0.115 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.020471169 | +| time-step | 116 | +| y_out | 0.0842 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019733286 | +| time-step | 117 | +| y_out | 0.0645 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019559998 | +| time-step | 118 | +| y_out | -0.0417 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01958919 | +| time-step | 119 | +| y_out | -0.00702 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.019794539 | +| time-step | 120 | +| y_out | 0.0694 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018008139 | +| time-step | 121 | +| y_out | -0.098 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017552197 | +| time-step | 122 | +| y_out | 0.0795 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018022334 | +| time-step | 123 | +| y_out | 0.0151 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017377157 | +| time-step | 124 | +| y_out | 0.0848 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01712075 | +| time-step | 125 | +| y_out | -0.0948 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.017562747 | +| time-step | 126 | +| y_out | -0.00282 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017126106 | +| time-step | 127 | +| y_out | 0.0558 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016692223 | +| time-step | 128 | +| y_out | 0.11 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016295671 | +| time-step | 129 | +| y_out | 0.0238 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016403737 | +| time-step | 130 | +| y_out | 0.062 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01732798 | +| time-step | 131 | +| y_out | -0.0471 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.017429734 | +| time-step | 132 | +| y_out | 0.0148 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01712677 | +| time-step | 133 | +| y_out | 0.00518 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.017159015 | +| time-step | 134 | +| y_out | 0.0627 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016970944 | +| time-step | 135 | +| y_out | 0.0728 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016358491 | +| time-step | 136 | +| y_out | -0.0689 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016560799 | +| time-step | 137 | +| y_out | -0.0652 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016877415 | +| time-step | 138 | +| y_out | -0.0274 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017120881 | +| time-step | 139 | +| y_out | 0.0366 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017035149 | +| time-step | 140 | +| y_out | 0.0603 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016782813 | +| time-step | 141 | +| y_out | -0.0266 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01638801 | +| time-step | 142 | +| y_out | -0.00258 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015880505 | +| time-step | 143 | +| y_out | 0.0414 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015267524 | +| time-step | 144 | +| y_out | -0.0229 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0156107005 | +| time-step | 145 | +| y_out | -0.0516 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015585728 | +| time-step | 146 | +| y_out | -0.0258 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015725685 | +| time-step | 147 | +| y_out | -0.0717 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01553901 | +| time-step | 148 | +| y_out | 0.087 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015121599 | +| time-step | 149 | +| y_out | 0.0255 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015083885 | +| time-step | 150 | +| y_out | 0.0258 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015403369 | +| time-step | 151 | +| y_out | 0.0218 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015506953 | +| time-step | 152 | +| y_out | -0.0339 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015268986 | +| time-step | 153 | +| y_out | -0.00406 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015932553 | +| time-step | 154 | +| y_out | 0.0881 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01559755 | +| time-step | 155 | +| y_out | -0.0309 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015623331 | +| time-step | 156 | +| y_out | -0.0543 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015851144 | +| time-step | 157 | +| y_out | 0.00624 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015993834 | +| time-step | 158 | +| y_out | -0.0634 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01616678 | +| time-step | 159 | +| y_out | -0.0602 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015920011 | +| time-step | 160 | +| y_out | -0.0593 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014885281 | +| time-step | 161 | +| y_out | 0.0535 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014697814 | +| time-step | 162 | +| y_out | 0.0587 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015226157 | +| time-step | 163 | +| y_out | -0.0478 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015763143 | +| time-step | 164 | +| y_out | 0.012 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015888304 | +| time-step | 165 | +| y_out | 0.0361 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015365997 | +| time-step | 166 | +| y_out | 0.00821 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014655883 | +| time-step | 167 | +| y_out | -0.0256 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014129279 | +| time-step | 168 | +| y_out | -0.0226 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013963118 | +| time-step | 169 | +| y_out | -0.0258 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013838867 | +| time-step | 170 | +| y_out | 0.0962 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014186429 | +| time-step | 171 | +| y_out | -0.0559 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0143125625 | +| time-step | 172 | +| y_out | 0.00247 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.014567261 | +| time-step | 173 | +| y_out | -0.00381 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013981223 | +| time-step | 174 | +| y_out | 0.0387 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014193992 | +| time-step | 175 | +| y_out | 0.134 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014226446 | +| time-step | 176 | +| y_out | 0.0483 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014416695 | +| time-step | 177 | +| y_out | -0.0597 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01473509 | +| time-step | 178 | +| y_out | -0.0661 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.014725288 | +| time-step | 179 | +| y_out | 0.0103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014622453 | +| time-step | 180 | +| y_out | 0.122 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014817156 | +| time-step | 181 | +| y_out | 0.0553 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015053752 | +| time-step | 182 | +| y_out | -0.00639 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014922845 | +| time-step | 183 | +| y_out | -0.0359 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014320677 | +| time-step | 184 | +| y_out | 0.00915 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0138921235 | +| time-step | 185 | +| y_out | 0.00427 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.013571496 | +| time-step | 186 | +| y_out | -0.0327 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013630627 | +| time-step | 187 | +| y_out | -0.00937 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013863456 | +| time-step | 188 | +| y_out | 0.0265 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013980565 | +| time-step | 189 | +| y_out | -0.00807 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014103638 | +| time-step | 190 | +| y_out | 0.0366 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013648671 | +| time-step | 191 | +| y_out | 0.0313 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012918606 | +| time-step | 192 | +| y_out | 0.00746 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012076277 | +| time-step | 193 | +| y_out | -0.0369 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012533133 | +| time-step | 194 | +| y_out | -0.15 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012529286 | +| time-step | 195 | +| y_out | -0.0317 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012729259 | +| time-step | 196 | +| y_out | -0.0694 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0125234425 | +| time-step | 197 | +| y_out | 0.0104 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01248196 | +| time-step | 198 | +| y_out | -0.0295 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.012001619 | +| time-step | 199 | +| y_out | -0.0298 | +------------------------------------------------------------ +--------------------------------------------------------- +| perf/mse | 0.012085 | +| time-step | 200 | +| y_out | 0.0483 | +--------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint 200 +------------------------------------------------------------- +| perf/mse | 0.0121003315 | +| time-step | 201 | +| y_out | -0.0602 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01250341 | +| time-step | 202 | +| y_out | -0.0408 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.012854552 | +| time-step | 203 | +| y_out | -0.0162 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012434529 | +| time-step | 204 | +| y_out | 0.0407 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012821165 | +| time-step | 205 | +| y_out | -0.0601 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012978372 | +| time-step | 206 | +| y_out | 0.0248 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012783785 | +| time-step | 207 | +| y_out | 0.0886 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012412922 | +| time-step | 208 | +| y_out | -0.00118 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013082026 | +| time-step | 209 | +| y_out | -0.0274 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012463743 | +| time-step | 210 | +| y_out | -0.0222 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0119159315 | +| time-step | 211 | +| y_out | -0.0639 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.011504205 | +| time-step | 212 | +| y_out | 0.0993 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011533032 | +| time-step | 213 | +| y_out | -0.0498 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011533143 | +| time-step | 214 | +| y_out | 0.0155 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011066494 | +| time-step | 215 | +| y_out | 0.0158 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011071108 | +| time-step | 216 | +| y_out | 0.139 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011399285 | +| time-step | 217 | +| y_out | -0.0708 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010827815 | +| time-step | 218 | +| y_out | 0.031 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010404508 | +| time-step | 219 | +| y_out | -0.0693 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010643965 | +| time-step | 220 | +| y_out | -0.0219 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010983663 | +| time-step | 221 | +| y_out | -0.0718 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011280661 | +| time-step | 222 | +| y_out | 0.0256 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011255766 | +| time-step | 223 | +| y_out | -0.122 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011315351 | +| time-step | 224 | +| y_out | -0.00652 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010898156 | +| time-step | 225 | +| y_out | -0.0408 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010742856 | +| time-step | 226 | +| y_out | -0.0613 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010361671 | +| time-step | 227 | +| y_out | 0.0815 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010702359 | +| time-step | 228 | +| y_out | -0.0496 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01037641 | +| time-step | 229 | +| y_out | 0.0999 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010638231 | +| time-step | 230 | +| y_out | -0.0963 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011000741 | +| time-step | 231 | +| y_out | -0.0934 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010648107 | +| time-step | 232 | +| y_out | -0.0973 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010665002 | +| time-step | 233 | +| y_out | -0.0437 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010773917 | +| time-step | 234 | +| y_out | 0.0246 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011147271 | +| time-step | 235 | +| y_out | 0.0326 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010947985 | +| time-step | 236 | +| y_out | -0.00875 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011461743 | +| time-step | 237 | +| y_out | -0.00615 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011465353 | +| time-step | 238 | +| y_out | -0.0254 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011548136 | +| time-step | 239 | +| y_out | -0.0362 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011317678 | +| time-step | 240 | +| y_out | 0.145 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01101277 | +| time-step | 241 | +| y_out | 0.0131 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010909235 | +| time-step | 242 | +| y_out | 0.0501 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010884374 | +| time-step | 243 | +| y_out | 0.0618 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010763186 | +| time-step | 244 | +| y_out | 0.0114 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01102829 | +| time-step | 245 | +| y_out | 0.16 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01089759 | +| time-step | 246 | +| y_out | -0.0675 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010658663 | +| time-step | 247 | +| y_out | -0.103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010504929 | +| time-step | 248 | +| y_out | -0.0274 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011187745 | +| time-step | 249 | +| y_out | 0.0853 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011144376 | +| time-step | 250 | +| y_out | -0.012 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011077395 | +| time-step | 251 | +| y_out | -0.0414 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011236122 | +| time-step | 252 | +| y_out | -0.0363 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0109797595 | +| time-step | 253 | +| y_out | -0.0717 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010989378 | +| time-step | 254 | +| y_out | -0.0247 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010269151 | +| time-step | 255 | +| y_out | -0.0646 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010586536 | +| time-step | 256 | +| y_out | 0.0245 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01066226 | +| time-step | 257 | +| y_out | 0.105 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010843486 | +| time-step | 258 | +| y_out | -0.0326 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010546822 | +| time-step | 259 | +| y_out | -0.0932 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010866616 | +| time-step | 260 | +| y_out | -0.14 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01089716 | +| time-step | 261 | +| y_out | -0.0657 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01102573 | +| time-step | 262 | +| y_out | -0.0242 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01122058 | +| time-step | 263 | +| y_out | -0.0395 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.011261811 | +| time-step | 264 | +| y_out | 0.0155 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011647056 | +| time-step | 265 | +| y_out | 0.106 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011396077 | +| time-step | 266 | +| y_out | 0.0259 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010895356 | +| time-step | 267 | +| y_out | 0.0204 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010594012 | +| time-step | 268 | +| y_out | 0.0821 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009982122 | +| time-step | 269 | +| y_out | 0.0403 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009611089 | +| time-step | 270 | +| y_out | -0.00278 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009687115 | +| time-step | 271 | +| y_out | 0.00855 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009739076 | +| time-step | 272 | +| y_out | 0.00219 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009571998 | +| time-step | 273 | +| y_out | -0.165 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009289256 | +| time-step | 274 | +| y_out | 0.0377 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009065564 | +| time-step | 275 | +| y_out | -0.0623 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008992936 | +| time-step | 276 | +| y_out | 0.0689 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009405516 | +| time-step | 277 | +| y_out | 0.0581 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009802055 | +| time-step | 278 | +| y_out | 0.00191 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010002249 | +| time-step | 279 | +| y_out | 0.000525 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010391736 | +| time-step | 280 | +| y_out | 0.0134 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010695013 | +| time-step | 281 | +| y_out | -0.0934 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010549389 | +| time-step | 282 | +| y_out | 0.0681 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010508211 | +| time-step | 283 | +| y_out | 0.0741 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010766902 | +| time-step | 284 | +| y_out | 0.11 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010791292 | +| time-step | 285 | +| y_out | 0.0532 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011008025 | +| time-step | 286 | +| y_out | 0.125 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010703808 | +| time-step | 287 | +| y_out | 0.0223 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0106153665 | +| time-step | 288 | +| y_out | -0.0939 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010478398 | +| time-step | 289 | +| y_out | 0.183 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009825417 | +| time-step | 290 | +| y_out | 0.0312 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00932461 | +| time-step | 291 | +| y_out | 0.00446 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009172568 | +| time-step | 292 | +| y_out | 0.0557 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009338206 | +| time-step | 293 | +| y_out | -0.0188 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009650408 | +| time-step | 294 | +| y_out | 0.0304 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009822436 | +| time-step | 295 | +| y_out | -0.0491 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009617481 | +| time-step | 296 | +| y_out | -0.146 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009609596 | +| time-step | 297 | +| y_out | -0.159 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009172958 | +| time-step | 298 | +| y_out | 0.0645 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009404348 | +| time-step | 299 | +| y_out | -0.0186 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00974897 | +| time-step | 300 | +| y_out | -0.0148 | +----------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint 300 +------------------------------------------------------------ +| perf/mse | 0.009659214 | +| time-step | 301 | +| y_out | -0.0323 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009650087 | +| time-step | 302 | +| y_out | -0.152 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009558508 | +| time-step | 303 | +| y_out | 0.0425 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008911663 | +| time-step | 304 | +| y_out | 0.0629 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008500017 | +| time-step | 305 | +| y_out | -0.0101 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008463617 | +| time-step | 306 | +| y_out | 0.036 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008380451 | +| time-step | 307 | +| y_out | 0.125 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008560829 | +| time-step | 308 | +| y_out | 0.059 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008684639 | +| time-step | 309 | +| y_out | -0.0111 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008560272 | +| time-step | 310 | +| y_out | -0.0722 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00865485 | +| time-step | 311 | +| y_out | 0.0516 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008592058 | +| time-step | 312 | +| y_out | -0.146 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008361543 | +| time-step | 313 | +| y_out | -0.0754 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0085406955 | +| time-step | 314 | +| y_out | 0.0868 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00899319 | +| time-step | 315 | +| y_out | -0.0808 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009028759 | +| time-step | 316 | +| y_out | -0.00468 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00926211 | +| time-step | 317 | +| y_out | 0.0275 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009524745 | +| time-step | 318 | +| y_out | -0.0286 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0092332205 | +| time-step | 319 | +| y_out | -0.0981 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009254497 | +| time-step | 320 | +| y_out | 0.0511 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008958961 | +| time-step | 321 | +| y_out | 0.124 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008968334 | +| time-step | 322 | +| y_out | 0.0236 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008997877 | +| time-step | 323 | +| y_out | -0.00865 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009054659 | +| time-step | 324 | +| y_out | -0.0329 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008929395 | +| time-step | 325 | +| y_out | -0.035 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008791028 | +| time-step | 326 | +| y_out | 0.0798 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008621386 | +| time-step | 327 | +| y_out | 0.0074 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008276341 | +| time-step | 328 | +| y_out | -0.0311 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00802771 | +| time-step | 329 | +| y_out | 0.0866 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007813783 | +| time-step | 330 | +| y_out | -0.0399 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0082202675 | +| time-step | 331 | +| y_out | -0.02 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008203571 | +| time-step | 332 | +| y_out | 0.0823 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008702431 | +| time-step | 333 | +| y_out | 0.0606 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008423993 | +| time-step | 334 | +| y_out | 0.027 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008752415 | +| time-step | 335 | +| y_out | -0.0573 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008889762 | +| time-step | 336 | +| y_out | 0.0102 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008702272 | +| time-step | 337 | +| y_out | -0.0295 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009433094 | +| time-step | 338 | +| y_out | 0.0704 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009802917 | +| time-step | 339 | +| y_out | -0.0779 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009853077 | +| time-step | 340 | +| y_out | 0.104 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0097324485 | +| time-step | 341 | +| y_out | 0.138 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009619629 | +| time-step | 342 | +| y_out | 0.121 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009217979 | +| time-step | 343 | +| y_out | 0.07 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009695167 | +| time-step | 344 | +| y_out | -0.0978 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009033231 | +| time-step | 345 | +| y_out | -0.174 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008923811 | +| time-step | 346 | +| y_out | 0.0255 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009237295 | +| time-step | 347 | +| y_out | 0.0401 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008707397 | +| time-step | 348 | +| y_out | -0.0165 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008889573 | +| time-step | 349 | +| y_out | -0.123 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009206372 | +| time-step | 350 | +| y_out | -0.0646 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008988985 | +| time-step | 351 | +| y_out | -0.121 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009025356 | +| time-step | 352 | +| y_out | -0.0818 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008861664 | +| time-step | 353 | +| y_out | -0.0533 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008521282 | +| time-step | 354 | +| y_out | 0.178 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008602491 | +| time-step | 355 | +| y_out | -0.0709 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008645901 | +| time-step | 356 | +| y_out | -0.13 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008593101 | +| time-step | 357 | +| y_out | 0.00774 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008487901 | +| time-step | 358 | +| y_out | -0.0525 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008191287 | +| time-step | 359 | +| y_out | 0.011 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008271532 | +| time-step | 360 | +| y_out | 0.0693 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008348331 | +| time-step | 361 | +| y_out | 0.0426 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008694865 | +| time-step | 362 | +| y_out | 0.0647 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008881613 | +| time-step | 363 | +| y_out | -0.00697 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008868958 | +| time-step | 364 | +| y_out | 0.02 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009162227 | +| time-step | 365 | +| y_out | -0.0133 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00931981 | +| time-step | 366 | +| y_out | -0.014 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009015773 | +| time-step | 367 | +| y_out | -0.0538 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008895373 | +| time-step | 368 | +| y_out | 0.00901 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009197822 | +| time-step | 369 | +| y_out | -0.0664 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008726108 | +| time-step | 370 | +| y_out | 0.0625 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008916206 | +| time-step | 371 | +| y_out | -0.0186 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008774358 | +| time-step | 372 | +| y_out | 0.0806 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008648316 | +| time-step | 373 | +| y_out | 0.0213 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008675615 | +| time-step | 374 | +| y_out | -0.0567 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008376681 | +| time-step | 375 | +| y_out | 0.155 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008051926 | +| time-step | 376 | +| y_out | 0.0613 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008303893 | +| time-step | 377 | +| y_out | -0.0217 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008236652 | +| time-step | 378 | +| y_out | -0.000877 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0076520974 | +| time-step | 379 | +| y_out | -0.0459 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007512162 | +| time-step | 380 | +| y_out | -0.0558 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0075943572 | +| time-step | 381 | +| y_out | 0.03 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007268989 | +| time-step | 382 | +| y_out | -0.0461 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0072541414 | +| time-step | 383 | +| y_out | -0.01 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007113274 | +| time-step | 384 | +| y_out | 0.0198 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0074879713 | +| time-step | 385 | +| y_out | -0.0104 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0075280406 | +| time-step | 386 | +| y_out | 0.133 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0077055274 | +| time-step | 387 | +| y_out | -0.0287 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0076229894 | +| time-step | 388 | +| y_out | -0.00364 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0076871687 | +| time-step | 389 | +| y_out | -0.0797 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007881274 | +| time-step | 390 | +| y_out | -0.125 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007767598 | +| time-step | 391 | +| y_out | 0.0131 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007888826 | +| time-step | 392 | +| y_out | -0.0222 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007940272 | +| time-step | 393 | +| y_out | 0.16 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008078203 | +| time-step | 394 | +| y_out | 0.0122 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0076349094 | +| time-step | 395 | +| y_out | 0.0419 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0074360506 | +| time-step | 396 | +| y_out | 0.0635 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0070463954 | +| time-step | 397 | +| y_out | 0.0965 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0072657345 | +| time-step | 398 | +| y_out | 0.0273 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007447394 | +| time-step | 399 | +| y_out | -0.0995 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0073229196 | +| time-step | 400 | +| y_out | 0.12 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint 400 +------------------------------------------------------------ +| perf/mse | 0.006974215 | +| time-step | 401 | +| y_out | 0.0628 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0067043165 | +| time-step | 402 | +| y_out | -0.0479 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0066258474 | +| time-step | 403 | +| y_out | 0.0632 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006491606 | +| time-step | 404 | +| y_out | 0.0112 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006644386 | +| time-step | 405 | +| y_out | -0.0853 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006644313 | +| time-step | 406 | +| y_out | -0.034 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007075014 | +| time-step | 407 | +| y_out | 0.0623 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0067524374 | +| time-step | 408 | +| y_out | 0.0921 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0067051286 | +| time-step | 409 | +| y_out | -0.109 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006571252 | +| time-step | 410 | +| y_out | -0.145 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006660252 | +| time-step | 411 | +| y_out | 0.0572 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00707165 | +| time-step | 412 | +| y_out | 0.0905 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007256379 | +| time-step | 413 | +| y_out | 0.0543 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007263222 | +| time-step | 414 | +| y_out | -0.0221 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0070702685 | +| time-step | 415 | +| y_out | -0.107 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0073101074 | +| time-step | 416 | +| y_out | 0.0428 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0070546805 | +| time-step | 417 | +| y_out | -0.0223 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0071849586 | +| time-step | 418 | +| y_out | 0.00784 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0069580055 | +| time-step | 419 | +| y_out | 0.0682 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007267782 | +| time-step | 420 | +| y_out | 0.0874 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0074610235 | +| time-step | 421 | +| y_out | -0.075 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0071352487 | +| time-step | 422 | +| y_out | -0.0513 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0071086613 | +| time-step | 423 | +| y_out | 0.0339 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0070788027 | +| time-step | 424 | +| y_out | 0.0939 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0069850706 | +| time-step | 425 | +| y_out | 0.0731 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006988878 | +| time-step | 426 | +| y_out | -0.0837 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0069258674 | +| time-step | 427 | +| y_out | -0.00185 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006869568 | +| time-step | 428 | +| y_out | 0.0527 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0071738972 | +| time-step | 429 | +| y_out | -0.0106 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007338633 | +| time-step | 430 | +| y_out | -0.00814 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007385929 | +| time-step | 431 | +| y_out | 0.0389 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0075799907 | +| time-step | 432 | +| y_out | 0.0491 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0074687875 | +| time-step | 433 | +| y_out | 0.00271 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007415314 | +| time-step | 434 | +| y_out | 0.0816 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007560329 | +| time-step | 435 | +| y_out | 0.0406 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0076255873 | +| time-step | 436 | +| y_out | 0.0133 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007551273 | +| time-step | 437 | +| y_out | 0.0795 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0076690973 | +| time-step | 438 | +| y_out | -0.0241 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0074901045 | +| time-step | 439 | +| y_out | 0.037 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0074266596 | +| time-step | 440 | +| y_out | -0.0175 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0071635484 | +| time-step | 441 | +| y_out | 0.21 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0071878745 | +| time-step | 442 | +| y_out | 0.0588 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0071336953 | +| time-step | 443 | +| y_out | -0.105 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0071941717 | +| time-step | 444 | +| y_out | 0.0783 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0071380264 | +| time-step | 445 | +| y_out | -0.0795 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007155928 | +| time-step | 446 | +| y_out | 0.0126 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0071311267 | +| time-step | 447 | +| y_out | 0.0568 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0071576396 | +| time-step | 448 | +| y_out | 0.124 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0070625073 | +| time-step | 449 | +| y_out | -0.0171 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0068681017 | +| time-step | 450 | +| y_out | 0.0421 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0071220687 | +| time-step | 451 | +| y_out | -0.0299 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0069928826 | +| time-step | 452 | +| y_out | -0.113 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0070566796 | +| time-step | 453 | +| y_out | 0.0422 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0071178176 | +| time-step | 454 | +| y_out | -0.0146 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0072293133 | +| time-step | 455 | +| y_out | -0.0123 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0069733923 | +| time-step | 456 | +| y_out | -0.0135 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007098145 | +| time-step | 457 | +| y_out | -0.0189 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0073137046 | +| time-step | 458 | +| y_out | 0.125 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0074471524 | +| time-step | 459 | +| y_out | -0.0421 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007314945 | +| time-step | 460 | +| y_out | 0.0541 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0073141293 | +| time-step | 461 | +| y_out | -0.224 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0073226253 | +| time-step | 462 | +| y_out | 0.0484 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0075716553 | +| time-step | 463 | +| y_out | 0.0485 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0075203343 | +| time-step | 464 | +| y_out | 0.0995 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007616365 | +| time-step | 465 | +| y_out | 0.145 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007872241 | +| time-step | 466 | +| y_out | 0.0149 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007797871 | +| time-step | 467 | +| y_out | 0.0683 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007348449 | +| time-step | 468 | +| y_out | 0.0471 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007487183 | +| time-step | 469 | +| y_out | -0.0139 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007666313 | +| time-step | 470 | +| y_out | -0.0565 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007621041 | +| time-step | 471 | +| y_out | -0.0338 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007781482 | +| time-step | 472 | +| y_out | -0.0366 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0074633197 | +| time-step | 473 | +| y_out | 0.0474 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007517954 | +| time-step | 474 | +| y_out | 0.0802 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007420115 | +| time-step | 475 | +| y_out | -0.0423 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007126314 | +| time-step | 476 | +| y_out | 0.0103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007138537 | +| time-step | 477 | +| y_out | -0.0584 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007529103 | +| time-step | 478 | +| y_out | 0.0925 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007232096 | +| time-step | 479 | +| y_out | 0.0448 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0071658813 | +| time-step | 480 | +| y_out | -0.0666 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006865284 | +| time-step | 481 | +| y_out | -0.0149 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006643592 | +| time-step | 482 | +| y_out | -0.0408 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006437654 | +| time-step | 483 | +| y_out | -0.147 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0064374385 | +| time-step | 484 | +| y_out | -0.0888 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0061637172 | +| time-step | 485 | +| y_out | 0.014 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006397553 | +| time-step | 486 | +| y_out | 0.0581 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006467645 | +| time-step | 487 | +| y_out | 0.088 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0065242136 | +| time-step | 488 | +| y_out | 0.0384 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006476526 | +| time-step | 489 | +| y_out | -0.0303 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00637464 | +| time-step | 490 | +| y_out | -0.091 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006558396 | +| time-step | 491 | +| y_out | 0.122 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006630133 | +| time-step | 492 | +| y_out | -0.0255 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006634014 | +| time-step | 493 | +| y_out | -0.0312 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0067515434 | +| time-step | 494 | +| y_out | -0.225 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0070284335 | +| time-step | 495 | +| y_out | -0.0133 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0068016658 | +| time-step | 496 | +| y_out | 0.116 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0066306917 | +| time-step | 497 | +| y_out | -0.108 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006383223 | +| time-step | 498 | +| y_out | 0.00924 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0064143986 | +| time-step | 499 | +| y_out | -0.0665 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0063092476 | +| time-step | 500 | +| y_out | -0.0365 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint 500 +------------------------------------------------------------ +| perf/mse | 0.006410853 | +| time-step | 501 | +| y_out | -0.0838 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0063125803 | +| time-step | 502 | +| y_out | 0.0414 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006380326 | +| time-step | 503 | +| y_out | 0.0964 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0060056667 | +| time-step | 504 | +| y_out | 0.0724 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006038694 | +| time-step | 505 | +| y_out | 0.0232 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0060741603 | +| time-step | 506 | +| y_out | -0.0263 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0062994985 | +| time-step | 507 | +| y_out | 0.0266 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006276124 | +| time-step | 508 | +| y_out | 0.0096 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0061255046 | +| time-step | 509 | +| y_out | 0.0371 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0061656605 | +| time-step | 510 | +| y_out | 0.0782 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0059149642 | +| time-step | 511 | +| y_out | 0.052 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0061497926 | +| time-step | 512 | +| y_out | 0.0293 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006169011 | +| time-step | 513 | +| y_out | 0.0149 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0062508285 | +| time-step | 514 | +| y_out | 0.118 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006057213 | +| time-step | 515 | +| y_out | -0.12 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0061819674 | +| time-step | 516 | +| y_out | 0.0134 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006344872 | +| time-step | 517 | +| y_out | 0.158 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0063840365 | +| time-step | 518 | +| y_out | -0.0158 | +------------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0064421 | +| time-step | 519 | +| y_out | 0.0606 | +---------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0063485084 | +| time-step | 520 | +| y_out | -0.193 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006528827 | +| time-step | 521 | +| y_out | 0.153 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006375099 | +| time-step | 522 | +| y_out | -0.0412 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00626872 | +| time-step | 523 | +| y_out | 0.0229 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0062585557 | +| time-step | 524 | +| y_out | 0.0509 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006252048 | +| time-step | 525 | +| y_out | 0.132 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0060802856 | +| time-step | 526 | +| y_out | 0.0788 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00571565 | +| time-step | 527 | +| y_out | 0.0177 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0057090363 | +| time-step | 528 | +| y_out | -0.156 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005775889 | +| time-step | 529 | +| y_out | -0.0269 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005885468 | +| time-step | 530 | +| y_out | -0.0361 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00562531 | +| time-step | 531 | +| y_out | -0.112 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005705278 | +| time-step | 532 | +| y_out | 0.0279 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005722405 | +| time-step | 533 | +| y_out | 0.0202 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0058096964 | +| time-step | 534 | +| y_out | -0.000581 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0058348286 | +| time-step | 535 | +| y_out | -0.0285 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005756849 | +| time-step | 536 | +| y_out | 0.157 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005865877 | +| time-step | 537 | +| y_out | 0.0517 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005779306 | +| time-step | 538 | +| y_out | 0.0519 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0057658544 | +| time-step | 539 | +| y_out | 0.0454 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0057187616 | +| time-step | 540 | +| y_out | 0.107 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005913873 | +| time-step | 541 | +| y_out | -0.0549 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00569485 | +| time-step | 542 | +| y_out | -0.0338 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006070492 | +| time-step | 543 | +| y_out | -0.0635 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0059679695 | +| time-step | 544 | +| y_out | 0.0968 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005937689 | +| time-step | 545 | +| y_out | -0.0914 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0058847824 | +| time-step | 546 | +| y_out | 0.0598 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0060364204 | +| time-step | 547 | +| y_out | 0.0862 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0060583553 | +| time-step | 548 | +| y_out | 0.0244 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006164747 | +| time-step | 549 | +| y_out | -0.0861 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0062775738 | +| time-step | 550 | +| y_out | -0.0447 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006435971 | +| time-step | 551 | +| y_out | 0.0184 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0064379363 | +| time-step | 552 | +| y_out | -0.0198 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006262321 | +| time-step | 553 | +| y_out | 0.000665 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0065218285 | +| time-step | 554 | +| y_out | 0.0464 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0066356524 | +| time-step | 555 | +| y_out | 0.0697 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00690855 | +| time-step | 556 | +| y_out | -0.0769 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0065123164 | +| time-step | 557 | +| y_out | 0.0408 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006517934 | +| time-step | 558 | +| y_out | -0.068 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006416404 | +| time-step | 559 | +| y_out | 0.0929 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006382212 | +| time-step | 560 | +| y_out | -0.114 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006172291 | +| time-step | 561 | +| y_out | -0.0213 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006486813 | +| time-step | 562 | +| y_out | -0.188 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0063959197 | +| time-step | 563 | +| y_out | -0.0131 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0062121847 | +| time-step | 564 | +| y_out | -0.147 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006033571 | +| time-step | 565 | +| y_out | 0.177 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006053632 | +| time-step | 566 | +| y_out | 0.0247 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006283164 | +| time-step | 567 | +| y_out | -0.00537 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0062189503 | +| time-step | 568 | +| y_out | 0.00804 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006192473 | +| time-step | 569 | +| y_out | -0.0161 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0061711622 | +| time-step | 570 | +| y_out | 0.0464 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00621113 | +| time-step | 571 | +| y_out | -0.084 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0062055713 | +| time-step | 572 | +| y_out | -0.137 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006361153 | +| time-step | 573 | +| y_out | 0.00258 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006329463 | +| time-step | 574 | +| y_out | 0.0532 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006423714 | +| time-step | 575 | +| y_out | 0.0369 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0062316386 | +| time-step | 576 | +| y_out | -0.0605 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0061640413 | +| time-step | 577 | +| y_out | -0.0378 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0065376996 | +| time-step | 578 | +| y_out | -0.000645 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006798501 | +| time-step | 579 | +| y_out | 0.0332 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006835184 | +| time-step | 580 | +| y_out | -0.0839 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0067300596 | +| time-step | 581 | +| y_out | 0.0925 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0064291903 | +| time-step | 582 | +| y_out | 0.0828 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0064151757 | +| time-step | 583 | +| y_out | 0.000887 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006358838 | +| time-step | 584 | +| y_out | -0.0216 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0062949844 | +| time-step | 585 | +| y_out | -0.0399 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0065687774 | +| time-step | 586 | +| y_out | -0.00623 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006732789 | +| time-step | 587 | +| y_out | -0.0145 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006350413 | +| time-step | 588 | +| y_out | 0.0105 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0062813824 | +| time-step | 589 | +| y_out | 0.0775 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006291695 | +| time-step | 590 | +| y_out | -0.121 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0062973006 | +| time-step | 591 | +| y_out | 0.0235 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006482204 | +| time-step | 592 | +| y_out | -0.0151 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0062797316 | +| time-step | 593 | +| y_out | -0.0338 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0060943626 | +| time-step | 594 | +| y_out | -0.12 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006060673 | +| time-step | 595 | +| y_out | 0.0696 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0058491575 | +| time-step | 596 | +| y_out | -0.0881 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0056013167 | +| time-step | 597 | +| y_out | 0.0555 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0056335153 | +| time-step | 598 | +| y_out | -0.0227 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0055206358 | +| time-step | 599 | +| y_out | -0.0145 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053234184 | +| time-step | 600 | +| y_out | 0.114 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint 600 +------------------------------------------------------------- +| perf/mse | 0.0053103687 | +| time-step | 601 | +| y_out | 0.131 | +------------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0052162 | +| time-step | 602 | +| y_out | 0.0133 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005208586 | +| time-step | 603 | +| y_out | -0.0552 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0054678055 | +| time-step | 604 | +| y_out | -0.0665 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005652829 | +| time-step | 605 | +| y_out | 0.00538 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005549931 | +| time-step | 606 | +| y_out | 0.00538 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0057286425 | +| time-step | 607 | +| y_out | 0.0756 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0058101555 | +| time-step | 608 | +| y_out | -0.0335 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0058230096 | +| time-step | 609 | +| y_out | 0.0427 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0058073634 | +| time-step | 610 | +| y_out | 0.00601 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0057664067 | +| time-step | 611 | +| y_out | 0.00625 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005824791 | +| time-step | 612 | +| y_out | 0.219 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005838863 | +| time-step | 613 | +| y_out | -0.11 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005838423 | +| time-step | 614 | +| y_out | -0.00335 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005856662 | +| time-step | 615 | +| y_out | 0.0543 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0060580852 | +| time-step | 616 | +| y_out | -0.107 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005655325 | +| time-step | 617 | +| y_out | -0.0295 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0054848753 | +| time-step | 618 | +| y_out | -0.0533 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054236734 | +| time-step | 619 | +| y_out | -0.0649 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005423072 | +| time-step | 620 | +| y_out | -0.0353 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005385162 | +| time-step | 621 | +| y_out | 0.0668 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0052685244 | +| time-step | 622 | +| y_out | -0.158 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053974665 | +| time-step | 623 | +| y_out | -0.00632 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052526495 | +| time-step | 624 | +| y_out | -0.1 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004981737 | +| time-step | 625 | +| y_out | 0.0313 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004875469 | +| time-step | 626 | +| y_out | 0.0669 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0052874335 | +| time-step | 627 | +| y_out | 0.0941 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005451837 | +| time-step | 628 | +| y_out | 0.0387 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005573095 | +| time-step | 629 | +| y_out | -0.033 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00598256 | +| time-step | 630 | +| y_out | -0.024 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005923933 | +| time-step | 631 | +| y_out | 0.00958 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0059836316 | +| time-step | 632 | +| y_out | -0.0457 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0060538505 | +| time-step | 633 | +| y_out | -0.0198 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006047846 | +| time-step | 634 | +| y_out | -0.0647 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006080807 | +| time-step | 635 | +| y_out | -0.0401 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00599097 | +| time-step | 636 | +| y_out | 0.0409 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0058805295 | +| time-step | 637 | +| y_out | -0.0455 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005881214 | +| time-step | 638 | +| y_out | -0.0284 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0058441786 | +| time-step | 639 | +| y_out | -0.0589 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005528598 | +| time-step | 640 | +| y_out | 0.0632 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005639632 | +| time-step | 641 | +| y_out | 0.103 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0056080096 | +| time-step | 642 | +| y_out | -0.0126 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005362663 | +| time-step | 643 | +| y_out | 0.0214 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005540789 | +| time-step | 644 | +| y_out | 0.105 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005658085 | +| time-step | 645 | +| y_out | 0.0114 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0057937005 | +| time-step | 646 | +| y_out | 0.0177 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005652317 | +| time-step | 647 | +| y_out | 0.0828 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005586999 | +| time-step | 648 | +| y_out | -0.0204 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00555695 | +| time-step | 649 | +| y_out | -0.0327 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0055426257 | +| time-step | 650 | +| y_out | 0.0651 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005631237 | +| time-step | 651 | +| y_out | -0.08 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005731188 | +| time-step | 652 | +| y_out | -0.0995 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0056848605 | +| time-step | 653 | +| y_out | -0.115 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0056562508 | +| time-step | 654 | +| y_out | -0.0168 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005583243 | +| time-step | 655 | +| y_out | 0.0626 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0058037057 | +| time-step | 656 | +| y_out | 0.0727 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0057565453 | +| time-step | 657 | +| y_out | 0.108 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00593283 | +| time-step | 658 | +| y_out | 0.0207 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005832375 | +| time-step | 659 | +| y_out | -0.0716 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005958461 | +| time-step | 660 | +| y_out | -0.0481 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00596415 | +| time-step | 661 | +| y_out | -0.0941 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0057445727 | +| time-step | 662 | +| y_out | 0.0265 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0060045067 | +| time-step | 663 | +| y_out | -0.0915 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0060107643 | +| time-step | 664 | +| y_out | -0.0857 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0060831867 | +| time-step | 665 | +| y_out | 0.0973 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005690192 | +| time-step | 666 | +| y_out | -0.068 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005793244 | +| time-step | 667 | +| y_out | -0.00557 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0055814865 | +| time-step | 668 | +| y_out | 0.0137 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0055364585 | +| time-step | 669 | +| y_out | 0.047 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053845188 | +| time-step | 670 | +| y_out | -0.0897 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054389285 | +| time-step | 671 | +| y_out | 0.14 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005470776 | +| time-step | 672 | +| y_out | 0.0075 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00518021 | +| time-step | 673 | +| y_out | 0.0496 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004929944 | +| time-step | 674 | +| y_out | -0.112 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004721289 | +| time-step | 675 | +| y_out | 0.0465 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004790255 | +| time-step | 676 | +| y_out | -0.0682 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004781442 | +| time-step | 677 | +| y_out | -0.0873 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0047044973 | +| time-step | 678 | +| y_out | 0.0715 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004829833 | +| time-step | 679 | +| y_out | 0.0785 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0048114187 | +| time-step | 680 | +| y_out | -0.0264 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004737159 | +| time-step | 681 | +| y_out | -0.0207 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004797871 | +| time-step | 682 | +| y_out | 0.0018 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004972216 | +| time-step | 683 | +| y_out | -0.0877 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0050873416 | +| time-step | 684 | +| y_out | -0.0309 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052958406 | +| time-step | 685 | +| y_out | -0.0555 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052558226 | +| time-step | 686 | +| y_out | -0.209 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00505994 | +| time-step | 687 | +| y_out | 0.0629 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005301248 | +| time-step | 688 | +| y_out | 0.00828 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005145841 | +| time-step | 689 | +| y_out | 0.078 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005175805 | +| time-step | 690 | +| y_out | 0.022 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005072666 | +| time-step | 691 | +| y_out | 0.0494 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0050318367 | +| time-step | 692 | +| y_out | -0.0459 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00495977 | +| time-step | 693 | +| y_out | 0.00521 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0049736327 | +| time-step | 694 | +| y_out | 0.0997 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0049477825 | +| time-step | 695 | +| y_out | -0.013 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0050119488 | +| time-step | 696 | +| y_out | 0.0364 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005259874 | +| time-step | 697 | +| y_out | 0.0678 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005174082 | +| time-step | 698 | +| y_out | -0.0304 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005234071 | +| time-step | 699 | +| y_out | 0.0157 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005318279 | +| time-step | 700 | +| y_out | 0.0458 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint 700 +------------------------------------------------------------- +| perf/mse | 0.0053585297 | +| time-step | 701 | +| y_out | -0.0224 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054472187 | +| time-step | 702 | +| y_out | -0.00393 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054075853 | +| time-step | 703 | +| y_out | -0.0477 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052512554 | +| time-step | 704 | +| y_out | 0.047 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052173245 | +| time-step | 705 | +| y_out | -0.0842 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005176955 | +| time-step | 706 | +| y_out | -0.0647 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005014113 | +| time-step | 707 | +| y_out | -0.0351 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004791107 | +| time-step | 708 | +| y_out | -0.0131 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004639486 | +| time-step | 709 | +| y_out | 0.0091 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0046699205 | +| time-step | 710 | +| y_out | 0.00544 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004846975 | +| time-step | 711 | +| y_out | 0.00898 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004852234 | +| time-step | 712 | +| y_out | -0.0955 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0049797418 | +| time-step | 713 | +| y_out | -0.0102 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004992086 | +| time-step | 714 | +| y_out | -0.143 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005117629 | +| time-step | 715 | +| y_out | -0.145 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004990969 | +| time-step | 716 | +| y_out | 0.0269 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00531058 | +| time-step | 717 | +| y_out | -0.0319 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005671566 | +| time-step | 718 | +| y_out | -0.0583 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006027546 | +| time-step | 719 | +| y_out | -0.0364 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0058292653 | +| time-step | 720 | +| y_out | -0.0857 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0055674165 | +| time-step | 721 | +| y_out | 0.11 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005296134 | +| time-step | 722 | +| y_out | -0.00827 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005272624 | +| time-step | 723 | +| y_out | -0.102 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0053456556 | +| time-step | 724 | +| y_out | -0.0631 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053317016 | +| time-step | 725 | +| y_out | 0.185 | +------------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0054772 | +| time-step | 726 | +| y_out | 0.073 | +---------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052649626 | +| time-step | 727 | +| y_out | -0.0833 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0051203216 | +| time-step | 728 | +| y_out | 0.0851 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0048611336 | +| time-step | 729 | +| y_out | -0.00561 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0048834207 | +| time-step | 730 | +| y_out | 0.168 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004988238 | +| time-step | 731 | +| y_out | 0.21 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0051153335 | +| time-step | 732 | +| y_out | 0.0283 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0050399606 | +| time-step | 733 | +| y_out | 0.00764 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052681724 | +| time-step | 734 | +| y_out | 0.0776 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052630017 | +| time-step | 735 | +| y_out | 0.116 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053777313 | +| time-step | 736 | +| y_out | -0.147 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0055167703 | +| time-step | 737 | +| y_out | 0.0567 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005421219 | +| time-step | 738 | +| y_out | 0.027 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0056234156 | +| time-step | 739 | +| y_out | -0.0568 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005609937 | +| time-step | 740 | +| y_out | 0.0291 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005493781 | +| time-step | 741 | +| y_out | 0.0242 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00550913 | +| time-step | 742 | +| y_out | -0.0933 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054801735 | +| time-step | 743 | +| y_out | -0.0573 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053504272 | +| time-step | 744 | +| y_out | -0.117 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052574836 | +| time-step | 745 | +| y_out | -0.0616 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052500037 | +| time-step | 746 | +| y_out | -0.0717 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0049751005 | +| time-step | 747 | +| y_out | -0.0929 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0048878053 | +| time-step | 748 | +| y_out | 0.0171 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004856643 | +| time-step | 749 | +| y_out | 0.0459 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004894593 | +| time-step | 750 | +| y_out | 0.00297 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004904653 | +| time-step | 751 | +| y_out | 0.0711 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0048743533 | +| time-step | 752 | +| y_out | 0.0382 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004888937 | +| time-step | 753 | +| y_out | 0.115 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0050419783 | +| time-step | 754 | +| y_out | -0.107 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004962045 | +| time-step | 755 | +| y_out | -0.0338 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004732796 | +| time-step | 756 | +| y_out | -0.0292 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004706106 | +| time-step | 757 | +| y_out | 0.0919 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00473864 | +| time-step | 758 | +| y_out | 0.0295 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0045996015 | +| time-step | 759 | +| y_out | 0.0571 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00475166 | +| time-step | 760 | +| y_out | 0.0135 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0045398 | +| time-step | 761 | +| y_out | -0.0165 | +---------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0045748875 | +| time-step | 762 | +| y_out | 0.0233 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004456512 | +| time-step | 763 | +| y_out | 0.0698 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0043449975 | +| time-step | 764 | +| y_out | -0.0439 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0045670895 | +| time-step | 765 | +| y_out | 0.0399 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0045255786 | +| time-step | 766 | +| y_out | 0.0114 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004743767 | +| time-step | 767 | +| y_out | 0.0481 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0048627025 | +| time-step | 768 | +| y_out | 0.145 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004834731 | +| time-step | 769 | +| y_out | 0.0108 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0047857375 | +| time-step | 770 | +| y_out | 0.0683 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0049077547 | +| time-step | 771 | +| y_out | 0.0318 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004852662 | +| time-step | 772 | +| y_out | -0.0183 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0048671286 | +| time-step | 773 | +| y_out | -0.0147 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004895644 | +| time-step | 774 | +| y_out | 0.0358 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0049077235 | +| time-step | 775 | +| y_out | -0.11 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004886048 | +| time-step | 776 | +| y_out | -0.0125 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004699385 | +| time-step | 777 | +| y_out | -0.00572 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0046963403 | +| time-step | 778 | +| y_out | 0.0277 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004736431 | +| time-step | 779 | +| y_out | 0.0441 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0045894543 | +| time-step | 780 | +| y_out | -0.0428 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0046472945 | +| time-step | 781 | +| y_out | 0.0205 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004546878 | +| time-step | 782 | +| y_out | 0.00329 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004714864 | +| time-step | 783 | +| y_out | -0.033 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0045516314 | +| time-step | 784 | +| y_out | 0.0859 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0045556026 | +| time-step | 785 | +| y_out | 0.0473 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0046186005 | +| time-step | 786 | +| y_out | 0.0597 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004640814 | +| time-step | 787 | +| y_out | 0.00654 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00441129 | +| time-step | 788 | +| y_out | 0.00609 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0044520227 | +| time-step | 789 | +| y_out | -0.0741 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004653627 | +| time-step | 790 | +| y_out | -0.0774 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0046147592 | +| time-step | 791 | +| y_out | -0.0318 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00479171 | +| time-step | 792 | +| y_out | 0.0496 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0046523414 | +| time-step | 793 | +| y_out | -0.155 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004650621 | +| time-step | 794 | +| y_out | -0.0302 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004321754 | +| time-step | 795 | +| y_out | -0.0635 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004386327 | +| time-step | 796 | +| y_out | -0.085 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0042695254 | +| time-step | 797 | +| y_out | 0.132 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004391427 | +| time-step | 798 | +| y_out | -0.00564 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004358123 | +| time-step | 799 | +| y_out | 0.0217 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004127129 | +| time-step | 800 | +| y_out | 0.047 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint 800 +------------------------------------------------------------- +| perf/mse | 0.0040562777 | +| time-step | 801 | +| y_out | -0.0566 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003989099 | +| time-step | 802 | +| y_out | -0.0814 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040815724 | +| time-step | 803 | +| y_out | 0.0232 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0040360005 | +| time-step | 804 | +| y_out | -0.0839 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004112023 | +| time-step | 805 | +| y_out | -0.0185 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004039911 | +| time-step | 806 | +| y_out | 0.0202 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004311596 | +| time-step | 807 | +| y_out | 0.0175 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004326271 | +| time-step | 808 | +| y_out | -0.0374 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0041819457 | +| time-step | 809 | +| y_out | -0.0142 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041624107 | +| time-step | 810 | +| y_out | 0.0548 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004298868 | +| time-step | 811 | +| y_out | -0.0721 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004268541 | +| time-step | 812 | +| y_out | 0.0312 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0041068112 | +| time-step | 813 | +| y_out | -0.0756 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004058507 | +| time-step | 814 | +| y_out | -0.0122 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004065884 | +| time-step | 815 | +| y_out | 0.031 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0042096553 | +| time-step | 816 | +| y_out | -0.0113 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041722236 | +| time-step | 817 | +| y_out | -0.0432 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0040931143 | +| time-step | 818 | +| y_out | 0.0318 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004154513 | +| time-step | 819 | +| y_out | -0.00974 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0042210864 | +| time-step | 820 | +| y_out | -0.0265 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041227527 | +| time-step | 821 | +| y_out | -0.0332 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00402163 | +| time-step | 822 | +| y_out | -0.00756 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004214854 | +| time-step | 823 | +| y_out | 0.0223 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0042724824 | +| time-step | 824 | +| y_out | -0.0816 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0043421034 | +| time-step | 825 | +| y_out | -0.057 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041782237 | +| time-step | 826 | +| y_out | -0.0178 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004040577 | +| time-step | 827 | +| y_out | -0.022 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040065325 | +| time-step | 828 | +| y_out | 0.00573 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003988184 | +| time-step | 829 | +| y_out | 0.04 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0039855205 | +| time-step | 830 | +| y_out | -0.0178 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004029011 | +| time-step | 831 | +| y_out | 0.00744 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004251573 | +| time-step | 832 | +| y_out | 0.0129 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004214334 | +| time-step | 833 | +| y_out | 0.0229 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004192804 | +| time-step | 834 | +| y_out | -0.0378 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003940071 | +| time-step | 835 | +| y_out | 0.0315 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040270844 | +| time-step | 836 | +| y_out | 0.0264 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004037282 | +| time-step | 837 | +| y_out | -0.0518 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004143486 | +| time-step | 838 | +| y_out | 0.022 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004338912 | +| time-step | 839 | +| y_out | 0.0864 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004528165 | +| time-step | 840 | +| y_out | -0.0442 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00444869 | +| time-step | 841 | +| y_out | 0.0989 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004272726 | +| time-step | 842 | +| y_out | -0.0865 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0041704476 | +| time-step | 843 | +| y_out | -0.0578 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004118084 | +| time-step | 844 | +| y_out | 0.108 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00413963 | +| time-step | 845 | +| y_out | -0.0741 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039881384 | +| time-step | 846 | +| y_out | 0.033 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0040209573 | +| time-step | 847 | +| y_out | 0.148 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039468803 | +| time-step | 848 | +| y_out | -0.149 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037184518 | +| time-step | 849 | +| y_out | 0.0301 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033886537 | +| time-step | 850 | +| y_out | -0.00607 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034263432 | +| time-step | 851 | +| y_out | 0.0504 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034564394 | +| time-step | 852 | +| y_out | 0.00774 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003447393 | +| time-step | 853 | +| y_out | 0.0141 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0035165674 | +| time-step | 854 | +| y_out | -0.0472 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038481385 | +| time-step | 855 | +| y_out | 0.0527 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003982555 | +| time-step | 856 | +| y_out | 0.0105 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003939111 | +| time-step | 857 | +| y_out | 0.0963 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0039055585 | +| time-step | 858 | +| y_out | -0.0218 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038725447 | +| time-step | 859 | +| y_out | 0.048 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039680605 | +| time-step | 860 | +| y_out | 0.0405 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039801137 | +| time-step | 861 | +| y_out | 0.0649 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041612484 | +| time-step | 862 | +| y_out | -0.024 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0042559775 | +| time-step | 863 | +| y_out | 0.00693 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004256179 | +| time-step | 864 | +| y_out | 0.0091 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040335744 | +| time-step | 865 | +| y_out | 0.0925 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0040837307 | +| time-step | 866 | +| y_out | -0.0775 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004239221 | +| time-step | 867 | +| y_out | -0.124 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0043187523 | +| time-step | 868 | +| y_out | 0.0417 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0043789707 | +| time-step | 869 | +| y_out | -0.0864 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0044167666 | +| time-step | 870 | +| y_out | 0.0723 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0044578053 | +| time-step | 871 | +| y_out | -0.0334 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004390196 | +| time-step | 872 | +| y_out | 0.0261 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004248857 | +| time-step | 873 | +| y_out | -0.0238 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0042989356 | +| time-step | 874 | +| y_out | -0.0195 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0043008337 | +| time-step | 875 | +| y_out | 0.0218 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004083876 | +| time-step | 876 | +| y_out | -0.047 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040107905 | +| time-step | 877 | +| y_out | 0.0729 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0040095556 | +| time-step | 878 | +| y_out | 0.0964 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004087646 | +| time-step | 879 | +| y_out | -0.0751 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0041999184 | +| time-step | 880 | +| y_out | 0.0207 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004096242 | +| time-step | 881 | +| y_out | 0.0422 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0042469203 | +| time-step | 882 | +| y_out | -0.0618 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0042625186 | +| time-step | 883 | +| y_out | 0.00511 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041507035 | +| time-step | 884 | +| y_out | 0.0583 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041474854 | +| time-step | 885 | +| y_out | 0.0729 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004174534 | +| time-step | 886 | +| y_out | -0.0336 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004175606 | +| time-step | 887 | +| y_out | 0.025 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040392242 | +| time-step | 888 | +| y_out | 0.143 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038949153 | +| time-step | 889 | +| y_out | -0.0502 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037763983 | +| time-step | 890 | +| y_out | -0.0126 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003872497 | +| time-step | 891 | +| y_out | -0.0203 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036474157 | +| time-step | 892 | +| y_out | 0.0486 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036936295 | +| time-step | 893 | +| y_out | 0.0156 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036857862 | +| time-step | 894 | +| y_out | 0.0045 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036914926 | +| time-step | 895 | +| y_out | -0.0852 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037500162 | +| time-step | 896 | +| y_out | -0.0477 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037770276 | +| time-step | 897 | +| y_out | 0.0476 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038148519 | +| time-step | 898 | +| y_out | -0.00897 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003841009 | +| time-step | 899 | +| y_out | -0.109 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003945652 | +| time-step | 900 | +| y_out | 0.0224 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/checkpoint 900 +------------------------------------------------------------ +| perf/mse | 0.003822885 | +| time-step | 901 | +| y_out | -0.116 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036930875 | +| time-step | 902 | +| y_out | -0.039 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003682067 | +| time-step | 903 | +| y_out | -0.0239 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036827337 | +| time-step | 904 | +| y_out | 0.0545 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038612336 | +| time-step | 905 | +| y_out | 0.0572 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003749943 | +| time-step | 906 | +| y_out | -0.0132 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036443607 | +| time-step | 907 | +| y_out | 0.0296 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035677615 | +| time-step | 908 | +| y_out | 0.0618 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035921622 | +| time-step | 909 | +| y_out | -0.0668 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003497947 | +| time-step | 910 | +| y_out | -0.0217 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036051024 | +| time-step | 911 | +| y_out | 0.127 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036856737 | +| time-step | 912 | +| y_out | 0.0282 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035897132 | +| time-step | 913 | +| y_out | 0.0204 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036784734 | +| time-step | 914 | +| y_out | -0.0147 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036165367 | +| time-step | 915 | +| y_out | 0.0539 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037043053 | +| time-step | 916 | +| y_out | -0.152 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003736385 | +| time-step | 917 | +| y_out | 0.0752 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0038468062 | +| time-step | 918 | +| y_out | -0.0412 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003752191 | +| time-step | 919 | +| y_out | -0.0152 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0037464662 | +| time-step | 920 | +| y_out | 0.0455 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037775356 | +| time-step | 921 | +| y_out | -0.0364 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037770844 | +| time-step | 922 | +| y_out | -0.0932 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038808458 | +| time-step | 923 | +| y_out | 0.0926 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039042484 | +| time-step | 924 | +| y_out | 0.0228 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003684226 | +| time-step | 925 | +| y_out | -0.0887 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036903638 | +| time-step | 926 | +| y_out | 0.0459 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036559496 | +| time-step | 927 | +| y_out | -0.0969 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035693403 | +| time-step | 928 | +| y_out | -0.0857 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036656198 | +| time-step | 929 | +| y_out | -0.0309 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036183726 | +| time-step | 930 | +| y_out | -0.0369 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035348393 | +| time-step | 931 | +| y_out | 0.00145 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036061138 | +| time-step | 932 | +| y_out | -0.0327 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036647352 | +| time-step | 933 | +| y_out | 0.146 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038364097 | +| time-step | 934 | +| y_out | 0.0103 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038707212 | +| time-step | 935 | +| y_out | -0.068 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039437604 | +| time-step | 936 | +| y_out | 0.0789 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038781285 | +| time-step | 937 | +| y_out | 0.0105 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039777462 | +| time-step | 938 | +| y_out | -0.0559 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039753085 | +| time-step | 939 | +| y_out | 0.0205 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004007493 | +| time-step | 940 | +| y_out | 0.0144 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0041054236 | +| time-step | 941 | +| y_out | 0.0663 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0040364186 | +| time-step | 942 | +| y_out | 0.106 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003919002 | +| time-step | 943 | +| y_out | -0.0315 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036425546 | +| time-step | 944 | +| y_out | 0.034 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036413395 | +| time-step | 945 | +| y_out | -0.0325 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00358137 | +| time-step | 946 | +| y_out | -0.00593 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035427846 | +| time-step | 947 | +| y_out | -0.178 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035164307 | +| time-step | 948 | +| y_out | -0.0703 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035138682 | +| time-step | 949 | +| y_out | -0.00329 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034125433 | +| time-step | 950 | +| y_out | -0.0478 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033195156 | +| time-step | 951 | +| y_out | -0.0521 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003348027 | +| time-step | 952 | +| y_out | 0.119 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0033948296 | +| time-step | 953 | +| y_out | -0.0325 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034023947 | +| time-step | 954 | +| y_out | -0.119 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032937608 | +| time-step | 955 | +| y_out | 0.109 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033007532 | +| time-step | 956 | +| y_out | -0.023 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003433684 | +| time-step | 957 | +| y_out | 0.0917 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0033358324 | +| time-step | 958 | +| y_out | -0.0395 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035069503 | +| time-step | 959 | +| y_out | -0.0113 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035376232 | +| time-step | 960 | +| y_out | 0.0424 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036563824 | +| time-step | 961 | +| y_out | -0.0542 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035335429 | +| time-step | 962 | +| y_out | 0.0218 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035310306 | +| time-step | 963 | +| y_out | -0.0118 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035087387 | +| time-step | 964 | +| y_out | 0.0361 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036923955 | +| time-step | 965 | +| y_out | 0.00928 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035206892 | +| time-step | 966 | +| y_out | -0.0475 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003411553 | +| time-step | 967 | +| y_out | -0.0154 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0034317158 | +| time-step | 968 | +| y_out | -0.00548 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032142908 | +| time-step | 969 | +| y_out | 0.0798 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032122768 | +| time-step | 970 | +| y_out | -0.0951 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031884226 | +| time-step | 971 | +| y_out | 0.0745 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003346699 | +| time-step | 972 | +| y_out | -0.0646 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0031881717 | +| time-step | 973 | +| y_out | -0.0217 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003183635 | +| time-step | 974 | +| y_out | -0.123 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003034526 | +| time-step | 975 | +| y_out | 0.0491 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0031629931 | +| time-step | 976 | +| y_out | 0.0196 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030812577 | +| time-step | 977 | +| y_out | 0.0165 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031289924 | +| time-step | 978 | +| y_out | 0.0579 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031526932 | +| time-step | 979 | +| y_out | -0.132 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003117193 | +| time-step | 980 | +| y_out | -0.0142 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003045367 | +| time-step | 981 | +| y_out | -0.092 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0029104627 | +| time-step | 982 | +| y_out | -0.0318 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031331182 | +| time-step | 983 | +| y_out | 0.11 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031124088 | +| time-step | 984 | +| y_out | 0.0165 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031144798 | +| time-step | 985 | +| y_out | -0.0432 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031231642 | +| time-step | 986 | +| y_out | 0.149 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031577498 | +| time-step | 987 | +| y_out | -0.0638 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032250448 | +| time-step | 988 | +| y_out | 0.0559 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032643885 | +| time-step | 989 | +| y_out | -0.126 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033339406 | +| time-step | 990 | +| y_out | -0.0324 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032123527 | +| time-step | 991 | +| y_out | -0.00866 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032543265 | +| time-step | 992 | +| y_out | 0.0558 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030723833 | +| time-step | 993 | +| y_out | -0.0721 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031718991 | +| time-step | 994 | +| y_out | 0.0253 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032978754 | +| time-step | 995 | +| y_out | 0.00192 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033740767 | +| time-step | 996 | +| y_out | -0.0151 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034178733 | +| time-step | 997 | +| y_out | 0.0235 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033011672 | +| time-step | 998 | +| y_out | -0.0755 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032197232 | +| time-step | 999 | +| y_out | -0.0125 | +------------------------------------------------------------- diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/progress-[||perf--mse||, ||timestep||].csv b/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/progress-[||perf--mse||, ||timestep||].csv new file mode 100644 index 0000000..9ed8e9f --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/progress-[||perf--mse||, ||timestep||].csv @@ -0,0 +1,2001 @@ +perf/mse,time-step +,0.0 +, +,1.0 +, +,2.0 +, +,3.0 +, +,4.0 +, +,5.0 +, +,6.0 +, +,7.0 +, +,8.0 +, +0.2213418,9.0 +, +0.18151541,10.0 +, +0.15199599,11.0 +, +0.13638918,12.0 +, +0.11555026,13.0 +, +0.1025746,14.0 +, +0.08903063,15.0 +, +0.082288586,16.0 +, +0.075040475,17.0 +, +0.07045758,18.0 +, +0.06912045,19.0 +, +0.06851025,20.0 +, +0.067601785,21.0 +, +0.062033504,22.0 +, +0.06083738,23.0 +, +0.056046844,24.0 +, +0.052001763,25.0 +, +0.050352037,26.0 +, +0.048408873,27.0 +, +0.049339093,28.0 +, +0.049158037,29.0 +, +0.047397114,30.0 +, +0.04551185,31.0 +, +0.047057323,32.0 +, +0.046180792,33.0 +, +0.04624776,34.0 +, +0.047249004,35.0 +, +0.049095653,36.0 +, +0.048703287,37.0 +, +0.04864519,38.0 +, +0.047138564,39.0 +, +0.045966193,40.0 +, +0.04617403,41.0 +, +0.0450994,42.0 +, +0.044573702,43.0 +, +0.043455534,44.0 +, +0.041777693,45.0 +, +0.039458685,46.0 +, +0.040559005,47.0 +, +0.0386033,48.0 +, +0.03760356,49.0 +, +0.035813883,50.0 +, +0.035661034,51.0 +, +0.035118055,52.0 +, +0.03511173,53.0 +, +0.035650674,54.0 +, +0.035762656,55.0 +, +0.03560549,56.0 +, +0.0349341,57.0 +, +0.03472092,58.0 +, +0.035575476,59.0 +, +0.035381716,60.0 +, +0.034856774,61.0 +, +0.034570497,62.0 +, +0.034000043,63.0 +, +0.03381919,64.0 +, +0.03339701,65.0 +, +0.0337741,66.0 +, +0.033254325,67.0 +, +0.032633655,68.0 +, +0.03219404,69.0 +, +0.032805838,70.0 +, +0.032841913,71.0 +, +0.031482257,72.0 +, +0.031539984,73.0 +, +0.031192064,74.0 +, +0.03175701,75.0 +, +0.031267945,76.0 +, +0.029908344,77.0 +, +0.0303464,78.0 +, +0.029448232,79.0 +, +0.028521877,80.0 +, +0.02831181,81.0 +, +0.029110854,82.0 +, +0.028900817,83.0 +, +0.028351873,84.0 +, +0.02713016,85.0 +, +0.027275499,86.0 +, +0.02898648,87.0 +, +0.02910329,88.0 +, +0.028891105,89.0 +, +0.029155355,90.0 +, +0.028093165,91.0 +, +0.027509117,92.0 +, +0.02631087,93.0 +, +0.024781937,94.0 +, +0.024651572,95.0 +, +0.0238366,96.0 +, +0.021582127,97.0 +, +0.020574383,98.0 +, +0.02091686,99.0 +, +0.020916494,100.0 +, +0.021655126,101.0 +, +0.021175686,102.0 +, +0.020749059,103.0 +, +0.02127223,104.0 +, +0.020565215,105.0 +, +0.020838127,106.0 +, +0.02159388,107.0 +, +0.021593995,108.0 +, +0.02105179,109.0 +, +0.02001243,110.0 +, +0.020365763,111.0 +, +0.020517994,112.0 +, +0.020068152,113.0 +, +0.020240221,114.0 +, +0.02081648,115.0 +, +0.020471169,116.0 +, +0.019733286,117.0 +, +0.019559998,118.0 +, +0.01958919,119.0 +, +0.019794539,120.0 +, +0.018008139,121.0 +, +0.017552197,122.0 +, +0.018022334,123.0 +, +0.017377157,124.0 +, +0.01712075,125.0 +, +0.017562747,126.0 +, +0.017126106,127.0 +, +0.016692223,128.0 +, +0.016295671,129.0 +, +0.016403737,130.0 +, +0.01732798,131.0 +, +0.017429734,132.0 +, +0.01712677,133.0 +, +0.017159015,134.0 +, +0.016970944,135.0 +, +0.016358491,136.0 +, +0.016560799,137.0 +, +0.016877415,138.0 +, +0.017120881,139.0 +, +0.017035149,140.0 +, +0.016782813,141.0 +, +0.01638801,142.0 +, +0.015880505,143.0 +, +0.015267524,144.0 +, +0.0156107005,145.0 +, +0.015585728,146.0 +, +0.015725685,147.0 +, +0.01553901,148.0 +, +0.015121599,149.0 +, +0.015083885,150.0 +, +0.015403369,151.0 +, +0.015506953,152.0 +, +0.015268986,153.0 +, +0.015932553,154.0 +, +0.01559755,155.0 +, +0.015623331,156.0 +, +0.015851144,157.0 +, +0.015993834,158.0 +, +0.01616678,159.0 +, +0.015920011,160.0 +, +0.014885281,161.0 +, +0.014697814,162.0 +, +0.015226157,163.0 +, +0.015763143,164.0 +, +0.015888304,165.0 +, +0.015365997,166.0 +, +0.014655883,167.0 +, +0.014129279,168.0 +, +0.013963118,169.0 +, +0.013838867,170.0 +, +0.014186429,171.0 +, +0.0143125625,172.0 +, +0.014567261,173.0 +, +0.013981223,174.0 +, +0.014193992,175.0 +, +0.014226446,176.0 +, +0.014416695,177.0 +, +0.01473509,178.0 +, +0.014725288,179.0 +, +0.014622453,180.0 +, +0.014817156,181.0 +, +0.015053752,182.0 +, +0.014922845,183.0 +, +0.014320677,184.0 +, +0.0138921235,185.0 +, +0.013571496,186.0 +, +0.013630627,187.0 +, +0.013863456,188.0 +, +0.013980565,189.0 +, +0.014103638,190.0 +, +0.013648671,191.0 +, +0.012918606,192.0 +, +0.012076277,193.0 +, +0.012533133,194.0 +, +0.012529286,195.0 +, +0.012729259,196.0 +, +0.0125234425,197.0 +, +0.01248196,198.0 +, +0.012001619,199.0 +, +0.012085,200.0 +, +0.0121003315,201.0 +, +0.01250341,202.0 +, +0.012854552,203.0 +, +0.012434529,204.0 +, +0.012821165,205.0 +, +0.012978372,206.0 +, +0.012783785,207.0 +, +0.012412922,208.0 +, +0.013082026,209.0 +, +0.012463743,210.0 +, +0.0119159315,211.0 +, +0.011504205,212.0 +, +0.011533032,213.0 +, +0.011533143,214.0 +, +0.011066494,215.0 +, +0.011071108,216.0 +, +0.011399285,217.0 +, +0.010827815,218.0 +, +0.010404508,219.0 +, +0.010643965,220.0 +, +0.010983663,221.0 +, +0.011280661,222.0 +, +0.011255766,223.0 +, +0.011315351,224.0 +, +0.010898156,225.0 +, +0.010742856,226.0 +, +0.010361671,227.0 +, +0.010702359,228.0 +, +0.01037641,229.0 +, +0.010638231,230.0 +, +0.011000741,231.0 +, +0.010648107,232.0 +, +0.010665002,233.0 +, +0.010773917,234.0 +, +0.011147271,235.0 +, +0.010947985,236.0 +, +0.011461743,237.0 +, +0.011465353,238.0 +, +0.011548136,239.0 +, +0.011317678,240.0 +, +0.01101277,241.0 +, +0.010909235,242.0 +, +0.010884374,243.0 +, +0.010763186,244.0 +, +0.01102829,245.0 +, +0.01089759,246.0 +, +0.010658663,247.0 +, +0.010504929,248.0 +, +0.011187745,249.0 +, +0.011144376,250.0 +, +0.011077395,251.0 +, +0.011236122,252.0 +, +0.0109797595,253.0 +, +0.010989378,254.0 +, +0.010269151,255.0 +, +0.010586536,256.0 +, +0.01066226,257.0 +, +0.010843486,258.0 +, +0.010546822,259.0 +, +0.010866616,260.0 +, +0.01089716,261.0 +, +0.01102573,262.0 +, +0.01122058,263.0 +, +0.011261811,264.0 +, +0.011647056,265.0 +, +0.011396077,266.0 +, +0.010895356,267.0 +, +0.010594012,268.0 +, +0.009982122,269.0 +, +0.009611089,270.0 +, +0.009687115,271.0 +, +0.009739076,272.0 +, +0.009571998,273.0 +, +0.009289256,274.0 +, +0.009065564,275.0 +, +0.008992936,276.0 +, +0.009405516,277.0 +, +0.009802055,278.0 +, +0.010002249,279.0 +, +0.010391736,280.0 +, +0.010695013,281.0 +, +0.010549389,282.0 +, +0.010508211,283.0 +, +0.010766902,284.0 +, +0.010791292,285.0 +, +0.011008025,286.0 +, +0.010703808,287.0 +, +0.0106153665,288.0 +, +0.010478398,289.0 +, +0.009825417,290.0 +, +0.00932461,291.0 +, +0.009172568,292.0 +, +0.009338206,293.0 +, +0.009650408,294.0 +, +0.009822436,295.0 +, +0.009617481,296.0 +, +0.009609596,297.0 +, +0.009172958,298.0 +, +0.009404348,299.0 +, +0.00974897,300.0 +, +0.009659214,301.0 +, +0.009650087,302.0 +, +0.009558508,303.0 +, +0.008911663,304.0 +, +0.008500017,305.0 +, +0.008463617,306.0 +, +0.008380451,307.0 +, +0.008560829,308.0 +, +0.008684639,309.0 +, +0.008560272,310.0 +, +0.00865485,311.0 +, +0.008592058,312.0 +, +0.008361543,313.0 +, +0.0085406955,314.0 +, +0.00899319,315.0 +, +0.009028759,316.0 +, +0.00926211,317.0 +, +0.009524745,318.0 +, +0.0092332205,319.0 +, +0.009254497,320.0 +, +0.008958961,321.0 +, +0.008968334,322.0 +, +0.008997877,323.0 +, +0.009054659,324.0 +, +0.008929395,325.0 +, +0.008791028,326.0 +, +0.008621386,327.0 +, +0.008276341,328.0 +, +0.00802771,329.0 +, +0.007813783,330.0 +, +0.0082202675,331.0 +, +0.008203571,332.0 +, +0.008702431,333.0 +, +0.008423993,334.0 +, +0.008752415,335.0 +, +0.008889762,336.0 +, +0.008702272,337.0 +, +0.009433094,338.0 +, +0.009802917,339.0 +, +0.009853077,340.0 +, +0.0097324485,341.0 +, +0.009619629,342.0 +, +0.009217979,343.0 +, +0.009695167,344.0 +, +0.009033231,345.0 +, +0.008923811,346.0 +, +0.009237295,347.0 +, +0.008707397,348.0 +, +0.008889573,349.0 +, +0.009206372,350.0 +, +0.008988985,351.0 +, +0.009025356,352.0 +, +0.008861664,353.0 +, +0.008521282,354.0 +, +0.008602491,355.0 +, +0.008645901,356.0 +, +0.008593101,357.0 +, +0.008487901,358.0 +, +0.008191287,359.0 +, +0.008271532,360.0 +, +0.008348331,361.0 +, +0.008694865,362.0 +, +0.008881613,363.0 +, +0.008868958,364.0 +, +0.009162227,365.0 +, +0.00931981,366.0 +, +0.009015773,367.0 +, +0.008895373,368.0 +, +0.009197822,369.0 +, +0.008726108,370.0 +, +0.008916206,371.0 +, +0.008774358,372.0 +, +0.008648316,373.0 +, +0.008675615,374.0 +, +0.008376681,375.0 +, +0.008051926,376.0 +, +0.008303893,377.0 +, +0.008236652,378.0 +, +0.0076520974,379.0 +, +0.007512162,380.0 +, +0.0075943572,381.0 +, +0.007268989,382.0 +, +0.0072541414,383.0 +, +0.007113274,384.0 +, +0.0074879713,385.0 +, +0.0075280406,386.0 +, +0.0077055274,387.0 +, +0.0076229894,388.0 +, +0.0076871687,389.0 +, +0.007881274,390.0 +, +0.007767598,391.0 +, +0.007888826,392.0 +, +0.007940272,393.0 +, +0.008078203,394.0 +, +0.0076349094,395.0 +, +0.0074360506,396.0 +, +0.0070463954,397.0 +, +0.0072657345,398.0 +, +0.007447394,399.0 +, +0.0073229196,400.0 +, +0.006974215,401.0 +, +0.0067043165,402.0 +, +0.0066258474,403.0 +, +0.006491606,404.0 +, +0.006644386,405.0 +, +0.006644313,406.0 +, +0.007075014,407.0 +, +0.0067524374,408.0 +, +0.0067051286,409.0 +, +0.006571252,410.0 +, +0.006660252,411.0 +, +0.00707165,412.0 +, +0.007256379,413.0 +, +0.007263222,414.0 +, +0.0070702685,415.0 +, +0.0073101074,416.0 +, +0.0070546805,417.0 +, +0.0071849586,418.0 +, +0.0069580055,419.0 +, +0.007267782,420.0 +, +0.0074610235,421.0 +, +0.0071352487,422.0 +, +0.0071086613,423.0 +, +0.0070788027,424.0 +, +0.0069850706,425.0 +, +0.006988878,426.0 +, +0.0069258674,427.0 +, +0.006869568,428.0 +, +0.0071738972,429.0 +, +0.007338633,430.0 +, +0.007385929,431.0 +, +0.0075799907,432.0 +, +0.0074687875,433.0 +, +0.007415314,434.0 +, +0.007560329,435.0 +, +0.0076255873,436.0 +, +0.007551273,437.0 +, +0.0076690973,438.0 +, +0.0074901045,439.0 +, +0.0074266596,440.0 +, +0.0071635484,441.0 +, +0.0071878745,442.0 +, +0.0071336953,443.0 +, +0.0071941717,444.0 +, +0.0071380264,445.0 +, +0.007155928,446.0 +, +0.0071311267,447.0 +, +0.0071576396,448.0 +, +0.0070625073,449.0 +, +0.0068681017,450.0 +, +0.0071220687,451.0 +, +0.0069928826,452.0 +, +0.0070566796,453.0 +, +0.0071178176,454.0 +, +0.0072293133,455.0 +, +0.0069733923,456.0 +, +0.007098145,457.0 +, +0.0073137046,458.0 +, +0.0074471524,459.0 +, +0.007314945,460.0 +, +0.0073141293,461.0 +, +0.0073226253,462.0 +, +0.0075716553,463.0 +, +0.0075203343,464.0 +, +0.007616365,465.0 +, +0.007872241,466.0 +, +0.007797871,467.0 +, +0.007348449,468.0 +, +0.007487183,469.0 +, +0.007666313,470.0 +, +0.007621041,471.0 +, +0.007781482,472.0 +, +0.0074633197,473.0 +, +0.007517954,474.0 +, +0.007420115,475.0 +, +0.007126314,476.0 +, +0.007138537,477.0 +, +0.007529103,478.0 +, +0.007232096,479.0 +, +0.0071658813,480.0 +, +0.006865284,481.0 +, +0.006643592,482.0 +, +0.006437654,483.0 +, +0.0064374385,484.0 +, +0.0061637172,485.0 +, +0.006397553,486.0 +, +0.006467645,487.0 +, +0.0065242136,488.0 +, +0.006476526,489.0 +, +0.00637464,490.0 +, +0.006558396,491.0 +, +0.006630133,492.0 +, +0.006634014,493.0 +, +0.0067515434,494.0 +, +0.0070284335,495.0 +, +0.0068016658,496.0 +, +0.0066306917,497.0 +, +0.006383223,498.0 +, +0.0064143986,499.0 +, +0.0063092476,500.0 +, +0.006410853,501.0 +, +0.0063125803,502.0 +, +0.006380326,503.0 +, +0.0060056667,504.0 +, +0.006038694,505.0 +, +0.0060741603,506.0 +, +0.0062994985,507.0 +, +0.006276124,508.0 +, +0.0061255046,509.0 +, +0.0061656605,510.0 +, +0.0059149642,511.0 +, +0.0061497926,512.0 +, +0.006169011,513.0 +, +0.0062508285,514.0 +, +0.006057213,515.0 +, +0.0061819674,516.0 +, +0.006344872,517.0 +, +0.0063840365,518.0 +, +0.0064421,519.0 +, +0.0063485084,520.0 +, +0.006528827,521.0 +, +0.006375099,522.0 +, +0.00626872,523.0 +, +0.0062585557,524.0 +, +0.006252048,525.0 +, +0.0060802856,526.0 +, +0.00571565,527.0 +, +0.0057090363,528.0 +, +0.005775889,529.0 +, +0.005885468,530.0 +, +0.00562531,531.0 +, +0.005705278,532.0 +, +0.005722405,533.0 +, +0.0058096964,534.0 +, +0.0058348286,535.0 +, +0.005756849,536.0 +, +0.005865877,537.0 +, +0.005779306,538.0 +, +0.0057658544,539.0 +, +0.0057187616,540.0 +, +0.005913873,541.0 +, +0.00569485,542.0 +, +0.006070492,543.0 +, +0.0059679695,544.0 +, +0.005937689,545.0 +, +0.0058847824,546.0 +, +0.0060364204,547.0 +, +0.0060583553,548.0 +, +0.006164747,549.0 +, +0.0062775738,550.0 +, +0.006435971,551.0 +, +0.0064379363,552.0 +, +0.006262321,553.0 +, +0.0065218285,554.0 +, +0.0066356524,555.0 +, +0.00690855,556.0 +, +0.0065123164,557.0 +, +0.006517934,558.0 +, +0.006416404,559.0 +, +0.006382212,560.0 +, +0.006172291,561.0 +, +0.006486813,562.0 +, +0.0063959197,563.0 +, +0.0062121847,564.0 +, +0.006033571,565.0 +, +0.006053632,566.0 +, +0.006283164,567.0 +, +0.0062189503,568.0 +, +0.006192473,569.0 +, +0.0061711622,570.0 +, +0.00621113,571.0 +, +0.0062055713,572.0 +, +0.006361153,573.0 +, +0.006329463,574.0 +, +0.006423714,575.0 +, +0.0062316386,576.0 +, +0.0061640413,577.0 +, +0.0065376996,578.0 +, +0.006798501,579.0 +, +0.006835184,580.0 +, +0.0067300596,581.0 +, +0.0064291903,582.0 +, +0.0064151757,583.0 +, +0.006358838,584.0 +, +0.0062949844,585.0 +, +0.0065687774,586.0 +, +0.006732789,587.0 +, +0.006350413,588.0 +, +0.0062813824,589.0 +, +0.006291695,590.0 +, +0.0062973006,591.0 +, +0.006482204,592.0 +, +0.0062797316,593.0 +, +0.0060943626,594.0 +, +0.006060673,595.0 +, +0.0058491575,596.0 +, +0.0056013167,597.0 +, +0.0056335153,598.0 +, +0.0055206358,599.0 +, +0.0053234184,600.0 +, +0.0053103687,601.0 +, +0.0052162,602.0 +, +0.005208586,603.0 +, +0.0054678055,604.0 +, +0.005652829,605.0 +, +0.005549931,606.0 +, +0.0057286425,607.0 +, +0.0058101555,608.0 +, +0.0058230096,609.0 +, +0.0058073634,610.0 +, +0.0057664067,611.0 +, +0.005824791,612.0 +, +0.005838863,613.0 +, +0.005838423,614.0 +, +0.005856662,615.0 +, +0.0060580852,616.0 +, +0.005655325,617.0 +, +0.0054848753,618.0 +, +0.0054236734,619.0 +, +0.005423072,620.0 +, +0.005385162,621.0 +, +0.0052685244,622.0 +, +0.0053974665,623.0 +, +0.0052526495,624.0 +, +0.004981737,625.0 +, +0.004875469,626.0 +, +0.0052874335,627.0 +, +0.005451837,628.0 +, +0.005573095,629.0 +, +0.00598256,630.0 +, +0.005923933,631.0 +, +0.0059836316,632.0 +, +0.0060538505,633.0 +, +0.006047846,634.0 +, +0.006080807,635.0 +, +0.00599097,636.0 +, +0.0058805295,637.0 +, +0.005881214,638.0 +, +0.0058441786,639.0 +, +0.005528598,640.0 +, +0.005639632,641.0 +, +0.0056080096,642.0 +, +0.005362663,643.0 +, +0.005540789,644.0 +, +0.005658085,645.0 +, +0.0057937005,646.0 +, +0.005652317,647.0 +, +0.005586999,648.0 +, +0.00555695,649.0 +, +0.0055426257,650.0 +, +0.005631237,651.0 +, +0.005731188,652.0 +, +0.0056848605,653.0 +, +0.0056562508,654.0 +, +0.005583243,655.0 +, +0.0058037057,656.0 +, +0.0057565453,657.0 +, +0.00593283,658.0 +, +0.005832375,659.0 +, +0.005958461,660.0 +, +0.00596415,661.0 +, +0.0057445727,662.0 +, +0.0060045067,663.0 +, +0.0060107643,664.0 +, +0.0060831867,665.0 +, +0.005690192,666.0 +, +0.005793244,667.0 +, +0.0055814865,668.0 +, +0.0055364585,669.0 +, +0.0053845188,670.0 +, +0.0054389285,671.0 +, +0.005470776,672.0 +, +0.00518021,673.0 +, +0.004929944,674.0 +, +0.004721289,675.0 +, +0.004790255,676.0 +, +0.004781442,677.0 +, +0.0047044973,678.0 +, +0.004829833,679.0 +, +0.0048114187,680.0 +, +0.004737159,681.0 +, +0.004797871,682.0 +, +0.004972216,683.0 +, +0.0050873416,684.0 +, +0.0052958406,685.0 +, +0.0052558226,686.0 +, +0.00505994,687.0 +, +0.005301248,688.0 +, +0.005145841,689.0 +, +0.005175805,690.0 +, +0.005072666,691.0 +, +0.0050318367,692.0 +, +0.00495977,693.0 +, +0.0049736327,694.0 +, +0.0049477825,695.0 +, +0.0050119488,696.0 +, +0.005259874,697.0 +, +0.005174082,698.0 +, +0.005234071,699.0 +, +0.005318279,700.0 +, +0.0053585297,701.0 +, +0.0054472187,702.0 +, +0.0054075853,703.0 +, +0.0052512554,704.0 +, +0.0052173245,705.0 +, +0.005176955,706.0 +, +0.005014113,707.0 +, +0.004791107,708.0 +, +0.004639486,709.0 +, +0.0046699205,710.0 +, +0.004846975,711.0 +, +0.004852234,712.0 +, +0.0049797418,713.0 +, +0.004992086,714.0 +, +0.005117629,715.0 +, +0.004990969,716.0 +, +0.00531058,717.0 +, +0.005671566,718.0 +, +0.006027546,719.0 +, +0.0058292653,720.0 +, +0.0055674165,721.0 +, +0.005296134,722.0 +, +0.005272624,723.0 +, +0.0053456556,724.0 +, +0.0053317016,725.0 +, +0.0054772,726.0 +, +0.0052649626,727.0 +, +0.0051203216,728.0 +, +0.0048611336,729.0 +, +0.0048834207,730.0 +, +0.004988238,731.0 +, +0.0051153335,732.0 +, +0.0050399606,733.0 +, +0.0052681724,734.0 +, +0.0052630017,735.0 +, +0.0053777313,736.0 +, +0.0055167703,737.0 +, +0.005421219,738.0 +, +0.0056234156,739.0 +, +0.005609937,740.0 +, +0.005493781,741.0 +, +0.00550913,742.0 +, +0.0054801735,743.0 +, +0.0053504272,744.0 +, +0.0052574836,745.0 +, +0.0052500037,746.0 +, +0.0049751005,747.0 +, +0.0048878053,748.0 +, +0.004856643,749.0 +, +0.004894593,750.0 +, +0.004904653,751.0 +, +0.0048743533,752.0 +, +0.004888937,753.0 +, +0.0050419783,754.0 +, +0.004962045,755.0 +, +0.004732796,756.0 +, +0.004706106,757.0 +, +0.00473864,758.0 +, +0.0045996015,759.0 +, +0.00475166,760.0 +, +0.0045398,761.0 +, +0.0045748875,762.0 +, +0.004456512,763.0 +, +0.0043449975,764.0 +, +0.0045670895,765.0 +, +0.0045255786,766.0 +, +0.004743767,767.0 +, +0.0048627025,768.0 +, +0.004834731,769.0 +, +0.0047857375,770.0 +, +0.0049077547,771.0 +, +0.004852662,772.0 +, +0.0048671286,773.0 +, +0.004895644,774.0 +, +0.0049077235,775.0 +, +0.004886048,776.0 +, +0.004699385,777.0 +, +0.0046963403,778.0 +, +0.004736431,779.0 +, +0.0045894543,780.0 +, +0.0046472945,781.0 +, +0.004546878,782.0 +, +0.004714864,783.0 +, +0.0045516314,784.0 +, +0.0045556026,785.0 +, +0.0046186005,786.0 +, +0.004640814,787.0 +, +0.00441129,788.0 +, +0.0044520227,789.0 +, +0.004653627,790.0 +, +0.0046147592,791.0 +, +0.00479171,792.0 +, +0.0046523414,793.0 +, +0.004650621,794.0 +, +0.004321754,795.0 +, +0.004386327,796.0 +, +0.0042695254,797.0 +, +0.004391427,798.0 +, +0.004358123,799.0 +, +0.004127129,800.0 +, +0.0040562777,801.0 +, +0.003989099,802.0 +, +0.0040815724,803.0 +, +0.0040360005,804.0 +, +0.004112023,805.0 +, +0.004039911,806.0 +, +0.004311596,807.0 +, +0.004326271,808.0 +, +0.0041819457,809.0 +, +0.0041624107,810.0 +, +0.004298868,811.0 +, +0.004268541,812.0 +, +0.0041068112,813.0 +, +0.004058507,814.0 +, +0.004065884,815.0 +, +0.0042096553,816.0 +, +0.0041722236,817.0 +, +0.0040931143,818.0 +, +0.004154513,819.0 +, +0.0042210864,820.0 +, +0.0041227527,821.0 +, +0.00402163,822.0 +, +0.004214854,823.0 +, +0.0042724824,824.0 +, +0.0043421034,825.0 +, +0.0041782237,826.0 +, +0.004040577,827.0 +, +0.0040065325,828.0 +, +0.003988184,829.0 +, +0.0039855205,830.0 +, +0.004029011,831.0 +, +0.004251573,832.0 +, +0.004214334,833.0 +, +0.004192804,834.0 +, +0.003940071,835.0 +, +0.0040270844,836.0 +, +0.004037282,837.0 +, +0.004143486,838.0 +, +0.004338912,839.0 +, +0.004528165,840.0 +, +0.00444869,841.0 +, +0.004272726,842.0 +, +0.0041704476,843.0 +, +0.004118084,844.0 +, +0.00413963,845.0 +, +0.0039881384,846.0 +, +0.0040209573,847.0 +, +0.0039468803,848.0 +, +0.0037184518,849.0 +, +0.0033886537,850.0 +, +0.0034263432,851.0 +, +0.0034564394,852.0 +, +0.003447393,853.0 +, +0.0035165674,854.0 +, +0.0038481385,855.0 +, +0.003982555,856.0 +, +0.003939111,857.0 +, +0.0039055585,858.0 +, +0.0038725447,859.0 +, +0.0039680605,860.0 +, +0.0039801137,861.0 +, +0.0041612484,862.0 +, +0.0042559775,863.0 +, +0.004256179,864.0 +, +0.0040335744,865.0 +, +0.0040837307,866.0 +, +0.004239221,867.0 +, +0.0043187523,868.0 +, +0.0043789707,869.0 +, +0.0044167666,870.0 +, +0.0044578053,871.0 +, +0.004390196,872.0 +, +0.004248857,873.0 +, +0.0042989356,874.0 +, +0.0043008337,875.0 +, +0.004083876,876.0 +, +0.0040107905,877.0 +, +0.0040095556,878.0 +, +0.004087646,879.0 +, +0.0041999184,880.0 +, +0.004096242,881.0 +, +0.0042469203,882.0 +, +0.0042625186,883.0 +, +0.0041507035,884.0 +, +0.0041474854,885.0 +, +0.004174534,886.0 +, +0.004175606,887.0 +, +0.0040392242,888.0 +, +0.0038949153,889.0 +, +0.0037763983,890.0 +, +0.003872497,891.0 +, +0.0036474157,892.0 +, +0.0036936295,893.0 +, +0.0036857862,894.0 +, +0.0036914926,895.0 +, +0.0037500162,896.0 +, +0.0037770276,897.0 +, +0.0038148519,898.0 +, +0.003841009,899.0 +, +0.003945652,900.0 +, +0.003822885,901.0 +, +0.0036930875,902.0 +, +0.003682067,903.0 +, +0.0036827337,904.0 +, +0.0038612336,905.0 +, +0.003749943,906.0 +, +0.0036443607,907.0 +, +0.0035677615,908.0 +, +0.0035921622,909.0 +, +0.003497947,910.0 +, +0.0036051024,911.0 +, +0.0036856737,912.0 +, +0.0035897132,913.0 +, +0.0036784734,914.0 +, +0.0036165367,915.0 +, +0.0037043053,916.0 +, +0.003736385,917.0 +, +0.0038468062,918.0 +, +0.003752191,919.0 +, +0.0037464662,920.0 +, +0.0037775356,921.0 +, +0.0037770844,922.0 +, +0.0038808458,923.0 +, +0.0039042484,924.0 +, +0.003684226,925.0 +, +0.0036903638,926.0 +, +0.0036559496,927.0 +, +0.0035693403,928.0 +, +0.0036656198,929.0 +, +0.0036183726,930.0 +, +0.0035348393,931.0 +, +0.0036061138,932.0 +, +0.0036647352,933.0 +, +0.0038364097,934.0 +, +0.0038707212,935.0 +, +0.0039437604,936.0 +, +0.0038781285,937.0 +, +0.0039777462,938.0 +, +0.0039753085,939.0 +, +0.004007493,940.0 +, +0.0041054236,941.0 +, +0.0040364186,942.0 +, +0.003919002,943.0 +, +0.0036425546,944.0 +, +0.0036413395,945.0 +, +0.00358137,946.0 +, +0.0035427846,947.0 +, +0.0035164307,948.0 +, +0.0035138682,949.0 +, +0.0034125433,950.0 +, +0.0033195156,951.0 +, +0.003348027,952.0 +, +0.0033948296,953.0 +, +0.0034023947,954.0 +, +0.0032937608,955.0 +, +0.0033007532,956.0 +, +0.003433684,957.0 +, +0.0033358324,958.0 +, +0.0035069503,959.0 +, +0.0035376232,960.0 +, +0.0036563824,961.0 +, +0.0035335429,962.0 +, +0.0035310306,963.0 +, +0.0035087387,964.0 +, +0.0036923955,965.0 +, +0.0035206892,966.0 +, +0.003411553,967.0 +, +0.0034317158,968.0 +, +0.0032142908,969.0 +, +0.0032122768,970.0 +, +0.0031884226,971.0 +, +0.003346699,972.0 +, +0.0031881717,973.0 +, +0.003183635,974.0 +, +0.003034526,975.0 +, +0.0031629931,976.0 +, +0.0030812577,977.0 +, +0.0031289924,978.0 +, +0.0031526932,979.0 +, +0.003117193,980.0 +, +0.003045367,981.0 +, +0.0029104627,982.0 +, +0.0031331182,983.0 +, +0.0031124088,984.0 +, +0.0031144798,985.0 +, +0.0031231642,986.0 +, +0.0031577498,987.0 +, +0.0032250448,988.0 +, +0.0032643885,989.0 +, +0.0033339406,990.0 +, +0.0032123527,991.0 +, +0.0032543265,992.0 +, +0.0030723833,993.0 +, +0.0031718991,994.0 +, +0.0032978754,995.0 +, +0.0033740767,996.0 +, +0.0034178733,997.0 +, +0.0033011672,998.0 +, +0.0032197232,999.0 +, diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/progress.csv b/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/progress.csv new file mode 100644 index 0000000..5757207 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/progress.csv @@ -0,0 +1,2001 @@ +time-step,y_out,perf/mse +0,0.027489057490298268, +,, +1,0.03383943686917408, +,, +2,0.10048490502727697, +,, +3,-0.052043374842352545, +,, +4,0.020200100591427753, +,, +5,0.0737710139918437, +,, +6,-0.12505266037628973, +,, +7,0.10640373806667935, +,, +8,-0.037115906562423834, +,, +9,0.1299973918395534,0.2213418 +,, +10,0.048189410223540154,0.18151541 +,, +11,0.04990721567176539,0.15199599 +,, +12,0.03417405416445801,0.13638918 +,, +13,0.03378412208206964,0.11555026 +,, +14,0.028797863097579347,0.1025746 +,, +15,-0.00663100405785557,0.08903063 +,, +16,0.06070651573815519,0.082288586 +,, +17,0.10683817401447347,0.075040475 +,, +18,-0.05851561487275698,0.07045758 +,, +19,0.04198831964609696,0.06912045 +,, +20,-0.046601687663713254,0.06851025 +,, +21,0.060667004746230754,0.067601785 +,, +22,-0.10305766113565043,0.062033504 +,, +23,-0.07589105224499651,0.06083738 +,, +24,0.013276784083461165,0.056046844 +,, +25,0.06653610232161597,0.052001763 +,, +26,0.07162726897316611,0.050352037 +,, +27,0.025747987413264957,0.048408873 +,, +28,-0.16412734918133043,0.049339093 +,, +29,0.0609564629962416,0.049158037 +,, +30,-0.020575963437058267,0.047397114 +,, +31,-0.20218860674665579,0.04551185 +,, +32,-0.044006542286568626,0.047057323 +,, +33,0.11401755227377518,0.046180792 +,, +34,0.03392149262470401,0.04624776 +,, +35,0.04302767448969723,0.047249004 +,, +36,-0.10236511057715353,0.049095653 +,, +37,2.4245258245868262e-05,0.048703287 +,, +38,0.06205460721315238,0.04864519 +,, +39,-0.0007867037274102307,0.047138564 +,, +40,-0.05358983587682742,0.045966193 +,, +41,0.07596135605136463,0.04617403 +,, +42,-0.1032859466779448,0.0450994 +,, +43,0.03254971575917456,0.044573702 +,, +44,-0.005748852967503104,0.043455534 +,, +45,-0.029470264142429238,0.041777693 +,, +46,-0.09445071342216627,0.039458685 +,, +47,-0.08204230068004104,0.040559005 +,, +48,0.03315484248120979,0.0386033 +,, +49,-0.074398879774102,0.03760356 +,, +50,0.02791223575768978,0.035813883 +,, +51,-0.08791307210870006,0.035661034 +,, +52,-0.003670429969539535,0.035118055 +,, +53,0.031184462981102532,0.03511173 +,, +54,0.08899209004425122,0.035650674 +,, +55,-0.0014705992841195208,0.035762656 +,, +56,-0.02360427139263685,0.03560549 +,, +57,0.013760798386207685,0.0349341 +,, +58,0.09974054027503784,0.03472092 +,, +59,0.029873430876102457,0.035575476 +,, +60,0.024311567218117478,0.035381716 +,, +61,0.11615775551232746,0.034856774 +,, +62,0.029092651078626335,0.034570497 +,, +63,0.14283422142706143,0.034000043 +,, +64,0.02350537273320681,0.03381919 +,, +65,0.09216478270125635,0.03339701 +,, +66,0.05022559474333474,0.0337741 +,, +67,0.05377594104867052,0.033254325 +,, +68,0.06546771637583218,0.032633655 +,, +69,-0.0816659282973736,0.03219404 +,, +70,-0.013996186533289157,0.032805838 +,, +71,-0.1269125425510938,0.032841913 +,, +72,0.05782453046791113,0.031482257 +,, +73,-0.14573959949177634,0.031539984 +,, +74,-0.035035898813363796,0.031192064 +,, +75,0.07059691384142662,0.03175701 +,, +76,0.14696603797745922,0.031267945 +,, +77,-0.04942678084144561,0.029908344 +,, +78,0.07483127254026606,0.0303464 +,, +79,-0.04007011268325698,0.029448232 +,, +80,0.09218043036898674,0.028521877 +,, +81,-0.025123625651642202,0.02831181 +,, +82,-0.005717770708863687,0.029110854 +,, +83,0.10718667278570412,0.028900817 +,, +84,0.04040916076994447,0.028351873 +,, +85,0.02598014372440952,0.02713016 +,, +86,0.015993753967208826,0.027275499 +,, +87,-0.00893117172153668,0.02898648 +,, +88,0.00048297605181154765,0.02910329 +,, +89,0.049181014599337804,0.028891105 +,, +90,-0.06196352740546348,0.029155355 +,, +91,0.03484618290338535,0.028093165 +,, +92,0.006653885239382238,0.027509117 +,, +93,0.09262640935125302,0.02631087 +,, +94,-0.019893058558177582,0.024781937 +,, +95,-0.010223010078329993,0.024651572 +,, +96,0.0039146104978400875,0.0238366 +,, +97,0.050368768341542886,0.021582127 +,, +98,0.05159541948095288,0.020574383 +,, +99,0.07852601294779091,0.02091686 +,, +100,0.051325759540783805,0.020916494 +,, +101,0.0352544574010975,0.021655126 +,, +102,0.014932534113763843,0.021175686 +,, +103,-0.04442544732799567,0.020749059 +,, +104,0.040396344417154034,0.02127223 +,, +105,0.06579454510906188,0.020565215 +,, +106,0.03075637837447561,0.020838127 +,, +107,0.018200683528700162,0.02159388 +,, +108,0.002250402475335027,0.021593995 +,, +109,0.005837034429014926,0.02105179 +,, +110,0.08475634243990723,0.02001243 +,, +111,-0.05770851683536485,0.020365763 +,, +112,0.0462229674602882,0.020517994 +,, +113,0.031735825595698604,0.020068152 +,, +114,-0.17317422526039794,0.020240221 +,, +115,0.1148575802359366,0.02081648 +,, +116,0.08419698065086556,0.020471169 +,, +117,0.0645473617481418,0.019733286 +,, +118,-0.04170115079641868,0.019559998 +,, +119,-0.007017898103924017,0.01958919 +,, +120,0.06942934492580886,0.019794539 +,, +121,-0.09803465197564509,0.018008139 +,, +122,0.0794885429929186,0.017552197 +,, +123,0.01511794561400378,0.018022334 +,, +124,0.08475777659509863,0.017377157 +,, +125,-0.09481904514841949,0.01712075 +,, +126,-0.00281960264146823,0.017562747 +,, +127,0.0557742427973937,0.017126106 +,, +128,0.11007011461637123,0.016692223 +,, +129,0.023758238769956645,0.016295671 +,, +130,0.0619756924713934,0.016403737 +,, +131,-0.04714845887952111,0.01732798 +,, +132,0.014769102758238544,0.017429734 +,, +133,0.005184502673579802,0.01712677 +,, +134,0.06272356216823143,0.017159015 +,, +135,0.07282944612198627,0.016970944 +,, +136,-0.06886494148486116,0.016358491 +,, +137,-0.06523963849233039,0.016560799 +,, +138,-0.027385549865570572,0.016877415 +,, +139,0.03660066204273599,0.017120881 +,, +140,0.06028872377705415,0.017035149 +,, +141,-0.026633313102916792,0.016782813 +,, +142,-0.002584883932699601,0.01638801 +,, +143,0.04141453940066381,0.015880505 +,, +144,-0.02291530867858431,0.015267524 +,, +145,-0.05158026056845809,0.0156107005 +,, +146,-0.025829635528019097,0.015585728 +,, +147,-0.07169854382154615,0.015725685 +,, +148,0.08703193475739066,0.01553901 +,, +149,0.025506098338488166,0.015121599 +,, +150,0.02584118438804487,0.015083885 +,, +151,0.02179638995627979,0.015403369 +,, +152,-0.033907066377101364,0.015506953 +,, +153,-0.004057493217568348,0.015268986 +,, +154,0.0881456017995952,0.015932553 +,, +155,-0.030927352792779226,0.01559755 +,, +156,-0.05428327885603775,0.015623331 +,, +157,0.006241892907618979,0.015851144 +,, +158,-0.06337918991289547,0.015993834 +,, +159,-0.060168981029129466,0.01616678 +,, +160,-0.059264213131900986,0.015920011 +,, +161,0.05347586909975829,0.014885281 +,, +162,0.05867371041275338,0.014697814 +,, +163,-0.04780081526776444,0.015226157 +,, +164,0.011983687100694383,0.015763143 +,, +165,0.03612258265412288,0.015888304 +,, +166,0.008208482511355059,0.015365997 +,, +167,-0.025602218071141783,0.014655883 +,, +168,-0.022564084422375858,0.014129279 +,, +169,-0.025756043145654155,0.013963118 +,, +170,0.09622291100060226,0.013838867 +,, +171,-0.055872953633806136,0.014186429 +,, +172,0.002474476414154916,0.0143125625 +,, +173,-0.003811716436377066,0.014567261 +,, +174,0.038662374080205016,0.013981223 +,, +175,0.1338598330467758,0.014193992 +,, +176,0.04826148608673141,0.014226446 +,, +177,-0.059668717531881243,0.014416695 +,, +178,-0.06608559052844698,0.01473509 +,, +179,0.010346101629254076,0.014725288 +,, +180,0.1220254375993062,0.014622453 +,, +181,0.05533387334711676,0.014817156 +,, +182,-0.006387859349557478,0.015053752 +,, +183,-0.03591860586811453,0.014922845 +,, +184,0.009146057925298184,0.014320677 +,, +185,0.004265855565032534,0.0138921235 +,, +186,-0.032722250864614534,0.013571496 +,, +187,-0.009365296564316481,0.013630627 +,, +188,0.026513640523197123,0.013863456 +,, +189,-0.008068907848293033,0.013980565 +,, +190,0.0366230273144705,0.014103638 +,, +191,0.03130439569441966,0.013648671 +,, +192,0.007460658028326184,0.012918606 +,, +193,-0.0369025835447556,0.012076277 +,, +194,-0.14952025543081424,0.012533133 +,, +195,-0.03167505159412653,0.012529286 +,, +196,-0.06940598075646275,0.012729259 +,, +197,0.010425811391162658,0.0125234425 +,, +198,-0.02954565633366335,0.01248196 +,, +199,-0.0298469557546419,0.012001619 +,, +200,0.048324354965201016,0.012085 +,, +201,-0.060215697075004,0.0121003315 +,, +202,-0.04075596054504691,0.01250341 +,, +203,-0.016160200777038055,0.012854552 +,, +204,0.04067277356933696,0.012434529 +,, +205,-0.06012255243479899,0.012821165 +,, +206,0.02479656340564075,0.012978372 +,, +207,0.08863652514186501,0.012783785 +,, +208,-0.0011755722502281097,0.012412922 +,, +209,-0.027435076687525078,0.013082026 +,, +210,-0.022240742351529653,0.012463743 +,, +211,-0.0639497332208046,0.0119159315 +,, +212,0.0992588874437108,0.011504205 +,, +213,-0.049809326203250896,0.011533032 +,, +214,0.015467118901925071,0.011533143 +,, +215,0.015757935808703265,0.011066494 +,, +216,0.13879728717064024,0.011071108 +,, +217,-0.07076780195137142,0.011399285 +,, +218,0.031045967715961013,0.010827815 +,, +219,-0.06926181992403664,0.010404508 +,, +220,-0.02188611541475037,0.010643965 +,, +221,-0.07177613099951179,0.010983663 +,, +222,0.02562816633857835,0.011280661 +,, +223,-0.12159655612988701,0.011255766 +,, +224,-0.006522265732167312,0.011315351 +,, +225,-0.04075930387881675,0.010898156 +,, +226,-0.061283209795115076,0.010742856 +,, +227,0.08152336832930711,0.010361671 +,, +228,-0.04963600852022586,0.010702359 +,, +229,0.09988252144907263,0.01037641 +,, +230,-0.09627781386967582,0.010638231 +,, +231,-0.0934081457031967,0.011000741 +,, +232,-0.09730892935555992,0.010648107 +,, +233,-0.04372713934362904,0.010665002 +,, +234,0.024627816663951647,0.010773917 +,, +235,0.03264079072240894,0.011147271 +,, +236,-0.008747104564045372,0.010947985 +,, +237,-0.0061459785958557014,0.011461743 +,, +238,-0.025356021458218848,0.011465353 +,, +239,-0.03621666477849354,0.011548136 +,, +240,0.1453063236466605,0.011317678 +,, +241,0.013141899928308304,0.01101277 +,, +242,0.050065501807789854,0.010909235 +,, +243,0.06178425191319317,0.010884374 +,, +244,0.01140042781437687,0.010763186 +,, +245,0.1601979944558255,0.01102829 +,, +246,-0.06750885609315185,0.01089759 +,, +247,-0.10271763376174178,0.010658663 +,, +248,-0.027359749879148944,0.010504929 +,, +249,0.08534234640178384,0.011187745 +,, +250,-0.012000221957132667,0.011144376 +,, +251,-0.041374158379549546,0.011077395 +,, +252,-0.03630859385763387,0.011236122 +,, +253,-0.07174375198167708,0.0109797595 +,, +254,-0.024729980321709248,0.010989378 +,, +255,-0.06463612263074725,0.010269151 +,, +256,0.024516229906699324,0.010586536 +,, +257,0.10497013037680758,0.01066226 +,, +258,-0.03259312995715302,0.010843486 +,, +259,-0.09323113115438063,0.010546822 +,, +260,-0.14032555098374572,0.010866616 +,, +261,-0.06570917778357513,0.01089716 +,, +262,-0.024193817389197868,0.01102573 +,, +263,-0.03954077824871785,0.01122058 +,, +264,0.015454791929528047,0.011261811 +,, +265,0.10623826088375668,0.011647056 +,, +266,0.025875332747677508,0.011396077 +,, +267,0.02040781293247722,0.010895356 +,, +268,0.08207530138215216,0.010594012 +,, +269,0.04033163910192383,0.009982122 +,, +270,-0.0027821932021388565,0.009611089 +,, +271,0.00854802488682592,0.009687115 +,, +272,0.0021899737551824214,0.009739076 +,, +273,-0.16481364552300828,0.009571998 +,, +274,0.037669752168637334,0.009289256 +,, +275,-0.062304521924853105,0.009065564 +,, +276,0.06885092666126716,0.008992936 +,, +277,0.05813305568517049,0.009405516 +,, +278,0.0019083162266465004,0.009802055 +,, +279,0.0005248048259492363,0.010002249 +,, +280,0.013439182043971862,0.010391736 +,, +281,-0.09339715850648714,0.010695013 +,, +282,0.06809029747630507,0.010549389 +,, +283,0.07413784607171876,0.010508211 +,, +284,0.10985248509488153,0.010766902 +,, +285,0.05319035893575946,0.010791292 +,, +286,0.12483849169321815,0.011008025 +,, +287,0.02231329676570106,0.010703808 +,, +288,-0.09393671377316017,0.0106153665 +,, +289,0.18299664123788645,0.010478398 +,, +290,0.031235583166447783,0.009825417 +,, +291,0.004464523613433078,0.00932461 +,, +292,0.055711608506722674,0.009172568 +,, +293,-0.018822026623737498,0.009338206 +,, +294,0.03043719089926153,0.009650408 +,, +295,-0.04905585642614666,0.009822436 +,, +296,-0.14648617277625925,0.009617481 +,, +297,-0.15869376598775453,0.009609596 +,, +298,0.06448938440406765,0.009172958 +,, +299,-0.01864041655752602,0.009404348 +,, +300,-0.014843403587261418,0.00974897 +,, +301,-0.032270882085879214,0.009659214 +,, +302,-0.15204299706435026,0.009650087 +,, +303,0.042528775099401075,0.009558508 +,, +304,0.0628715889023813,0.008911663 +,, +305,-0.010123067948399157,0.008500017 +,, +306,0.0359663670975208,0.008463617 +,, +307,0.12498251496030266,0.008380451 +,, +308,0.0590374973697022,0.008560829 +,, +309,-0.011106231309101787,0.008684639 +,, +310,-0.07220960256310699,0.008560272 +,, +311,0.051587470148865146,0.00865485 +,, +312,-0.14629685879564858,0.008592058 +,, +313,-0.07542463982809876,0.008361543 +,, +314,0.08681026660317344,0.0085406955 +,, +315,-0.08083985574219929,0.00899319 +,, +316,-0.004678879158906954,0.009028759 +,, +317,0.027458515500193095,0.00926211 +,, +318,-0.028562621943194807,0.009524745 +,, +319,-0.09814416536000592,0.0092332205 +,, +320,0.05106764769060687,0.009254497 +,, +321,0.12377424566307826,0.008958961 +,, +322,0.02355830406286602,0.008968334 +,, +323,-0.008650265827820601,0.008997877 +,, +324,-0.03290956732441712,0.009054659 +,, +325,-0.03502426087988773,0.008929395 +,, +326,0.07983040721252783,0.008791028 +,, +327,0.00739619245844636,0.008621386 +,, +328,-0.03113412294337803,0.008276341 +,, +329,0.08658297210415979,0.00802771 +,, +330,-0.03990618047142003,0.007813783 +,, +331,-0.020000452665566507,0.0082202675 +,, +332,0.08227492682788612,0.008203571 +,, +333,0.060551411772972186,0.008702431 +,, +334,0.027044567439328523,0.008423993 +,, +335,-0.057293063598330335,0.008752415 +,, +336,0.01020052140722405,0.008889762 +,, +337,-0.029455084112767056,0.008702272 +,, +338,0.07037434474309744,0.009433094 +,, +339,-0.07791218390142995,0.009802917 +,, +340,0.10350941270235017,0.009853077 +,, +341,0.13785249487750798,0.0097324485 +,, +342,0.12063975321466132,0.009619629 +,, +343,0.06999974447819401,0.009217979 +,, +344,-0.09779063879380917,0.009695167 +,, +345,-0.1742015666400185,0.009033231 +,, +346,0.02553897072193649,0.008923811 +,, +347,0.04008153445569794,0.009237295 +,, +348,-0.016528496298304676,0.008707397 +,, +349,-0.12281439916034742,0.008889573 +,, +350,-0.06463651073037252,0.009206372 +,, +351,-0.1205760158062407,0.008988985 +,, +352,-0.08177551216057026,0.009025356 +,, +353,-0.0533092378612928,0.008861664 +,, +354,0.17806087319413944,0.008521282 +,, +355,-0.07089451678147499,0.008602491 +,, +356,-0.1298295222993551,0.008645901 +,, +357,0.007739526805792872,0.008593101 +,, +358,-0.05247397937897361,0.008487901 +,, +359,0.01100919928211616,0.008191287 +,, +360,0.06932044497472173,0.008271532 +,, +361,0.042567933755754045,0.008348331 +,, +362,0.06474586656302853,0.008694865 +,, +363,-0.006974253437910104,0.008881613 +,, +364,0.020041008142565205,0.008868958 +,, +365,-0.013317734919622036,0.009162227 +,, +366,-0.013986120223192622,0.00931981 +,, +367,-0.053839784209465474,0.009015773 +,, +368,0.009011735398121105,0.008895373 +,, +369,-0.06644600305730733,0.009197822 +,, +370,0.0625251084711047,0.008726108 +,, +371,-0.018576984964998107,0.008916206 +,, +372,0.08062917715342328,0.008774358 +,, +373,0.02126066654343341,0.008648316 +,, +374,-0.05666387561573949,0.008675615 +,, +375,0.1554823759004757,0.008376681 +,, +376,0.061328235250273276,0.008051926 +,, +377,-0.021661794757762358,0.008303893 +,, +378,-0.0008771553287130335,0.008236652 +,, +379,-0.045892789443704604,0.0076520974 +,, +380,-0.055787129020932205,0.007512162 +,, +381,0.029992713566686487,0.0075943572 +,, +382,-0.04610142373737068,0.007268989 +,, +383,-0.00999696595969772,0.0072541414 +,, +384,0.01980629093919867,0.007113274 +,, +385,-0.010428256562264593,0.0074879713 +,, +386,0.13330447430699094,0.0075280406 +,, +387,-0.02868646517440828,0.0077055274 +,, +388,-0.0036416376031119246,0.0076229894 +,, +389,-0.07972758281466595,0.0076871687 +,, +390,-0.12463244272792708,0.007881274 +,, +391,0.013061381124250905,0.007767598 +,, +392,-0.02222465886932018,0.007888826 +,, +393,0.1597655400631429,0.007940272 +,, +394,0.012187978255387599,0.008078203 +,, +395,0.041944347320028066,0.0076349094 +,, +396,0.06348181512150938,0.0074360506 +,, +397,0.09648064478515259,0.0070463954 +,, +398,0.02727612524722786,0.0072657345 +,, +399,-0.09952358278060663,0.007447394 +,, +400,0.12031595779950474,0.0073229196 +,, +401,0.06278728299504507,0.006974215 +,, +402,-0.04791677449001801,0.0067043165 +,, +403,0.06318132252945553,0.0066258474 +,, +404,0.0111951279340969,0.006491606 +,, +405,-0.08530243015911998,0.006644386 +,, +406,-0.034047218077938216,0.006644313 +,, +407,0.062292127626059235,0.007075014 +,, +408,0.09208290425909052,0.0067524374 +,, +409,-0.10897552587581444,0.0067051286 +,, +410,-0.14531273588811364,0.006571252 +,, +411,0.057234324586540986,0.006660252 +,, +412,0.09052176438280676,0.00707165 +,, +413,0.05432186591464415,0.007256379 +,, +414,-0.02210404392074428,0.007263222 +,, +415,-0.10707020963786017,0.0070702685 +,, +416,0.04277369573802764,0.0073101074 +,, +417,-0.02231389896141693,0.0070546805 +,, +418,0.007837229965795944,0.0071849586 +,, +419,0.06816880864164117,0.0069580055 +,, +420,0.08740930654629812,0.007267782 +,, +421,-0.07496735246249514,0.0074610235 +,, +422,-0.05134353921235495,0.0071352487 +,, +423,0.03387878344549808,0.0071086613 +,, +424,0.09387086388234228,0.0070788027 +,, +425,0.0730910754680821,0.0069850706 +,, +426,-0.08367880715197457,0.006988878 +,, +427,-0.001851917536489429,0.0069258674 +,, +428,0.052707724081997476,0.006869568 +,, +429,-0.010555145483026551,0.0071738972 +,, +430,-0.00814468357085229,0.007338633 +,, +431,0.038867094589926016,0.007385929 +,, +432,0.04905233998004832,0.0075799907 +,, +433,0.0027135418184495927,0.0074687875 +,, +434,0.08161762919378493,0.007415314 +,, +435,0.04063681985927382,0.007560329 +,, +436,0.013317019186722026,0.0076255873 +,, +437,0.07953208909800058,0.007551273 +,, +438,-0.024054859025852714,0.0076690973 +,, +439,0.036988499071522754,0.0074901045 +,, +440,-0.0175359435815584,0.0074266596 +,, +441,0.2099906988576387,0.0071635484 +,, +442,0.05878230672772023,0.0071878745 +,, +443,-0.10475605580639055,0.0071336953 +,, +444,0.07829708947126655,0.0071941717 +,, +445,-0.07945175518011274,0.0071380264 +,, +446,0.012590481935974885,0.007155928 +,, +447,0.05683770913799835,0.0071311267 +,, +448,0.1238182164338251,0.0071576396 +,, +449,-0.01714327872172553,0.0070625073 +,, +450,0.042126081597180294,0.0068681017 +,, +451,-0.029871023660504065,0.0071220687 +,, +452,-0.11274071794042978,0.0069928826 +,, +453,0.042238346751341964,0.0070566796 +,, +454,-0.014618952323794725,0.0071178176 +,, +455,-0.012329220195906827,0.0072293133 +,, +456,-0.013504246956830529,0.0069733923 +,, +457,-0.01889017041582624,0.007098145 +,, +458,0.12538741442945653,0.0073137046 +,, +459,-0.0421108460974973,0.0074471524 +,, +460,0.05408303958700357,0.007314945 +,, +461,-0.22389660251190321,0.0073141293 +,, +462,0.04840745663788779,0.0073226253 +,, +463,0.04848876348963526,0.0075716553 +,, +464,0.09947202090945238,0.0075203343 +,, +465,0.1452513678683839,0.007616365 +,, +466,0.014892403147617958,0.007872241 +,, +467,0.06832467297037784,0.007797871 +,, +468,0.04710280383308244,0.007348449 +,, +469,-0.013927789194846572,0.007487183 +,, +470,-0.05652133756436192,0.007666313 +,, +471,-0.03381179679165443,0.007621041 +,, +472,-0.03656352626911953,0.007781482 +,, +473,0.04735693954629644,0.0074633197 +,, +474,0.08017465538743276,0.007517954 +,, +475,-0.04231725337330106,0.007420115 +,, +476,0.010298668958874525,0.007126314 +,, +477,-0.05836767499227963,0.007138537 +,, +478,0.0924910599152952,0.007529103 +,, +479,0.04478606061477024,0.007232096 +,, +480,-0.06663392681108188,0.0071658813 +,, +481,-0.014916070246681965,0.006865284 +,, +482,-0.04083940540247635,0.006643592 +,, +483,-0.14662020133778694,0.006437654 +,, +484,-0.08884121093716203,0.0064374385 +,, +485,0.01402854333848266,0.0061637172 +,, +486,0.058109238770753455,0.006397553 +,, +487,0.08803814680558682,0.006467645 +,, +488,0.03837799573980915,0.0065242136 +,, +489,-0.03028638776813956,0.006476526 +,, +490,-0.09095682756311825,0.00637464 +,, +491,0.12202754202754172,0.006558396 +,, +492,-0.025493565283066143,0.006630133 +,, +493,-0.03116274019372467,0.006634014 +,, +494,-0.2246427081005089,0.0067515434 +,, +495,-0.013339495250657933,0.0070284335 +,, +496,0.11602208282125387,0.0068016658 +,, +497,-0.10806231045086777,0.0066306917 +,, +498,0.00923711079210545,0.006383223 +,, +499,-0.06651454053770002,0.0064143986 +,, +500,-0.0364852675925938,0.0063092476 +,, +501,-0.08382435559398266,0.006410853 +,, +502,0.041425829922140486,0.0063125803 +,, +503,0.09643423876858463,0.006380326 +,, +504,0.07243370208856452,0.0060056667 +,, +505,0.02317026808101299,0.006038694 +,, +506,-0.026269047942106712,0.0060741603 +,, +507,0.026576635680417664,0.0062994985 +,, +508,0.00960417740939623,0.006276124 +,, +509,0.0371368640179019,0.0061255046 +,, +510,0.07824816807426746,0.0061656605 +,, +511,0.052026749647303194,0.0059149642 +,, +512,0.029330838991545285,0.0061497926 +,, +513,0.014909225987156521,0.006169011 +,, +514,0.11794309584866888,0.0062508285 +,, +515,-0.11962335186936793,0.006057213 +,, +516,0.01343719998539114,0.0061819674 +,, +517,0.1582445395205174,0.006344872 +,, +518,-0.015780697482923732,0.0063840365 +,, +519,0.06060236255333497,0.0064421 +,, +520,-0.1930388863354292,0.0063485084 +,, +521,0.1533207901973182,0.006528827 +,, +522,-0.04124573917953448,0.006375099 +,, +523,0.02285772110411845,0.00626872 +,, +524,0.050861951330881464,0.0062585557 +,, +525,0.1319987015002982,0.006252048 +,, +526,0.07875908943012286,0.0060802856 +,, +527,0.01770303520843458,0.00571565 +,, +528,-0.15565667177744982,0.0057090363 +,, +529,-0.026923738454610522,0.005775889 +,, +530,-0.03609686236877792,0.005885468 +,, +531,-0.11160632675440871,0.00562531 +,, +532,0.027905608780592513,0.005705278 +,, +533,0.02018799880372936,0.005722405 +,, +534,-0.0005809795441915344,0.0058096964 +,, +535,-0.02845020806260351,0.0058348286 +,, +536,0.15681317039901052,0.005756849 +,, +537,0.05171019914795138,0.005865877 +,, +538,0.051942271943924236,0.005779306 +,, +539,0.0454230190514426,0.0057658544 +,, +540,0.1065350208399661,0.0057187616 +,, +541,-0.05485069997398473,0.005913873 +,, +542,-0.03375890585612036,0.00569485 +,, +543,-0.06350007531689078,0.006070492 +,, +544,0.0968413583918549,0.0059679695 +,, +545,-0.09144512940953411,0.005937689 +,, +546,0.05980006825238416,0.0058847824 +,, +547,0.08620821996487787,0.0060364204 +,, +548,0.024356727748597415,0.0060583553 +,, +549,-0.08614271701351017,0.006164747 +,, +550,-0.04473443363308492,0.0062775738 +,, +551,0.018437343690495475,0.006435971 +,, +552,-0.01982421712274544,0.0064379363 +,, +553,0.0006653106962454317,0.006262321 +,, +554,0.04643287284470139,0.0065218285 +,, +555,0.06973335068147202,0.0066356524 +,, +556,-0.07691789191274301,0.00690855 +,, +557,0.04080802739736469,0.0065123164 +,, +558,-0.06804243233409887,0.006517934 +,, +559,0.09289713435083422,0.006416404 +,, +560,-0.11410947975976238,0.006382212 +,, +561,-0.021272329327930724,0.006172291 +,, +562,-0.18801594235212232,0.006486813 +,, +563,-0.013134991451850164,0.0063959197 +,, +564,-0.1467793139758765,0.0062121847 +,, +565,0.17665908216142018,0.006033571 +,, +566,0.024712910189891885,0.006053632 +,, +567,-0.0053686199010262135,0.006283164 +,, +568,0.008037324696203028,0.0062189503 +,, +569,-0.016108848794768725,0.006192473 +,, +570,0.04643451391771215,0.0061711622 +,, +571,-0.08400453886466357,0.00621113 +,, +572,-0.13696036073976126,0.0062055713 +,, +573,0.0025769061106088384,0.006361153 +,, +574,0.05317053134336358,0.006329463 +,, +575,0.03688708203202092,0.006423714 +,, +576,-0.06045143521784356,0.0062316386 +,, +577,-0.037763438947084796,0.0061640413 +,, +578,-0.0006454569901213278,0.0065376996 +,, +579,0.03318905299150328,0.006798501 +,, +580,-0.08387028356358645,0.006835184 +,, +581,0.09250413275610252,0.0067300596 +,, +582,0.08283209984178158,0.0064291903 +,, +583,0.0008869902009903952,0.0064151757 +,, +584,-0.021561991272079698,0.006358838 +,, +585,-0.039852938514200256,0.0062949844 +,, +586,-0.006234596672137903,0.0065687774 +,, +587,-0.014535579316156413,0.006732789 +,, +588,0.010480188095925482,0.006350413 +,, +589,0.07749613709021924,0.0062813824 +,, +590,-0.12093946017111488,0.006291695 +,, +591,0.023469143893999227,0.0062973006 +,, +592,-0.015063997753945416,0.006482204 +,, +593,-0.03379495131619074,0.0062797316 +,, +594,-0.11952038321764427,0.0060943626 +,, +595,0.06960039940064713,0.006060673 +,, +596,-0.08812699186502548,0.0058491575 +,, +597,0.055505441850784855,0.0056013167 +,, +598,-0.02274065181438572,0.0056335153 +,, +599,-0.014460929046795926,0.0055206358 +,, +600,0.11374051897449591,0.0053234184 +,, +601,0.1314527856761012,0.0053103687 +,, +602,0.013311680922967922,0.0052162 +,, +603,-0.05519723506255879,0.005208586 +,, +604,-0.06648503252896285,0.0054678055 +,, +605,0.0053787039344831075,0.005652829 +,, +606,0.005381921606513172,0.005549931 +,, +607,0.07561719258484269,0.0057286425 +,, +608,-0.033460306822817934,0.0058101555 +,, +609,0.042659492561327755,0.0058230096 +,, +610,0.006011854617697411,0.0058073634 +,, +611,0.0062527528718843775,0.0057664067 +,, +612,0.21883341348585497,0.005824791 +,, +613,-0.11005951076826592,0.005838863 +,, +614,-0.0033452121015280223,0.005838423 +,, +615,0.05433805796371618,0.005856662 +,, +616,-0.10703419951066083,0.0060580852 +,, +617,-0.029519178123001893,0.005655325 +,, +618,-0.0532546302105872,0.0054848753 +,, +619,-0.06489453466116989,0.0054236734 +,, +620,-0.035251515061319544,0.005423072 +,, +621,0.0667678386769824,0.005385162 +,, +622,-0.1581860419208495,0.0052685244 +,, +623,-0.006323591652064604,0.0053974665 +,, +624,-0.10023951187542966,0.0052526495 +,, +625,0.03127291492470566,0.004981737 +,, +626,0.0669298084918447,0.004875469 +,, +627,0.09413944234583731,0.0052874335 +,, +628,0.03869056549047898,0.005451837 +,, +629,-0.03296695885164596,0.005573095 +,, +630,-0.024029321856949313,0.00598256 +,, +631,0.009581000458424027,0.005923933 +,, +632,-0.04567250256521142,0.0059836316 +,, +633,-0.019793830380115122,0.0060538505 +,, +634,-0.06473864149104813,0.006047846 +,, +635,-0.04005884998765266,0.006080807 +,, +636,0.04085690189211568,0.00599097 +,, +637,-0.04546608203049793,0.0058805295 +,, +638,-0.028384133258889808,0.005881214 +,, +639,-0.05893491917200572,0.0058441786 +,, +640,0.06323819899164691,0.005528598 +,, +641,0.1031669167652805,0.005639632 +,, +642,-0.012617006521842316,0.0056080096 +,, +643,0.021387948330553602,0.005362663 +,, +644,0.10538734966021086,0.005540789 +,, +645,0.011386918319341202,0.005658085 +,, +646,0.017707596884291125,0.0057937005 +,, +647,0.08283934288276404,0.005652317 +,, +648,-0.020392599695122762,0.005586999 +,, +649,-0.03267445241423944,0.00555695 +,, +650,0.0651159863797674,0.0055426257 +,, +651,-0.08002777567134539,0.005631237 +,, +652,-0.09949643214823078,0.005731188 +,, +653,-0.11476157819015051,0.0056848605 +,, +654,-0.016764144565506414,0.0056562508 +,, +655,0.06258708784344083,0.005583243 +,, +656,0.07269161229405108,0.0058037057 +,, +657,0.10772624405377314,0.0057565453 +,, +658,0.020707542105475478,0.00593283 +,, +659,-0.07161271747591103,0.005832375 +,, +660,-0.04812490880380656,0.005958461 +,, +661,-0.09407079270027045,0.00596415 +,, +662,0.026535994653415346,0.0057445727 +,, +663,-0.0914837449022242,0.0060045067 +,, +664,-0.0857142277111683,0.0060107643 +,, +665,0.09725913285388446,0.0060831867 +,, +666,-0.06795845891405923,0.005690192 +,, +667,-0.005567197544145589,0.005793244 +,, +668,0.01370760973911897,0.0055814865 +,, +669,0.04695937345808549,0.0055364585 +,, +670,-0.08968619421781548,0.0053845188 +,, +671,0.14039163072612204,0.0054389285 +,, +672,0.007495121689482916,0.005470776 +,, +673,0.049622375580551006,0.00518021 +,, +674,-0.11175280357315429,0.004929944 +,, +675,0.04654483281125271,0.004721289 +,, +676,-0.06816157323528413,0.004790255 +,, +677,-0.08730185823124258,0.004781442 +,, +678,0.07147126114670563,0.0047044973 +,, +679,0.07853993638615239,0.004829833 +,, +680,-0.026399807003829386,0.0048114187 +,, +681,-0.020713986559095475,0.004737159 +,, +682,0.001804119024131686,0.004797871 +,, +683,-0.08766819218603167,0.004972216 +,, +684,-0.030928019583703198,0.0050873416 +,, +685,-0.05547149758896797,0.0052958406 +,, +686,-0.2089204064259479,0.0052558226 +,, +687,0.06285010609386098,0.00505994 +,, +688,0.008282565974234157,0.005301248 +,, +689,0.07804330640243702,0.005145841 +,, +690,0.021975214929378387,0.005175805 +,, +691,0.04943046535845573,0.005072666 +,, +692,-0.04594455598784577,0.0050318367 +,, +693,0.005212174361807775,0.00495977 +,, +694,0.09971486610772964,0.0049736327 +,, +695,-0.012963087788330916,0.0049477825 +,, +696,0.036403101187304554,0.0050119488 +,, +697,0.06776066026978264,0.005259874 +,, +698,-0.03038982154718392,0.005174082 +,, +699,0.015686740180293,0.005234071 +,, +700,0.04579589846236572,0.005318279 +,, +701,-0.022358911165720245,0.0053585297 +,, +702,-0.003934117355747689,0.0054472187 +,, +703,-0.04766940169115307,0.0054075853 +,, +704,0.047042503885358695,0.0052512554 +,, +705,-0.0842446980130241,0.0052173245 +,, +706,-0.06466039784894771,0.005176955 +,, +707,-0.035096267342702825,0.005014113 +,, +708,-0.01311456746263285,0.004791107 +,, +709,0.009095697161270533,0.004639486 +,, +710,0.005435087386450425,0.0046699205 +,, +711,0.008981001211498321,0.004846975 +,, +712,-0.09545815135305152,0.004852234 +,, +713,-0.010158361773863506,0.0049797418 +,, +714,-0.14311933613860736,0.004992086 +,, +715,-0.14473123247216382,0.005117629 +,, +716,0.02691451042150673,0.004990969 +,, +717,-0.03185532931697853,0.00531058 +,, +718,-0.058275977352751515,0.005671566 +,, +719,-0.03642766206538432,0.006027546 +,, +720,-0.08567411795285346,0.0058292653 +,, +721,0.11036086931652833,0.0055674165 +,, +722,-0.008265766959156318,0.005296134 +,, +723,-0.1017415544511614,0.005272624 +,, +724,-0.06309536887370817,0.0053456556 +,, +725,0.18462073236924814,0.0053317016 +,, +726,0.07297610028136224,0.0054772 +,, +727,-0.08328400629712307,0.0052649626 +,, +728,0.08510895706042132,0.0051203216 +,, +729,-0.005606537733908519,0.0048611336 +,, +730,0.1680616656665337,0.0048834207 +,, +731,0.20963980150955674,0.004988238 +,, +732,0.028332366871336223,0.0051153335 +,, +733,0.007640250799664601,0.0050399606 +,, +734,0.07759565331166883,0.0052681724 +,, +735,0.11603894726572432,0.0052630017 +,, +736,-0.14749878071716757,0.0053777313 +,, +737,0.05672363247891506,0.0055167703 +,, +738,0.02697346225146774,0.005421219 +,, +739,-0.056805473689377606,0.0056234156 +,, +740,0.029083780696928588,0.005609937 +,, +741,0.024169613497177583,0.005493781 +,, +742,-0.0932903632949009,0.00550913 +,, +743,-0.057320286851568,0.0054801735 +,, +744,-0.11747940238911972,0.0053504272 +,, +745,-0.06156256744340216,0.0052574836 +,, +746,-0.07168512196398899,0.0052500037 +,, +747,-0.09288177949215681,0.0049751005 +,, +748,0.01705034155201169,0.0048878053 +,, +749,0.04586546176173788,0.004856643 +,, +750,0.002969318013759964,0.004894593 +,, +751,0.07105794787197511,0.004904653 +,, +752,0.038178722880756355,0.0048743533 +,, +753,0.11536263814946354,0.004888937 +,, +754,-0.10690226596096611,0.0050419783 +,, +755,-0.03384275884476416,0.004962045 +,, +756,-0.02916568133088475,0.004732796 +,, +757,0.0919050900154044,0.004706106 +,, +758,0.029491396508862643,0.00473864 +,, +759,0.05710882290593085,0.0045996015 +,, +760,0.013499628739275207,0.00475166 +,, +761,-0.016471076702691406,0.0045398 +,, +762,0.023286883452198325,0.0045748875 +,, +763,0.06979950380295113,0.004456512 +,, +764,-0.043890494034903506,0.0043449975 +,, +765,0.03986990101577312,0.0045670895 +,, +766,0.011412173989693408,0.0045255786 +,, +767,0.04814905067761509,0.004743767 +,, +768,0.14481916110256723,0.0048627025 +,, +769,0.010772755006747847,0.004834731 +,, +770,0.06831946910675582,0.0047857375 +,, +771,0.031812557404205175,0.0049077547 +,, +772,-0.018336452684512776,0.004852662 +,, +773,-0.014720219149760095,0.0048671286 +,, +774,0.035832341648929705,0.004895644 +,, +775,-0.10991464077006738,0.0049077235 +,, +776,-0.012464423155177894,0.004886048 +,, +777,-0.00572117742931845,0.004699385 +,, +778,0.027722783574636634,0.0046963403 +,, +779,0.04406318131316249,0.004736431 +,, +780,-0.042784056103841964,0.0045894543 +,, +781,0.02047130697162549,0.0046472945 +,, +782,0.0032896299951629127,0.004546878 +,, +783,-0.03303425528226478,0.004714864 +,, +784,0.08590196994619917,0.0045516314 +,, +785,0.0473155799071668,0.0045556026 +,, +786,0.059669081709644946,0.0046186005 +,, +787,0.00653759768447075,0.004640814 +,, +788,0.006086541070656606,0.00441129 +,, +789,-0.07408900442000242,0.0044520227 +,, +790,-0.077368313992081,0.004653627 +,, +791,-0.03184839221267921,0.0046147592 +,, +792,0.04964312353950445,0.00479171 +,, +793,-0.15453877289722973,0.0046523414 +,, +794,-0.030158414753877018,0.004650621 +,, +795,-0.06350248682229874,0.004321754 +,, +796,-0.08499965904921863,0.004386327 +,, +797,0.13231797245046056,0.0042695254 +,, +798,-0.0056437094570299315,0.004391427 +,, +799,0.021662305632722333,0.004358123 +,, +800,0.04697495541792328,0.004127129 +,, +801,-0.05656280589761763,0.0040562777 +,, +802,-0.08135008669002727,0.003989099 +,, +803,0.02315248041624433,0.0040815724 +,, +804,-0.08388748023076584,0.0040360005 +,, +805,-0.01854027225703772,0.004112023 +,, +806,0.020227117889672956,0.004039911 +,, +807,0.017536381702498768,0.004311596 +,, +808,-0.037417277677199455,0.004326271 +,, +809,-0.014186968350354661,0.0041819457 +,, +810,0.05478808128914167,0.0041624107 +,, +811,-0.07207896952528775,0.004298868 +,, +812,0.03121069452536346,0.004268541 +,, +813,-0.07564699260282326,0.0041068112 +,, +814,-0.012215070167636032,0.004058507 +,, +815,0.03100949444673732,0.004065884 +,, +816,-0.01133546251079301,0.0042096553 +,, +817,-0.043247744928602234,0.0041722236 +,, +818,0.03183235947754899,0.0040931143 +,, +819,-0.00973696419226884,0.004154513 +,, +820,-0.026545899440965512,0.0042210864 +,, +821,-0.03320311771766071,0.0041227527 +,, +822,-0.007560760424591867,0.00402163 +,, +823,0.022267975358910487,0.004214854 +,, +824,-0.08158946206226082,0.0042724824 +,, +825,-0.0569940019703053,0.0043421034 +,, +826,-0.01781863682870514,0.0041782237 +,, +827,-0.022043492412986143,0.004040577 +,, +828,0.005726870056667929,0.0040065325 +,, +829,0.03997026415292691,0.003988184 +,, +830,-0.01783074787492754,0.0039855205 +,, +831,0.007443651501855593,0.004029011 +,, +832,0.01285447156231902,0.004251573 +,, +833,0.022908769336872692,0.004214334 +,, +834,-0.03775857443580198,0.004192804 +,, +835,0.03146486321145145,0.003940071 +,, +836,0.026354264593634158,0.0040270844 +,, +837,-0.051769959968607525,0.004037282 +,, +838,0.02203600392911515,0.004143486 +,, +839,0.08638688545260728,0.004338912 +,, +840,-0.04419576588587712,0.004528165 +,, +841,0.0989419390486286,0.00444869 +,, +842,-0.08648264676353254,0.004272726 +,, +843,-0.057789553448766476,0.0041704476 +,, +844,0.1082680283655637,0.004118084 +,, +845,-0.07408567036072215,0.00413963 +,, +846,0.032965744527478726,0.0039881384 +,, +847,0.14820756793298911,0.0040209573 +,, +848,-0.14854570723343785,0.0039468803 +,, +849,0.030148484631223972,0.0037184518 +,, +850,-0.006072160874125425,0.0033886537 +,, +851,0.0504146365269158,0.0034263432 +,, +852,0.0077351700022983,0.0034564394 +,, +853,0.014051160517296997,0.003447393 +,, +854,-0.047173106610733644,0.0035165674 +,, +855,0.05267655774827479,0.0038481385 +,, +856,0.01050195183103942,0.003982555 +,, +857,0.096282498306281,0.003939111 +,, +858,-0.021824521273335964,0.0039055585 +,, +859,0.048003431904673335,0.0038725447 +,, +860,0.0405485760822527,0.0039680605 +,, +861,0.06489449561000964,0.0039801137 +,, +862,-0.024017338891728232,0.0041612484 +,, +863,0.00693026443935316,0.0042559775 +,, +864,0.009100166710488744,0.004256179 +,, +865,0.0924515038964833,0.0040335744 +,, +866,-0.0775147130530732,0.0040837307 +,, +867,-0.12423168263398718,0.004239221 +,, +868,0.04166673086076307,0.0043187523 +,, +869,-0.08642256476738966,0.0043789707 +,, +870,0.07226285071412346,0.0044167666 +,, +871,-0.03340911630550146,0.0044578053 +,, +872,0.026122803964947476,0.004390196 +,, +873,-0.023846150784118655,0.004248857 +,, +874,-0.019487785257851914,0.0042989356 +,, +875,0.021753419477359773,0.0043008337 +,, +876,-0.04698392866853118,0.004083876 +,, +877,0.07287603212225924,0.0040107905 +,, +878,0.09642535401637983,0.0040095556 +,, +879,-0.07513336590167415,0.004087646 +,, +880,0.02065406860257479,0.0041999184 +,, +881,0.04216817799082321,0.004096242 +,, +882,-0.061762220500703444,0.0042469203 +,, +883,0.005109948839682084,0.0042625186 +,, +884,0.05834575986619052,0.0041507035 +,, +885,0.07294088094189798,0.0041474854 +,, +886,-0.03361437223386248,0.004174534 +,, +887,0.02495953975702263,0.004175606 +,, +888,0.14330207751162766,0.0040392242 +,, +889,-0.050205558397817165,0.0038949153 +,, +890,-0.012594006031340997,0.0037763983 +,, +891,-0.020287447609524938,0.003872497 +,, +892,0.0485925870392082,0.0036474157 +,, +893,0.015563000779763254,0.0036936295 +,, +894,0.004495097862161589,0.0036857862 +,, +895,-0.08520977651159746,0.0036914926 +,, +896,-0.04774926109804469,0.0037500162 +,, +897,0.04755676409662875,0.0037770276 +,, +898,-0.008969296017262929,0.0038148519 +,, +899,-0.10926919236844292,0.003841009 +,, +900,0.02240966450808162,0.003945652 +,, +901,-0.11613803757237892,0.003822885 +,, +902,-0.03902173076233929,0.0036930875 +,, +903,-0.023942039639297336,0.003682067 +,, +904,0.05449655822952741,0.0036827337 +,, +905,0.05724036580619677,0.0038612336 +,, +906,-0.013179272865774097,0.003749943 +,, +907,0.029606169302860863,0.0036443607 +,, +908,0.061750087892242435,0.0035677615 +,, +909,-0.06678296294050574,0.0035921622 +,, +910,-0.021734390095362877,0.003497947 +,, +911,0.12653330990049322,0.0036051024 +,, +912,0.028237226414812258,0.0036856737 +,, +913,0.020446278769759435,0.0035897132 +,, +914,-0.014704132027099567,0.0036784734 +,, +915,0.05388080842226259,0.0036165367 +,, +916,-0.1524413626915631,0.0037043053 +,, +917,0.07524425707663726,0.003736385 +,, +918,-0.0412041142035956,0.0038468062 +,, +919,-0.015229739827114536,0.003752191 +,, +920,0.045521984121899936,0.0037464662 +,, +921,-0.03637859100871772,0.0037775356 +,, +922,-0.09324838640990421,0.0037770844 +,, +923,0.09256943728191923,0.0038808458 +,, +924,0.02275840269626867,0.0039042484 +,, +925,-0.08874184822268857,0.003684226 +,, +926,0.04585116244075357,0.0036903638 +,, +927,-0.09686762280720304,0.0036559496 +,, +928,-0.08567628440809194,0.0035693403 +,, +929,-0.030908696209924414,0.0036656198 +,, +930,-0.036890416668950474,0.0036183726 +,, +931,0.0014466257517982972,0.0035348393 +,, +932,-0.03271253679941116,0.0036061138 +,, +933,0.14557612086533622,0.0036647352 +,, +934,0.010255717928914589,0.0038364097 +,, +935,-0.06795477280169784,0.0038707212 +,, +936,0.07892781880237168,0.0039437604 +,, +937,0.010540711829597163,0.0038781285 +,, +938,-0.0558571935948388,0.0039777462 +,, +939,0.020545334958220633,0.0039753085 +,, +940,0.014437601224081307,0.004007493 +,, +941,0.06628480207263385,0.0041054236 +,, +942,0.10554300566096236,0.0040364186 +,, +943,-0.031483661496743566,0.003919002 +,, +944,0.03398933073924138,0.0036425546 +,, +945,-0.0324516391786472,0.0036413395 +,, +946,-0.005934750107913767,0.00358137 +,, +947,-0.17825732794211618,0.0035427846 +,, +948,-0.07029850134542223,0.0035164307 +,, +949,-0.0032865389304768365,0.0035138682 +,, +950,-0.047795090194895036,0.0034125433 +,, +951,-0.05207659408220988,0.0033195156 +,, +952,0.11865413572749475,0.003348027 +,, +953,-0.032460377806898755,0.0033948296 +,, +954,-0.1192314971147035,0.0034023947 +,, +955,0.10864813462299915,0.0032937608 +,, +956,-0.023030745095320715,0.0033007532 +,, +957,0.09173654590347288,0.003433684 +,, +958,-0.03949152050028487,0.0033358324 +,, +959,-0.01129964385886565,0.0035069503 +,, +960,0.0423808481576944,0.0035376232 +,, +961,-0.05423552690404053,0.0036563824 +,, +962,0.021841563354696475,0.0035335429 +,, +963,-0.011776613808783039,0.0035310306 +,, +964,0.03613940614198717,0.0035087387 +,, +965,0.009278967084022725,0.0036923955 +,, +966,-0.04750055114974758,0.0035206892 +,, +967,-0.015434323617827685,0.003411553 +,, +968,-0.00548402859375785,0.0034317158 +,, +969,0.0798116442068432,0.0032142908 +,, +970,-0.09506012600492621,0.0032122768 +,, +971,0.07451816302822048,0.0031884226 +,, +972,-0.06462393900640835,0.003346699 +,, +973,-0.02172902881056727,0.0031881717 +,, +974,-0.12271358079323161,0.003183635 +,, +975,0.049083446936739036,0.003034526 +,, +976,0.01962237968165481,0.0031629931 +,, +977,0.016543575264463248,0.0030812577 +,, +978,0.057914034192337614,0.0031289924 +,, +979,-0.13238567566606269,0.0031526932 +,, +980,-0.014234454586650973,0.003117193 +,, +981,-0.09198106637971612,0.003045367 +,, +982,-0.03184465062762387,0.0029104627 +,, +983,0.10963209367625827,0.0031331182 +,, +984,0.016535318274775147,0.0031124088 +,, +985,-0.043218634309970465,0.0031144798 +,, +986,0.1488792053525355,0.0031231642 +,, +987,-0.06379716987547497,0.0031577498 +,, +988,0.05590268305282983,0.0032250448 +,, +989,-0.12601573241779418,0.0032643885 +,, +990,-0.03237056743549869,0.0033339406 +,, +991,-0.008655201793518516,0.0032123527 +,, +992,0.05580060910795471,0.0032543265 +,, +993,-0.07205290038842252,0.0030723833 +,, +994,0.02533603383531701,0.0031718991 +,, +995,0.001915550514977174,0.0032978754 +,, +996,-0.015148736593699141,0.0033740767 +,, +997,0.02345254884625209,0.0034178733 +,, +998,-0.07548239991181832,0.0033011672 +,, +999,-0.012463844268081954,0.0032197232 +,, diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/tb/events/events.out.tfevents.1646141011.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/tb/events/events.out.tfevents.1646141011.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..3bf0661 Binary files /dev/null and b/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/tb/events/events.out.tfevents.1646141011.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/warn.txt b/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/warn.txt new file mode 100644 index 0000000..f7e0929 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/warn.txt @@ -0,0 +1,8 @@ +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/backup.txt b/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/backup.txt new file mode 100644 index 0000000..30333aa --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/backup.txt @@ -0,0 +1,7 @@ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.001 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 88 diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/log.txt b/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/log.txt new file mode 100644 index 0000000..09fd7ac --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/log.txt @@ -0,0 +1,5048 @@ +Logging to ../log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/ +log dir: ../log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/ +pkl_file: ../archive_tester/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88.pkl +checkpoint_dir: ../checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/ +results_dir: ../results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.001 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 88 +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.162 | +--------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint 0 +--------------------------------------------------------- +| time-step | 1 | +| y_out | 0.0764 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 2 | +| y_out | -0.00117 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 3 | +| y_out | -0.0901 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 4 | +| y_out | -0.0121 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 5 | +| y_out | 0.152 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 6 | +| y_out | -0.0486 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 7 | +| y_out | -0.00131 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 8 | +| y_out | 0.075 | +--------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.4116845 | +| time-step | 9 | +| y_out | -0.023 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.34226435 | +| time-step | 10 | +| y_out | 0.0666 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2865979 | +| time-step | 11 | +| y_out | 0.113 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22066227 | +| time-step | 12 | +| y_out | 0.0684 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17881593 | +| time-step | 13 | +| y_out | 0.018 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15293343 | +| time-step | 14 | +| y_out | 0.025 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13582486 | +| time-step | 15 | +| y_out | 0.0185 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12673703 | +| time-step | 16 | +| y_out | -0.015 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.118425295 | +| time-step | 17 | +| y_out | 0.0676 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.1182645 | +| time-step | 18 | +| y_out | -0.02 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11723097 | +| time-step | 19 | +| y_out | -0.042 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11428434 | +| time-step | 20 | +| y_out | 0.00202 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.110354364 | +| time-step | 21 | +| y_out | -0.0161 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.10520983 | +| time-step | 22 | +| y_out | -0.0112 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09873715 | +| time-step | 23 | +| y_out | 0.0716 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0954464 | +| time-step | 24 | +| y_out | 0.0488 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.090510435 | +| time-step | 25 | +| y_out | -0.0132 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08614574 | +| time-step | 26 | +| y_out | 0.00863 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08214369 | +| time-step | 27 | +| y_out | 0.0444 | +----------------------------------------------------------- +--------------------------------------------------------- +| perf/mse | 0.07739 | +| time-step | 28 | +| y_out | -0.0458 | +--------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.072461925 | +| time-step | 29 | +| y_out | -0.0655 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07006042 | +| time-step | 30 | +| y_out | 0.02 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.067246854 | +| time-step | 31 | +| y_out | 0.0098 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.065904096 | +| time-step | 32 | +| y_out | 0.0829 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06531572 | +| time-step | 33 | +| y_out | -0.135 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.061929334 | +| time-step | 34 | +| y_out | 0.115 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.060432475 | +| time-step | 35 | +| y_out | -0.103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.057160437 | +| time-step | 36 | +| y_out | 0.00449 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05663547 | +| time-step | 37 | +| y_out | 0.129 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05235964 | +| time-step | 38 | +| y_out | -0.0134 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.051079948 | +| time-step | 39 | +| y_out | 0.00503 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05068625 | +| time-step | 40 | +| y_out | -0.0426 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04840982 | +| time-step | 41 | +| y_out | -0.00698 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04626112 | +| time-step | 42 | +| y_out | -0.0434 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04484333 | +| time-step | 43 | +| y_out | -0.0343 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.046863087 | +| time-step | 44 | +| y_out | 0.0916 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.046616856 | +| time-step | 45 | +| y_out | -0.0186 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047773868 | +| time-step | 46 | +| y_out | -0.0539 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04544707 | +| time-step | 47 | +| y_out | 0.0443 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.044461053 | +| time-step | 48 | +| y_out | 0.0669 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.044983987 | +| time-step | 49 | +| y_out | 0.0983 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04420654 | +| time-step | 50 | +| y_out | 0.00204 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.045076367 | +| time-step | 51 | +| y_out | 0.03 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045095697 | +| time-step | 52 | +| y_out | -0.00356 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.046461117 | +| time-step | 53 | +| y_out | -0.0288 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04372434 | +| time-step | 54 | +| y_out | -0.0175 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04359477 | +| time-step | 55 | +| y_out | -0.128 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.043051086 | +| time-step | 56 | +| y_out | -0.0994 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043757685 | +| time-step | 57 | +| y_out | -0.0302 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.046227086 | +| time-step | 58 | +| y_out | -0.0437 | +------------------------------------------------------------ +--------------------------------------------------------- +| perf/mse | 0.045824 | +| time-step | 59 | +| y_out | -0.0202 | +--------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.044117607 | +| time-step | 60 | +| y_out | -0.00417 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.042604417 | +| time-step | 61 | +| y_out | 0.0341 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043005396 | +| time-step | 62 | +| y_out | -0.00509 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041401844 | +| time-step | 63 | +| y_out | 0.0483 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040821463 | +| time-step | 64 | +| y_out | -0.0328 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039660804 | +| time-step | 65 | +| y_out | -0.0894 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03841579 | +| time-step | 66 | +| y_out | 0.0557 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03781774 | +| time-step | 67 | +| y_out | 0.114 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035546236 | +| time-step | 68 | +| y_out | -0.0366 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03404691 | +| time-step | 69 | +| y_out | -0.0222 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034336008 | +| time-step | 70 | +| y_out | 0.0804 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03648937 | +| time-step | 71 | +| y_out | -0.0365 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03634174 | +| time-step | 72 | +| y_out | 0.057 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034494564 | +| time-step | 73 | +| y_out | 0.00643 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033293024 | +| time-step | 74 | +| y_out | 0.00552 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03323144 | +| time-step | 75 | +| y_out | 0.0468 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034067787 | +| time-step | 76 | +| y_out | -0.0139 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033351593 | +| time-step | 77 | +| y_out | -0.0398 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032609988 | +| time-step | 78 | +| y_out | 0.0358 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032117996 | +| time-step | 79 | +| y_out | -0.0575 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033656016 | +| time-step | 80 | +| y_out | 0.0211 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03157043 | +| time-step | 81 | +| y_out | -0.0187 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.030397505 | +| time-step | 82 | +| y_out | 0.147 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031375386 | +| time-step | 83 | +| y_out | -0.0468 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0331585 | +| time-step | 84 | +| y_out | 0.0566 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03305576 | +| time-step | 85 | +| y_out | 0.0877 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.032709464 | +| time-step | 86 | +| y_out | 0.0485 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0320201 | +| time-step | 87 | +| y_out | -0.0536 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.032831933 | +| time-step | 88 | +| y_out | 0.0773 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033486065 | +| time-step | 89 | +| y_out | 0.126 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032104082 | +| time-step | 90 | +| y_out | -0.0475 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0311484 | +| time-step | 91 | +| y_out | -0.0314 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031639583 | +| time-step | 92 | +| y_out | -0.0322 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030790463 | +| time-step | 93 | +| y_out | 0.0516 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030732488 | +| time-step | 94 | +| y_out | 0.0592 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03033323 | +| time-step | 95 | +| y_out | 0.00317 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.030574158 | +| time-step | 96 | +| y_out | 0.133 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030977616 | +| time-step | 97 | +| y_out | 0.035 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029380009 | +| time-step | 98 | +| y_out | 0.0651 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028496768 | +| time-step | 99 | +| y_out | 0.00447 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028147172 | +| time-step | 100 | +| y_out | 0.0809 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint 100 +------------------------------------------------------------ +| perf/mse | 0.028606955 | +| time-step | 101 | +| y_out | 0.00757 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027945647 | +| time-step | 102 | +| y_out | -0.06 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028185958 | +| time-step | 103 | +| y_out | -0.0608 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026932105 | +| time-step | 104 | +| y_out | -0.192 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027318224 | +| time-step | 105 | +| y_out | -0.0059 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02615488 | +| time-step | 106 | +| y_out | -0.0368 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02680419 | +| time-step | 107 | +| y_out | -0.0188 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026500195 | +| time-step | 108 | +| y_out | -0.0346 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026046822 | +| time-step | 109 | +| y_out | 0.151 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026122168 | +| time-step | 110 | +| y_out | 0.0502 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026296128 | +| time-step | 111 | +| y_out | -0.0766 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025212338 | +| time-step | 112 | +| y_out | 0.11 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02545307 | +| time-step | 113 | +| y_out | 0.13 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.025583547 | +| time-step | 114 | +| y_out | 0.0302 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024545776 | +| time-step | 115 | +| y_out | -0.0325 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024057273 | +| time-step | 116 | +| y_out | 0.115 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02244277 | +| time-step | 117 | +| y_out | 0.0902 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.022560945 | +| time-step | 118 | +| y_out | 0.0403 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02307056 | +| time-step | 119 | +| y_out | 0.157 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.022394374 | +| time-step | 120 | +| y_out | -0.0801 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021637758 | +| time-step | 121 | +| y_out | -0.0606 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023614278 | +| time-step | 122 | +| y_out | 0.0233 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022924874 | +| time-step | 123 | +| y_out | 0.0966 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022113372 | +| time-step | 124 | +| y_out | -0.0791 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022329802 | +| time-step | 125 | +| y_out | -0.0896 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022729445 | +| time-step | 126 | +| y_out | 0.0265 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023531575 | +| time-step | 127 | +| y_out | -0.00328 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02450201 | +| time-step | 128 | +| y_out | 0.00183 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0238791 | +| time-step | 129 | +| y_out | 0.0177 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.023837082 | +| time-step | 130 | +| y_out | -0.0648 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023029322 | +| time-step | 131 | +| y_out | -0.0334 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021849122 | +| time-step | 132 | +| y_out | 0.0258 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021838527 | +| time-step | 133 | +| y_out | 0.000211 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021615716 | +| time-step | 134 | +| y_out | -0.158 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021900065 | +| time-step | 135 | +| y_out | -0.178 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021565739 | +| time-step | 136 | +| y_out | 0.0959 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021086615 | +| time-step | 137 | +| y_out | 0.078 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019709218 | +| time-step | 138 | +| y_out | 0.00684 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019687956 | +| time-step | 139 | +| y_out | -0.000109 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019365186 | +| time-step | 140 | +| y_out | 0.0968 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019639643 | +| time-step | 141 | +| y_out | 0.042 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018927427 | +| time-step | 142 | +| y_out | -0.00592 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018604886 | +| time-step | 143 | +| y_out | -0.0829 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018862568 | +| time-step | 144 | +| y_out | -0.0535 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018079463 | +| time-step | 145 | +| y_out | 0.0251 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017920785 | +| time-step | 146 | +| y_out | -0.00981 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017506853 | +| time-step | 147 | +| y_out | -0.0881 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017187018 | +| time-step | 148 | +| y_out | 0.00942 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01760382 | +| time-step | 149 | +| y_out | 0.0663 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.017503249 | +| time-step | 150 | +| y_out | 0.0516 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017784001 | +| time-step | 151 | +| y_out | -0.0723 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017888974 | +| time-step | 152 | +| y_out | 0.036 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018136583 | +| time-step | 153 | +| y_out | 0.00191 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018050347 | +| time-step | 154 | +| y_out | -0.0105 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017828379 | +| time-step | 155 | +| y_out | 0.0108 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017954323 | +| time-step | 156 | +| y_out | -0.0918 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018049702 | +| time-step | 157 | +| y_out | 0.0948 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018038373 | +| time-step | 158 | +| y_out | -0.0615 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017828844 | +| time-step | 159 | +| y_out | -0.0162 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018320028 | +| time-step | 160 | +| y_out | -0.0668 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018292453 | +| time-step | 161 | +| y_out | -0.00346 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01878645 | +| time-step | 162 | +| y_out | -0.0552 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.018440742 | +| time-step | 163 | +| y_out | 0.0539 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018220808 | +| time-step | 164 | +| y_out | 0.177 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018326517 | +| time-step | 165 | +| y_out | 0.0654 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018403286 | +| time-step | 166 | +| y_out | 0.0598 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018378321 | +| time-step | 167 | +| y_out | 0.0508 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018518543 | +| time-step | 168 | +| y_out | 0.13 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017999902 | +| time-step | 169 | +| y_out | 0.143 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018018136 | +| time-step | 170 | +| y_out | 0.0729 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017436014 | +| time-step | 171 | +| y_out | -0.0233 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016493583 | +| time-step | 172 | +| y_out | -0.023 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01667047 | +| time-step | 173 | +| y_out | 0.0148 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.016739586 | +| time-step | 174 | +| y_out | 0.0475 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016361233 | +| time-step | 175 | +| y_out | -0.0506 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01617429 | +| time-step | 176 | +| y_out | -0.00511 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015391266 | +| time-step | 177 | +| y_out | 0.0208 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015521039 | +| time-step | 178 | +| y_out | 0.0143 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016098613 | +| time-step | 179 | +| y_out | 0.0399 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015389146 | +| time-step | 180 | +| y_out | 0.102 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01587503 | +| time-step | 181 | +| y_out | 0.109 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015917998 | +| time-step | 182 | +| y_out | -0.109 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015256567 | +| time-step | 183 | +| y_out | 0.0305 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015143004 | +| time-step | 184 | +| y_out | 0.0587 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015454161 | +| time-step | 185 | +| y_out | 0.0947 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015269896 | +| time-step | 186 | +| y_out | 0.129 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015705734 | +| time-step | 187 | +| y_out | 0.0726 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015584086 | +| time-step | 188 | +| y_out | -0.0888 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014840121 | +| time-step | 189 | +| y_out | -0.13 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014894625 | +| time-step | 190 | +| y_out | -0.111 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014608892 | +| time-step | 191 | +| y_out | -0.0322 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014609566 | +| time-step | 192 | +| y_out | 0.0314 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014993951 | +| time-step | 193 | +| y_out | -0.0565 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015000495 | +| time-step | 194 | +| y_out | -0.0133 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014394654 | +| time-step | 195 | +| y_out | -0.0325 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013766756 | +| time-step | 196 | +| y_out | 0.0385 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013613485 | +| time-step | 197 | +| y_out | 0.0137 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013916832 | +| time-step | 198 | +| y_out | 0.0227 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014203673 | +| time-step | 199 | +| y_out | -0.0424 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013562766 | +| time-step | 200 | +| y_out | 0.00657 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint 200 +------------------------------------------------------------ +| perf/mse | 0.013382072 | +| time-step | 201 | +| y_out | -0.0591 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01315968 | +| time-step | 202 | +| y_out | 0.0126 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.012887858 | +| time-step | 203 | +| y_out | 0.0239 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01337339 | +| time-step | 204 | +| y_out | -0.0578 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.013425673 | +| time-step | 205 | +| y_out | 0.0176 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014038166 | +| time-step | 206 | +| y_out | 0.00637 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013868433 | +| time-step | 207 | +| y_out | -0.0728 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01329882 | +| time-step | 208 | +| y_out | 0.0671 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.013069521 | +| time-step | 209 | +| y_out | 0.0452 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0135223 | +| time-step | 210 | +| y_out | 0.15 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01441008 | +| time-step | 211 | +| y_out | -0.0789 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.014295165 | +| time-step | 212 | +| y_out | -0.082 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01453729 | +| time-step | 213 | +| y_out | -0.0197 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.014061342 | +| time-step | 214 | +| y_out | -0.106 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014587182 | +| time-step | 215 | +| y_out | 0.0385 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0144081805 | +| time-step | 216 | +| y_out | -0.0056 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.014319906 | +| time-step | 217 | +| y_out | -0.0673 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014193867 | +| time-step | 218 | +| y_out | -0.0344 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014007312 | +| time-step | 219 | +| y_out | 0.0441 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013912772 | +| time-step | 220 | +| y_out | 0.00299 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012988779 | +| time-step | 221 | +| y_out | -0.0634 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012617411 | +| time-step | 222 | +| y_out | -0.0169 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012815865 | +| time-step | 223 | +| y_out | 0.0799 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012343487 | +| time-step | 224 | +| y_out | 0.00233 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011513001 | +| time-step | 225 | +| y_out | 0.0507 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011502563 | +| time-step | 226 | +| y_out | -0.219 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011924874 | +| time-step | 227 | +| y_out | -0.0398 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012385877 | +| time-step | 228 | +| y_out | 0.041 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012254153 | +| time-step | 229 | +| y_out | -0.00562 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012247067 | +| time-step | 230 | +| y_out | -0.0154 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012499314 | +| time-step | 231 | +| y_out | 0.0487 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01362699 | +| time-step | 232 | +| y_out | -0.0415 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.013595112 | +| time-step | 233 | +| y_out | 0.0409 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014221516 | +| time-step | 234 | +| y_out | 0.0317 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014418885 | +| time-step | 235 | +| y_out | -0.0367 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014496855 | +| time-step | 236 | +| y_out | -0.137 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014122048 | +| time-step | 237 | +| y_out | -0.0409 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0140051795 | +| time-step | 238 | +| y_out | -0.0658 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.014470877 | +| time-step | 239 | +| y_out | -0.0863 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014183926 | +| time-step | 240 | +| y_out | 0.0133 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013880688 | +| time-step | 241 | +| y_out | 0.0122 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01320968 | +| time-step | 242 | +| y_out | 0.0467 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0130267665 | +| time-step | 243 | +| y_out | -0.0753 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01298934 | +| time-step | 244 | +| y_out | -0.0338 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.012912792 | +| time-step | 245 | +| y_out | -0.0476 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012643425 | +| time-step | 246 | +| y_out | 0.0185 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012662187 | +| time-step | 247 | +| y_out | 0.0885 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012426092 | +| time-step | 248 | +| y_out | -0.0377 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011928229 | +| time-step | 249 | +| y_out | 0.0316 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011977758 | +| time-step | 250 | +| y_out | 0.0757 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012049417 | +| time-step | 251 | +| y_out | 0.102 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012098239 | +| time-step | 252 | +| y_out | -0.0765 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011614481 | +| time-step | 253 | +| y_out | 0.0093 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011484854 | +| time-step | 254 | +| y_out | 0.0177 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011765086 | +| time-step | 255 | +| y_out | 0.0297 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011991626 | +| time-step | 256 | +| y_out | -0.0132 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0120916385 | +| time-step | 257 | +| y_out | -0.00747 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.012188358 | +| time-step | 258 | +| y_out | -0.00225 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0122345975 | +| time-step | 259 | +| y_out | 0.0485 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.012064756 | +| time-step | 260 | +| y_out | 0.0117 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011673996 | +| time-step | 261 | +| y_out | -0.027 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011549339 | +| time-step | 262 | +| y_out | -0.0442 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011740644 | +| time-step | 263 | +| y_out | 0.0691 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011079816 | +| time-step | 264 | +| y_out | -0.0513 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010692937 | +| time-step | 265 | +| y_out | -0.103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010324869 | +| time-step | 266 | +| y_out | 0.0518 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00977801 | +| time-step | 267 | +| y_out | 0.11 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009445672 | +| time-step | 268 | +| y_out | -0.0976 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009423474 | +| time-step | 269 | +| y_out | -0.0939 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009913127 | +| time-step | 270 | +| y_out | 0.0384 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010573848 | +| time-step | 271 | +| y_out | 0.0124 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010515319 | +| time-step | 272 | +| y_out | 7.88e-05 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010208281 | +| time-step | 273 | +| y_out | -0.134 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010351671 | +| time-step | 274 | +| y_out | -0.031 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010713759 | +| time-step | 275 | +| y_out | -0.0226 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010491295 | +| time-step | 276 | +| y_out | 0.00212 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010827411 | +| time-step | 277 | +| y_out | -0.0396 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010586554 | +| time-step | 278 | +| y_out | -0.0562 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01052269 | +| time-step | 279 | +| y_out | -0.0824 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010579078 | +| time-step | 280 | +| y_out | -0.0348 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010243152 | +| time-step | 281 | +| y_out | -0.14 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010236494 | +| time-step | 282 | +| y_out | 0.0369 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010239321 | +| time-step | 283 | +| y_out | 0.0211 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010472357 | +| time-step | 284 | +| y_out | 0.169 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010008585 | +| time-step | 285 | +| y_out | -0.0163 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010203567 | +| time-step | 286 | +| y_out | -0.0955 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010348397 | +| time-step | 287 | +| y_out | -0.0134 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010345891 | +| time-step | 288 | +| y_out | 0.0673 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010700961 | +| time-step | 289 | +| y_out | 0.0279 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010388944 | +| time-step | 290 | +| y_out | 0.039 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0106908465 | +| time-step | 291 | +| y_out | -0.0646 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010309842 | +| time-step | 292 | +| y_out | -0.00861 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010474081 | +| time-step | 293 | +| y_out | 0.126 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010539789 | +| time-step | 294 | +| y_out | -0.0214 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010585275 | +| time-step | 295 | +| y_out | 0.0815 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010429607 | +| time-step | 296 | +| y_out | 0.0479 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010243757 | +| time-step | 297 | +| y_out | 0.0108 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010742357 | +| time-step | 298 | +| y_out | -0.0382 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010794876 | +| time-step | 299 | +| y_out | 0.00499 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010691104 | +| time-step | 300 | +| y_out | -0.0847 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint 300 +------------------------------------------------------------ +| perf/mse | 0.010032582 | +| time-step | 301 | +| y_out | 0.104 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010654226 | +| time-step | 302 | +| y_out | -0.146 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010426847 | +| time-step | 303 | +| y_out | -0.0516 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010203677 | +| time-step | 304 | +| y_out | -0.00144 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0099885 | +| time-step | 305 | +| y_out | -0.0273 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009654961 | +| time-step | 306 | +| y_out | -0.128 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0093472665 | +| time-step | 307 | +| y_out | 0.0159 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009603806 | +| time-step | 308 | +| y_out | 0.0653 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009766078 | +| time-step | 309 | +| y_out | 0.0162 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009610362 | +| time-step | 310 | +| y_out | 0.0457 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009599518 | +| time-step | 311 | +| y_out | 0.0568 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009064664 | +| time-step | 312 | +| y_out | -0.035 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009033918 | +| time-step | 313 | +| y_out | -0.0416 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009256901 | +| time-step | 314 | +| y_out | -0.0177 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009281759 | +| time-step | 315 | +| y_out | 0.0364 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0097410735 | +| time-step | 316 | +| y_out | -0.084 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010113874 | +| time-step | 317 | +| y_out | 0.0209 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009633789 | +| time-step | 318 | +| y_out | -0.0276 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009057928 | +| time-step | 319 | +| y_out | -0.0024 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009432124 | +| time-step | 320 | +| y_out | 0.103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009712348 | +| time-step | 321 | +| y_out | -0.00902 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009893559 | +| time-step | 322 | +| y_out | 0.0358 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010303207 | +| time-step | 323 | +| y_out | 0.144 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009784044 | +| time-step | 324 | +| y_out | -0.0916 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010053712 | +| time-step | 325 | +| y_out | -0.0956 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00999709 | +| time-step | 326 | +| y_out | -0.0276 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009864601 | +| time-step | 327 | +| y_out | -0.0115 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010140386 | +| time-step | 328 | +| y_out | 0.0272 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010266502 | +| time-step | 329 | +| y_out | 0.0206 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010139539 | +| time-step | 330 | +| y_out | -0.0627 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010079867 | +| time-step | 331 | +| y_out | -0.0129 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0100426935 | +| time-step | 332 | +| y_out | 0.0306 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0098304525 | +| time-step | 333 | +| y_out | 0.137 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009680955 | +| time-step | 334 | +| y_out | 0.00633 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00940544 | +| time-step | 335 | +| y_out | -0.0228 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009379968 | +| time-step | 336 | +| y_out | -0.000607 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009440757 | +| time-step | 337 | +| y_out | 0.0379 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009191423 | +| time-step | 338 | +| y_out | 0.0463 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00887909 | +| time-step | 339 | +| y_out | -0.1 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008715235 | +| time-step | 340 | +| y_out | -0.0349 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00873994 | +| time-step | 341 | +| y_out | 0.139 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008850156 | +| time-step | 342 | +| y_out | -0.00513 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0087323515 | +| time-step | 343 | +| y_out | 0.172 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008909301 | +| time-step | 344 | +| y_out | 0.0901 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008655539 | +| time-step | 345 | +| y_out | 0.0471 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008628974 | +| time-step | 346 | +| y_out | 0.123 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008353037 | +| time-step | 347 | +| y_out | -0.0302 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008267693 | +| time-step | 348 | +| y_out | 0.12 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008761351 | +| time-step | 349 | +| y_out | -0.0754 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008686851 | +| time-step | 350 | +| y_out | -0.05 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008627215 | +| time-step | 351 | +| y_out | -0.0427 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0084546115 | +| time-step | 352 | +| y_out | 0.0676 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008602088 | +| time-step | 353 | +| y_out | 0.0864 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00847422 | +| time-step | 354 | +| y_out | -0.00837 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008744193 | +| time-step | 355 | +| y_out | -0.0775 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008688221 | +| time-step | 356 | +| y_out | -0.0353 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008734159 | +| time-step | 357 | +| y_out | 0.035 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008668827 | +| time-step | 358 | +| y_out | 0.142 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008293263 | +| time-step | 359 | +| y_out | -0.104 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008320389 | +| time-step | 360 | +| y_out | -0.0417 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008116147 | +| time-step | 361 | +| y_out | 0.0219 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008200083 | +| time-step | 362 | +| y_out | 0.0554 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008153895 | +| time-step | 363 | +| y_out | 0.0382 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0086259 | +| time-step | 364 | +| y_out | -0.143 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008612452 | +| time-step | 365 | +| y_out | 0.0177 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008708006 | +| time-step | 366 | +| y_out | -0.029 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008772651 | +| time-step | 367 | +| y_out | 0.118 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008839598 | +| time-step | 368 | +| y_out | 0.0212 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008819107 | +| time-step | 369 | +| y_out | -0.0621 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009045528 | +| time-step | 370 | +| y_out | 0.0192 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008872421 | +| time-step | 371 | +| y_out | 0.106 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008818625 | +| time-step | 372 | +| y_out | -0.00862 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008557636 | +| time-step | 373 | +| y_out | -0.0271 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008084479 | +| time-step | 374 | +| y_out | -0.15 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0078722015 | +| time-step | 375 | +| y_out | 0.0263 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007573083 | +| time-step | 376 | +| y_out | 0.035 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00774151 | +| time-step | 377 | +| y_out | -0.0983 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007743551 | +| time-step | 378 | +| y_out | -0.0231 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0076592416 | +| time-step | 379 | +| y_out | 0.00175 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0075029926 | +| time-step | 380 | +| y_out | 0.00758 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0075995037 | +| time-step | 381 | +| y_out | -0.157 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0075590387 | +| time-step | 382 | +| y_out | -0.0401 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007698643 | +| time-step | 383 | +| y_out | 0.062 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007813014 | +| time-step | 384 | +| y_out | -0.0452 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008237163 | +| time-step | 385 | +| y_out | 0.0324 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008597644 | +| time-step | 386 | +| y_out | 0.0444 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008355604 | +| time-step | 387 | +| y_out | -0.111 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008163278 | +| time-step | 388 | +| y_out | -0.127 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008101468 | +| time-step | 389 | +| y_out | 0.0488 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008072455 | +| time-step | 390 | +| y_out | -0.0146 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008196184 | +| time-step | 391 | +| y_out | -0.00761 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00814244 | +| time-step | 392 | +| y_out | 0.0353 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008040335 | +| time-step | 393 | +| y_out | 0.107 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008026287 | +| time-step | 394 | +| y_out | -0.0415 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007766598 | +| time-step | 395 | +| y_out | 0.0852 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0074539334 | +| time-step | 396 | +| y_out | 0.0612 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0076807747 | +| time-step | 397 | +| y_out | 0.134 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007772682 | +| time-step | 398 | +| y_out | -0.0239 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007994756 | +| time-step | 399 | +| y_out | 0.00977 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008108705 | +| time-step | 400 | +| y_out | 0.0322 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint 400 +------------------------------------------------------------ +| perf/mse | 0.008036339 | +| time-step | 401 | +| y_out | -0.0411 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008008949 | +| time-step | 402 | +| y_out | -0.0747 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00787331 | +| time-step | 403 | +| y_out | 0.0745 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007942772 | +| time-step | 404 | +| y_out | -0.159 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007894406 | +| time-step | 405 | +| y_out | -0.0197 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007802221 | +| time-step | 406 | +| y_out | 0.0337 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007519926 | +| time-step | 407 | +| y_out | 0.0518 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007418646 | +| time-step | 408 | +| y_out | -0.0352 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0070824646 | +| time-step | 409 | +| y_out | -0.000199 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00677785 | +| time-step | 410 | +| y_out | -0.0157 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006938192 | +| time-step | 411 | +| y_out | 0.0549 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0067039416 | +| time-step | 412 | +| y_out | 0.098 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006594211 | +| time-step | 413 | +| y_out | 0.106 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0064013363 | +| time-step | 414 | +| y_out | 0.0183 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006770623 | +| time-step | 415 | +| y_out | -0.0762 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006823994 | +| time-step | 416 | +| y_out | 0.104 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0067184344 | +| time-step | 417 | +| y_out | -0.111 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0066474816 | +| time-step | 418 | +| y_out | 0.0114 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007046877 | +| time-step | 419 | +| y_out | -0.0202 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0072142407 | +| time-step | 420 | +| y_out | 0.0401 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0073034638 | +| time-step | 421 | +| y_out | -0.056 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0077653467 | +| time-step | 422 | +| y_out | -0.0614 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008059444 | +| time-step | 423 | +| y_out | -0.105 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008089931 | +| time-step | 424 | +| y_out | -0.0421 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007656876 | +| time-step | 425 | +| y_out | 0.177 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00780701 | +| time-step | 426 | +| y_out | -0.0339 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00797386 | +| time-step | 427 | +| y_out | 0.0874 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008552184 | +| time-step | 428 | +| y_out | 0.0294 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008538587 | +| time-step | 429 | +| y_out | -0.119 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008467974 | +| time-step | 430 | +| y_out | 0.0259 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008256846 | +| time-step | 431 | +| y_out | -0.0598 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008384232 | +| time-step | 432 | +| y_out | -0.0264 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008347852 | +| time-step | 433 | +| y_out | -0.0434 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00868402 | +| time-step | 434 | +| y_out | 0.026 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0086899875 | +| time-step | 435 | +| y_out | -0.119 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008616216 | +| time-step | 436 | +| y_out | 0.0874 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00865731 | +| time-step | 437 | +| y_out | 0.0563 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007961267 | +| time-step | 438 | +| y_out | -0.0287 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008033151 | +| time-step | 439 | +| y_out | -0.0434 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0082433615 | +| time-step | 440 | +| y_out | -0.0495 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008022939 | +| time-step | 441 | +| y_out | 0.0675 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0074998075 | +| time-step | 442 | +| y_out | 0.0991 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0073705884 | +| time-step | 443 | +| y_out | 0.0225 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0070143277 | +| time-step | 444 | +| y_out | 0.0851 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0069089322 | +| time-step | 445 | +| y_out | -0.0629 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006694626 | +| time-step | 446 | +| y_out | 0.0294 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0065240427 | +| time-step | 447 | +| y_out | -0.00337 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0067109377 | +| time-step | 448 | +| y_out | 0.052 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006611994 | +| time-step | 449 | +| y_out | 0.0148 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0062818853 | +| time-step | 450 | +| y_out | -0.0841 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0064523383 | +| time-step | 451 | +| y_out | 0.033 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0064939125 | +| time-step | 452 | +| y_out | 0.00723 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006648867 | +| time-step | 453 | +| y_out | -0.0725 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006654945 | +| time-step | 454 | +| y_out | -0.000962 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0068740114 | +| time-step | 455 | +| y_out | -0.0239 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0072521814 | +| time-step | 456 | +| y_out | 0.0407 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007261589 | +| time-step | 457 | +| y_out | -0.132 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0072377757 | +| time-step | 458 | +| y_out | -0.0976 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0070746467 | +| time-step | 459 | +| y_out | -0.047 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0073849633 | +| time-step | 460 | +| y_out | 0.143 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0074552074 | +| time-step | 461 | +| y_out | 0.105 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007544022 | +| time-step | 462 | +| y_out | 0.0904 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007212624 | +| time-step | 463 | +| y_out | 0.0794 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007286919 | +| time-step | 464 | +| y_out | -5.91e-05 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007602378 | +| time-step | 465 | +| y_out | -0.0872 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0073095886 | +| time-step | 466 | +| y_out | -0.0568 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007411178 | +| time-step | 467 | +| y_out | 0.0148 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0073589766 | +| time-step | 468 | +| y_out | -0.033 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0072832955 | +| time-step | 469 | +| y_out | -0.000327 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007596711 | +| time-step | 470 | +| y_out | -0.143 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0075078136 | +| time-step | 471 | +| y_out | 0.0379 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0074071614 | +| time-step | 472 | +| y_out | -9.85e-05 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007423722 | +| time-step | 473 | +| y_out | -0.153 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0073407656 | +| time-step | 474 | +| y_out | 0.073 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0069066794 | +| time-step | 475 | +| y_out | -0.0101 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007060787 | +| time-step | 476 | +| y_out | 0.065 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.007000332 | +| time-step | 477 | +| y_out | 0.0805 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0070274533 | +| time-step | 478 | +| y_out | 0.00416 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007200422 | +| time-step | 479 | +| y_out | 0.0168 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0067265322 | +| time-step | 480 | +| y_out | 0.00751 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006689547 | +| time-step | 481 | +| y_out | -0.089 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006638625 | +| time-step | 482 | +| y_out | -0.0729 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0066219317 | +| time-step | 483 | +| y_out | -0.0736 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006606955 | +| time-step | 484 | +| y_out | -0.0124 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006765942 | +| time-step | 485 | +| y_out | -0.049 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0065927855 | +| time-step | 486 | +| y_out | 0.184 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006678297 | +| time-step | 487 | +| y_out | 0.103 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0066388734 | +| time-step | 488 | +| y_out | 0.0338 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006275315 | +| time-step | 489 | +| y_out | -0.0526 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0061541293 | +| time-step | 490 | +| y_out | -0.0985 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006242218 | +| time-step | 491 | +| y_out | 0.000441 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0063144267 | +| time-step | 492 | +| y_out | 0.0538 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006560821 | +| time-step | 493 | +| y_out | -0.028 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006544578 | +| time-step | 494 | +| y_out | -0.0715 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006322493 | +| time-step | 495 | +| y_out | -0.0169 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006461198 | +| time-step | 496 | +| y_out | -0.0957 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0062784078 | +| time-step | 497 | +| y_out | 0.0241 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0063545927 | +| time-step | 498 | +| y_out | 0.0334 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006499437 | +| time-step | 499 | +| y_out | 0.0615 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0064413697 | +| time-step | 500 | +| y_out | 0.109 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint 500 +----------------------------------------------------------- +| perf/mse | 0.00621063 | +| time-step | 501 | +| y_out | 0.012 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006231707 | +| time-step | 502 | +| y_out | -0.0184 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0063161002 | +| time-step | 503 | +| y_out | -0.053 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0064998628 | +| time-step | 504 | +| y_out | 0.00578 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006720625 | +| time-step | 505 | +| y_out | 0.0142 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00659097 | +| time-step | 506 | +| y_out | 0.0112 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0064210193 | +| time-step | 507 | +| y_out | -0.0567 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0063262633 | +| time-step | 508 | +| y_out | 0.0599 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006205489 | +| time-step | 509 | +| y_out | -0.0121 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0064683952 | +| time-step | 510 | +| y_out | 0.132 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0069108633 | +| time-step | 511 | +| y_out | -0.0124 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0067900373 | +| time-step | 512 | +| y_out | 0.0542 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00673942 | +| time-step | 513 | +| y_out | -0.0249 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0065494156 | +| time-step | 514 | +| y_out | -0.02 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006396496 | +| time-step | 515 | +| y_out | 0.153 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006454207 | +| time-step | 516 | +| y_out | 0.0591 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006593805 | +| time-step | 517 | +| y_out | -0.0731 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006836043 | +| time-step | 518 | +| y_out | -0.00846 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006825322 | +| time-step | 519 | +| y_out | -0.0152 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006663178 | +| time-step | 520 | +| y_out | -0.14 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0066322843 | +| time-step | 521 | +| y_out | 0.0598 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0068622595 | +| time-step | 522 | +| y_out | 0.0236 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0067408183 | +| time-step | 523 | +| y_out | -0.0177 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0069634477 | +| time-step | 524 | +| y_out | 0.138 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0070486367 | +| time-step | 525 | +| y_out | 0.0442 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.007063304 | +| time-step | 526 | +| y_out | -0.107 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0071476838 | +| time-step | 527 | +| y_out | 0.041 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006980233 | +| time-step | 528 | +| y_out | 0.0512 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0069410824 | +| time-step | 529 | +| y_out | 0.0272 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0070783896 | +| time-step | 530 | +| y_out | -0.0168 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0067939656 | +| time-step | 531 | +| y_out | -0.0117 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0065552196 | +| time-step | 532 | +| y_out | 0.118 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006775963 | +| time-step | 533 | +| y_out | 0.00576 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006312805 | +| time-step | 534 | +| y_out | -0.0186 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0059630363 | +| time-step | 535 | +| y_out | -0.0408 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006159703 | +| time-step | 536 | +| y_out | -0.011 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0062006665 | +| time-step | 537 | +| y_out | 0.0221 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0060760686 | +| time-step | 538 | +| y_out | -0.0104 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0061911535 | +| time-step | 539 | +| y_out | -0.0475 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006080167 | +| time-step | 540 | +| y_out | -0.086 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00597334 | +| time-step | 541 | +| y_out | 0.146 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0060778647 | +| time-step | 542 | +| y_out | -0.0287 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005795536 | +| time-step | 543 | +| y_out | 0.00836 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0061646267 | +| time-step | 544 | +| y_out | 0.0687 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0063526086 | +| time-step | 545 | +| y_out | -0.0461 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0061190845 | +| time-step | 546 | +| y_out | 0.00884 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0058716508 | +| time-step | 547 | +| y_out | -0.0454 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005901403 | +| time-step | 548 | +| y_out | -0.154 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0058907983 | +| time-step | 549 | +| y_out | 0.0456 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005808233 | +| time-step | 550 | +| y_out | -0.0928 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0058353427 | +| time-step | 551 | +| y_out | 0.02 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0057009934 | +| time-step | 552 | +| y_out | 0.0961 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005772243 | +| time-step | 553 | +| y_out | -0.00203 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0056734663 | +| time-step | 554 | +| y_out | -0.0552 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005680301 | +| time-step | 555 | +| y_out | -0.0595 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005705866 | +| time-step | 556 | +| y_out | -0.0109 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005871755 | +| time-step | 557 | +| y_out | 0.0127 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005826918 | +| time-step | 558 | +| y_out | -0.0945 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005780345 | +| time-step | 559 | +| y_out | 0.0226 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0060133236 | +| time-step | 560 | +| y_out | 0.111 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006240505 | +| time-step | 561 | +| y_out | 0.0292 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0062749935 | +| time-step | 562 | +| y_out | -0.0935 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0061353166 | +| time-step | 563 | +| y_out | 0.0228 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006270499 | +| time-step | 564 | +| y_out | 0.0055 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0061956593 | +| time-step | 565 | +| y_out | 0.0216 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00631012 | +| time-step | 566 | +| y_out | 0.0286 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.006206002 | +| time-step | 567 | +| y_out | 0.0255 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.006253851 | +| time-step | 568 | +| y_out | -0.09 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0063427994 | +| time-step | 569 | +| y_out | -0.0291 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0059592677 | +| time-step | 570 | +| y_out | 0.0627 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0057757176 | +| time-step | 571 | +| y_out | 0.00575 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00569206 | +| time-step | 572 | +| y_out | -0.151 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005986777 | +| time-step | 573 | +| y_out | -0.0331 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0058613303 | +| time-step | 574 | +| y_out | 0.0705 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005958927 | +| time-step | 575 | +| y_out | 0.0258 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005617448 | +| time-step | 576 | +| y_out | 0.0104 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0055160574 | +| time-step | 577 | +| y_out | -0.00768 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052953125 | +| time-step | 578 | +| y_out | -0.0603 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052530663 | +| time-step | 579 | +| y_out | 0.00334 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054323934 | +| time-step | 580 | +| y_out | -0.05 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0054982672 | +| time-step | 581 | +| y_out | -0.032 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0056226975 | +| time-step | 582 | +| y_out | -0.0671 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0055458853 | +| time-step | 583 | +| y_out | -0.0829 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053948304 | +| time-step | 584 | +| y_out | 0.0316 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053327624 | +| time-step | 585 | +| y_out | 0.00731 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005581173 | +| time-step | 586 | +| y_out | 0.0623 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005891134 | +| time-step | 587 | +| y_out | -0.054 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0061695324 | +| time-step | 588 | +| y_out | -0.0583 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005980528 | +| time-step | 589 | +| y_out | -0.0325 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0058547505 | +| time-step | 590 | +| y_out | 0.0358 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0056473007 | +| time-step | 591 | +| y_out | 0.106 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0055733095 | +| time-step | 592 | +| y_out | -0.00866 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005406431 | +| time-step | 593 | +| y_out | -0.045 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00548005 | +| time-step | 594 | +| y_out | 0.108 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053556636 | +| time-step | 595 | +| y_out | 0.072 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005052309 | +| time-step | 596 | +| y_out | 0.0143 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004848642 | +| time-step | 597 | +| y_out | 0.157 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0045913546 | +| time-step | 598 | +| y_out | -0.0766 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047361376 | +| time-step | 599 | +| y_out | 0.0636 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004598742 | +| time-step | 600 | +| y_out | 0.0382 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint 600 +------------------------------------------------------------ +| perf/mse | 0.004634972 | +| time-step | 601 | +| y_out | 0.0657 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004533014 | +| time-step | 602 | +| y_out | 0.0252 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004535699 | +| time-step | 603 | +| y_out | 0.0401 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0044071414 | +| time-step | 604 | +| y_out | 0.0942 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047056647 | +| time-step | 605 | +| y_out | 0.0641 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0046403827 | +| time-step | 606 | +| y_out | -0.0326 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004571066 | +| time-step | 607 | +| y_out | -0.0446 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004566402 | +| time-step | 608 | +| y_out | -0.0582 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0044177594 | +| time-step | 609 | +| y_out | -0.032 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004487564 | +| time-step | 610 | +| y_out | -0.0521 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00452708 | +| time-step | 611 | +| y_out | 0.0582 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004643608 | +| time-step | 612 | +| y_out | -0.0341 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0046588853 | +| time-step | 613 | +| y_out | 0.0828 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0048282165 | +| time-step | 614 | +| y_out | 0.0704 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0045193206 | +| time-step | 615 | +| y_out | 0.0342 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0046170405 | +| time-step | 616 | +| y_out | 0.0454 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004550939 | +| time-step | 617 | +| y_out | 0.0189 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004781705 | +| time-step | 618 | +| y_out | -0.137 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00489563 | +| time-step | 619 | +| y_out | -0.00544 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004941295 | +| time-step | 620 | +| y_out | -0.0303 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0049533835 | +| time-step | 621 | +| y_out | 0.0403 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0049276003 | +| time-step | 622 | +| y_out | -0.0685 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0048876107 | +| time-step | 623 | +| y_out | -0.051 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0048700334 | +| time-step | 624 | +| y_out | -0.0602 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0050332868 | +| time-step | 625 | +| y_out | 0.069 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0051972196 | +| time-step | 626 | +| y_out | 0.00514 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0052523883 | +| time-step | 627 | +| y_out | 0.00444 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0051567964 | +| time-step | 628 | +| y_out | -0.0668 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005077093 | +| time-step | 629 | +| y_out | 0.0337 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0051636947 | +| time-step | 630 | +| y_out | -0.0681 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005091381 | +| time-step | 631 | +| y_out | -0.0209 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0050412402 | +| time-step | 632 | +| y_out | -0.0862 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0053023286 | +| time-step | 633 | +| y_out | 0.164 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005147076 | +| time-step | 634 | +| y_out | 0.0776 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005135088 | +| time-step | 635 | +| y_out | 0.0359 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0051928936 | +| time-step | 636 | +| y_out | -0.00876 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005089516 | +| time-step | 637 | +| y_out | -0.000341 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0050600795 | +| time-step | 638 | +| y_out | 0.0105 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0051478497 | +| time-step | 639 | +| y_out | -0.0707 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005037625 | +| time-step | 640 | +| y_out | -0.0135 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0052268542 | +| time-step | 641 | +| y_out | 0.0146 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0051815296 | +| time-step | 642 | +| y_out | -0.00587 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0048808097 | +| time-step | 643 | +| y_out | -0.00185 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004830329 | +| time-step | 644 | +| y_out | 0.0259 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004680804 | +| time-step | 645 | +| y_out | -0.0285 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0044285273 | +| time-step | 646 | +| y_out | -0.0135 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0045601004 | +| time-step | 647 | +| y_out | -0.0323 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047163423 | +| time-step | 648 | +| y_out | -0.0383 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004692768 | +| time-step | 649 | +| y_out | 0.0226 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004637492 | +| time-step | 650 | +| y_out | 0.0851 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0044860104 | +| time-step | 651 | +| y_out | 0.000304 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004424686 | +| time-step | 652 | +| y_out | -0.019 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004633838 | +| time-step | 653 | +| y_out | -0.0166 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0046405606 | +| time-step | 654 | +| y_out | -0.061 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047650584 | +| time-step | 655 | +| y_out | 0.00763 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0049680765 | +| time-step | 656 | +| y_out | 0.0825 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0049326844 | +| time-step | 657 | +| y_out | -0.0718 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047585946 | +| time-step | 658 | +| y_out | -0.0537 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047918633 | +| time-step | 659 | +| y_out | -0.00843 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004724721 | +| time-step | 660 | +| y_out | 0.0989 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0048890566 | +| time-step | 661 | +| y_out | -0.00455 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004971376 | +| time-step | 662 | +| y_out | 0.105 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004909157 | +| time-step | 663 | +| y_out | -0.0112 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005111843 | +| time-step | 664 | +| y_out | 0.0775 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0049361186 | +| time-step | 665 | +| y_out | 0.0258 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047376654 | +| time-step | 666 | +| y_out | 0.0134 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004892788 | +| time-step | 667 | +| y_out | -0.0873 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0048651057 | +| time-step | 668 | +| y_out | -0.00773 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004750267 | +| time-step | 669 | +| y_out | 0.182 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0049602417 | +| time-step | 670 | +| y_out | 0.0335 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004778258 | +| time-step | 671 | +| y_out | 0.0294 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004826422 | +| time-step | 672 | +| y_out | 0.00771 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004779159 | +| time-step | 673 | +| y_out | -0.118 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004690573 | +| time-step | 674 | +| y_out | 0.0551 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004945249 | +| time-step | 675 | +| y_out | -0.0269 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.005086684 | +| time-step | 676 | +| y_out | -0.033 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0048571876 | +| time-step | 677 | +| y_out | -0.0537 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0049944143 | +| time-step | 678 | +| y_out | -0.0888 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005010283 | +| time-step | 679 | +| y_out | 0.037 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0050083688 | +| time-step | 680 | +| y_out | -0.113 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0050245402 | +| time-step | 681 | +| y_out | 0.00984 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0050216233 | +| time-step | 682 | +| y_out | -0.0832 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.005127184 | +| time-step | 683 | +| y_out | 0.0783 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0049683326 | +| time-step | 684 | +| y_out | 0.0219 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0047148704 | +| time-step | 685 | +| y_out | 0.0558 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004610197 | +| time-step | 686 | +| y_out | -0.127 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004741398 | +| time-step | 687 | +| y_out | -0.109 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004597264 | +| time-step | 688 | +| y_out | 0.0303 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004618845 | +| time-step | 689 | +| y_out | 0.0159 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004414019 | +| time-step | 690 | +| y_out | -0.139 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004552943 | +| time-step | 691 | +| y_out | 0.0541 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00442238 | +| time-step | 692 | +| y_out | -0.0234 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041751354 | +| time-step | 693 | +| y_out | 0.053 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004106088 | +| time-step | 694 | +| y_out | -0.0462 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004189212 | +| time-step | 695 | +| y_out | 0.0178 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040491535 | +| time-step | 696 | +| y_out | -0.0328 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039100004 | +| time-step | 697 | +| y_out | 0.0301 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0040162345 | +| time-step | 698 | +| y_out | 0.0129 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003942767 | +| time-step | 699 | +| y_out | 0.0221 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040876735 | +| time-step | 700 | +| y_out | 0.0758 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint 700 +------------------------------------------------------------ +| perf/mse | 0.003729812 | +| time-step | 701 | +| y_out | 0.111 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0038686127 | +| time-step | 702 | +| y_out | -0.0156 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00385611 | +| time-step | 703 | +| y_out | -0.0098 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004042896 | +| time-step | 704 | +| y_out | -0.0747 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003986498 | +| time-step | 705 | +| y_out | -0.0667 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004055772 | +| time-step | 706 | +| y_out | 0.0746 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004201124 | +| time-step | 707 | +| y_out | -0.00169 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004111974 | +| time-step | 708 | +| y_out | -0.0592 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0043309256 | +| time-step | 709 | +| y_out | 0.054 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0043430342 | +| time-step | 710 | +| y_out | -0.104 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004472181 | +| time-step | 711 | +| y_out | 0.042 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0043492676 | +| time-step | 712 | +| y_out | -0.0276 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0044110697 | +| time-step | 713 | +| y_out | 0.0146 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0042669624 | +| time-step | 714 | +| y_out | -0.0644 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0042817146 | +| time-step | 715 | +| y_out | 0.142 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0043626153 | +| time-step | 716 | +| y_out | -0.157 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0042219707 | +| time-step | 717 | +| y_out | -0.096 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004112959 | +| time-step | 718 | +| y_out | -0.00464 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004066611 | +| time-step | 719 | +| y_out | 0.0974 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0038754623 | +| time-step | 720 | +| y_out | 0.0876 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003815264 | +| time-step | 721 | +| y_out | 0.0584 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003838975 | +| time-step | 722 | +| y_out | 0.0964 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0037858554 | +| time-step | 723 | +| y_out | -0.0368 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038625945 | +| time-step | 724 | +| y_out | -0.0693 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037987952 | +| time-step | 725 | +| y_out | 0.127 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003686358 | +| time-step | 726 | +| y_out | 0.0407 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036802702 | +| time-step | 727 | +| y_out | -0.0307 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037022214 | +| time-step | 728 | +| y_out | -0.0429 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003445339 | +| time-step | 729 | +| y_out | -0.0135 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0035373773 | +| time-step | 730 | +| y_out | 0.0819 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036810234 | +| time-step | 731 | +| y_out | -0.085 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038107373 | +| time-step | 732 | +| y_out | -0.117 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038043964 | +| time-step | 733 | +| y_out | -0.0358 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003717544 | +| time-step | 734 | +| y_out | 0.0426 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003678637 | +| time-step | 735 | +| y_out | 0.0968 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036115635 | +| time-step | 736 | +| y_out | 0.0993 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036957276 | +| time-step | 737 | +| y_out | 0.0308 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037481033 | +| time-step | 738 | +| y_out | -0.0403 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038508766 | +| time-step | 739 | +| y_out | 0.111 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038630976 | +| time-step | 740 | +| y_out | -0.0389 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037170083 | +| time-step | 741 | +| y_out | -0.0708 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003649521 | +| time-step | 742 | +| y_out | -0.0317 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0037201955 | +| time-step | 743 | +| y_out | 0.0467 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00391642 | +| time-step | 744 | +| y_out | -0.0696 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038866703 | +| time-step | 745 | +| y_out | -0.0029 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004041676 | +| time-step | 746 | +| y_out | 0.0321 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004043228 | +| time-step | 747 | +| y_out | 0.113 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004040128 | +| time-step | 748 | +| y_out | 0.0673 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003994991 | +| time-step | 749 | +| y_out | 0.00229 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004052109 | +| time-step | 750 | +| y_out | -0.0143 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004226033 | +| time-step | 751 | +| y_out | -0.06 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0041722385 | +| time-step | 752 | +| y_out | -0.1 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00424968 | +| time-step | 753 | +| y_out | 0.123 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004154115 | +| time-step | 754 | +| y_out | 0.0424 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0042567067 | +| time-step | 755 | +| y_out | 0.0133 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0041675316 | +| time-step | 756 | +| y_out | 0.0103 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.004105932 | +| time-step | 757 | +| y_out | 0.045 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.004032029 | +| time-step | 758 | +| y_out | 0.116 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0040264954 | +| time-step | 759 | +| y_out | 0.0382 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039516105 | +| time-step | 760 | +| y_out | -0.0111 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037971255 | +| time-step | 761 | +| y_out | 0.0388 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037790202 | +| time-step | 762 | +| y_out | -0.0544 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003778922 | +| time-step | 763 | +| y_out | -0.00411 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036977367 | +| time-step | 764 | +| y_out | -0.0915 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0037087915 | +| time-step | 765 | +| y_out | -0.0319 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039525065 | +| time-step | 766 | +| y_out | -0.0524 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039980244 | +| time-step | 767 | +| y_out | -0.0495 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039825886 | +| time-step | 768 | +| y_out | -0.0386 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0040001534 | +| time-step | 769 | +| y_out | 0.00236 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00383548 | +| time-step | 770 | +| y_out | -0.0372 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039546015 | +| time-step | 771 | +| y_out | -0.102 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039620395 | +| time-step | 772 | +| y_out | 0.0594 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038548734 | +| time-step | 773 | +| y_out | -0.125 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0039359787 | +| time-step | 774 | +| y_out | 0.0504 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038400274 | +| time-step | 775 | +| y_out | 0.0728 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036323394 | +| time-step | 776 | +| y_out | 0.0928 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035986449 | +| time-step | 777 | +| y_out | -0.00341 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003687563 | +| time-step | 778 | +| y_out | -0.0405 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036622726 | +| time-step | 779 | +| y_out | 0.0192 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0038158644 | +| time-step | 780 | +| y_out | -0.031 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003729894 | +| time-step | 781 | +| y_out | -0.00749 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003683503 | +| time-step | 782 | +| y_out | -0.0168 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0035964332 | +| time-step | 783 | +| y_out | -0.0432 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003480843 | +| time-step | 784 | +| y_out | 0.0127 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0036128939 | +| time-step | 785 | +| y_out | -0.0379 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036562826 | +| time-step | 786 | +| y_out | 0.096 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035760994 | +| time-step | 787 | +| y_out | -0.0242 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035297046 | +| time-step | 788 | +| y_out | 0.000675 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035434575 | +| time-step | 789 | +| y_out | -0.0173 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034767096 | +| time-step | 790 | +| y_out | -0.0184 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003353361 | +| time-step | 791 | +| y_out | -0.191 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0032775328 | +| time-step | 792 | +| y_out | -0.0554 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033687316 | +| time-step | 793 | +| y_out | 0.00598 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033070124 | +| time-step | 794 | +| y_out | 0.0404 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032601536 | +| time-step | 795 | +| y_out | 0.106 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003161159 | +| time-step | 796 | +| y_out | -0.00927 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0032265156 | +| time-step | 797 | +| y_out | 0.00169 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031818873 | +| time-step | 798 | +| y_out | 0.0778 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031017424 | +| time-step | 799 | +| y_out | 0.147 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032288763 | +| time-step | 800 | +| y_out | -0.0669 | +------------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint 800 +------------------------------------------------------------- +| perf/mse | 0.0032676668 | +| time-step | 801 | +| y_out | 0.114 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033182434 | +| time-step | 802 | +| y_out | -0.0433 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032686964 | +| time-step | 803 | +| y_out | 0.0658 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003436252 | +| time-step | 804 | +| y_out | -0.109 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0034474372 | +| time-step | 805 | +| y_out | -0.00904 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034694537 | +| time-step | 806 | +| y_out | 0.0767 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034219064 | +| time-step | 807 | +| y_out | -0.000698 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0035863728 | +| time-step | 808 | +| y_out | -0.0346 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0036884497 | +| time-step | 809 | +| y_out | 0.0605 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034927535 | +| time-step | 810 | +| y_out | -0.132 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003425325 | +| time-step | 811 | +| y_out | 0.057 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0035630472 | +| time-step | 812 | +| y_out | -0.0151 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034441266 | +| time-step | 813 | +| y_out | -0.0175 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003489071 | +| time-step | 814 | +| y_out | -0.0665 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003428346 | +| time-step | 815 | +| y_out | -0.119 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0033998818 | +| time-step | 816 | +| y_out | -0.0134 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003290704 | +| time-step | 817 | +| y_out | 0.0236 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003076804 | +| time-step | 818 | +| y_out | 0.0842 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.003178605 | +| time-step | 819 | +| y_out | -0.064 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0032066137 | +| time-step | 820 | +| y_out | -0.138 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032917908 | +| time-step | 821 | +| y_out | 0.056 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003245283 | +| time-step | 822 | +| y_out | 0.0426 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0033186455 | +| time-step | 823 | +| y_out | 0.0391 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031323172 | +| time-step | 824 | +| y_out | 0.0479 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031264585 | +| time-step | 825 | +| y_out | 0.102 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003235293 | +| time-step | 826 | +| y_out | 0.0345 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0032661506 | +| time-step | 827 | +| y_out | 0.00544 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033029548 | +| time-step | 828 | +| y_out | 0.0194 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032958488 | +| time-step | 829 | +| y_out | -0.0601 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033438976 | +| time-step | 830 | +| y_out | -0.0899 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033375197 | +| time-step | 831 | +| y_out | -0.0959 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033517475 | +| time-step | 832 | +| y_out | 0.161 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003423817 | +| time-step | 833 | +| y_out | -0.0634 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0035058944 | +| time-step | 834 | +| y_out | 0.0588 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034250028 | +| time-step | 835 | +| y_out | 0.0472 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003330797 | +| time-step | 836 | +| y_out | 0.0698 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0033542768 | +| time-step | 837 | +| y_out | -0.181 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034240452 | +| time-step | 838 | +| y_out | 0.0667 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032489195 | +| time-step | 839 | +| y_out | 0.00482 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031635188 | +| time-step | 840 | +| y_out | -0.113 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033099272 | +| time-step | 841 | +| y_out | 0.0471 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033037607 | +| time-step | 842 | +| y_out | -0.0781 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033315886 | +| time-step | 843 | +| y_out | -0.16 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032614009 | +| time-step | 844 | +| y_out | 0.0136 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032734796 | +| time-step | 845 | +| y_out | 0.00552 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032019324 | +| time-step | 846 | +| y_out | -0.0121 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031833663 | +| time-step | 847 | +| y_out | -0.00449 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032005191 | +| time-step | 848 | +| y_out | 0.0857 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032530755 | +| time-step | 849 | +| y_out | 0.0175 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033189058 | +| time-step | 850 | +| y_out | -0.0853 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003115492 | +| time-step | 851 | +| y_out | -0.0657 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0029809824 | +| time-step | 852 | +| y_out | 0.0612 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028147802 | +| time-step | 853 | +| y_out | -0.0591 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029157738 | +| time-step | 854 | +| y_out | -0.0541 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0030645095 | +| time-step | 855 | +| y_out | 0.0828 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0031741385 | +| time-step | 856 | +| y_out | 0.0197 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003266183 | +| time-step | 857 | +| y_out | 0.0658 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0032271645 | +| time-step | 858 | +| y_out | -0.0201 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0032051094 | +| time-step | 859 | +| y_out | 0.0748 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00324094 | +| time-step | 860 | +| y_out | 0.0139 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033564512 | +| time-step | 861 | +| y_out | -0.147 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033736713 | +| time-step | 862 | +| y_out | 0.0569 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0034372103 | +| time-step | 863 | +| y_out | 0.0749 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0033273466 | +| time-step | 864 | +| y_out | -0.0514 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003213677 | +| time-step | 865 | +| y_out | 0.0181 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0032043264 | +| time-step | 866 | +| y_out | 0.0158 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003204727 | +| time-step | 867 | +| y_out | 0.0113 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0031503104 | +| time-step | 868 | +| y_out | -0.0446 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.003117843 | +| time-step | 869 | +| y_out | 0.0591 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0029591485 | +| time-step | 870 | +| y_out | -0.0343 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002859468 | +| time-step | 871 | +| y_out | 0.101 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0028428584 | +| time-step | 872 | +| y_out | -0.0313 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002765915 | +| time-step | 873 | +| y_out | -0.0801 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0028484226 | +| time-step | 874 | +| y_out | 0.109 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029216858 | +| time-step | 875 | +| y_out | -0.133 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027983815 | +| time-step | 876 | +| y_out | -0.00207 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027129385 | +| time-step | 877 | +| y_out | 0.086 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026772115 | +| time-step | 878 | +| y_out | 0.0174 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027274308 | +| time-step | 879 | +| y_out | 0.141 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028083853 | +| time-step | 880 | +| y_out | 0.0272 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002793008 | +| time-step | 881 | +| y_out | 0.111 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0027967675 | +| time-step | 882 | +| y_out | 0.0984 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027795169 | +| time-step | 883 | +| y_out | -0.0585 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026735994 | +| time-step | 884 | +| y_out | 0.0134 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002630074 | +| time-step | 885 | +| y_out | -0.00269 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002714734 | +| time-step | 886 | +| y_out | -0.0945 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0027270503 | +| time-step | 887 | +| y_out | -0.0269 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027634504 | +| time-step | 888 | +| y_out | 0.0368 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002701294 | +| time-step | 889 | +| y_out | -0.0127 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0027970974 | +| time-step | 890 | +| y_out | -0.0324 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028218855 | +| time-step | 891 | +| y_out | -0.000696 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027766651 | +| time-step | 892 | +| y_out | 0.129 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028786203 | +| time-step | 893 | +| y_out | -0.0383 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028952886 | +| time-step | 894 | +| y_out | -0.0595 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0029038605 | +| time-step | 895 | +| y_out | -0.0804 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028753176 | +| time-step | 896 | +| y_out | -0.0276 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002866432 | +| time-step | 897 | +| y_out | -0.0168 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0028397955 | +| time-step | 898 | +| y_out | -0.0477 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002851792 | +| time-step | 899 | +| y_out | 0.0174 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002816549 | +| time-step | 900 | +| y_out | 0.0337 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint 900 +------------------------------------------------------------- +| perf/mse | 0.0027485967 | +| time-step | 901 | +| y_out | 0.0995 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026748937 | +| time-step | 902 | +| y_out | 0.0378 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025315913 | +| time-step | 903 | +| y_out | -0.0227 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025534085 | +| time-step | 904 | +| y_out | -0.0178 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025399844 | +| time-step | 905 | +| y_out | 0.0125 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025236164 | +| time-step | 906 | +| y_out | 0.0618 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025169034 | +| time-step | 907 | +| y_out | 0.0162 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002507784 | +| time-step | 908 | +| y_out | -0.145 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002504256 | +| time-step | 909 | +| y_out | 0.0571 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.002442155 | +| time-step | 910 | +| y_out | -0.0573 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00253605 | +| time-step | 911 | +| y_out | 0.109 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002608821 | +| time-step | 912 | +| y_out | 0.0404 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0027101613 | +| time-step | 913 | +| y_out | -0.0124 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027743748 | +| time-step | 914 | +| y_out | 0.052 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027319647 | +| time-step | 915 | +| y_out | 0.0158 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027333172 | +| time-step | 916 | +| y_out | -0.0125 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002764387 | +| time-step | 917 | +| y_out | 0.0578 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0028133676 | +| time-step | 918 | +| y_out | 0.0241 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027685028 | +| time-step | 919 | +| y_out | 0.0595 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027501308 | +| time-step | 920 | +| y_out | 0.00205 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027057172 | +| time-step | 921 | +| y_out | -0.0119 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0028365753 | +| time-step | 922 | +| y_out | -0.0493 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027511637 | +| time-step | 923 | +| y_out | 0.0255 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027142898 | +| time-step | 924 | +| y_out | 0.0253 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026565057 | +| time-step | 925 | +| y_out | -0.0836 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027628713 | +| time-step | 926 | +| y_out | 0.113 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026700185 | +| time-step | 927 | +| y_out | -0.12 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025884407 | +| time-step | 928 | +| y_out | -0.000187 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026282899 | +| time-step | 929 | +| y_out | 0.0964 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0027991056 | +| time-step | 930 | +| y_out | 0.0537 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002731581 | +| time-step | 931 | +| y_out | -0.0297 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0026563578 | +| time-step | 932 | +| y_out | -0.00933 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026089703 | +| time-step | 933 | +| y_out | 0.0927 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025489016 | +| time-step | 934 | +| y_out | -0.0675 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002604143 | +| time-step | 935 | +| y_out | -0.0109 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0025323257 | +| time-step | 936 | +| y_out | -0.0722 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002669424 | +| time-step | 937 | +| y_out | 0.0433 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0027382039 | +| time-step | 938 | +| y_out | 0.0434 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026474565 | +| time-step | 939 | +| y_out | -0.0386 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023901553 | +| time-step | 940 | +| y_out | -0.0667 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025278465 | +| time-step | 941 | +| y_out | -0.0498 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023952548 | +| time-step | 942 | +| y_out | -0.067 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024865908 | +| time-step | 943 | +| y_out | -0.0803 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026007656 | +| time-step | 944 | +| y_out | 0.112 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0026051172 | +| time-step | 945 | +| y_out | -0.0404 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025503978 | +| time-step | 946 | +| y_out | -0.0269 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0025096468 | +| time-step | 947 | +| y_out | -0.085 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024287277 | +| time-step | 948 | +| y_out | 0.027 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024341654 | +| time-step | 949 | +| y_out | 0.0934 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024979038 | +| time-step | 950 | +| y_out | -0.0917 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024164848 | +| time-step | 951 | +| y_out | -0.0763 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024580457 | +| time-step | 952 | +| y_out | -0.0386 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002458097 | +| time-step | 953 | +| y_out | -0.0708 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0023210857 | +| time-step | 954 | +| y_out | 0.0113 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022932545 | +| time-step | 955 | +| y_out | -0.0236 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022801147 | +| time-step | 956 | +| y_out | -0.0469 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021593324 | +| time-step | 957 | +| y_out | -0.105 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021776601 | +| time-step | 958 | +| y_out | 0.0189 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021715018 | +| time-step | 959 | +| y_out | -0.0488 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021020514 | +| time-step | 960 | +| y_out | -0.0691 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021458864 | +| time-step | 961 | +| y_out | -0.0284 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021522031 | +| time-step | 962 | +| y_out | 0.0755 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021304737 | +| time-step | 963 | +| y_out | -0.0125 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021381008 | +| time-step | 964 | +| y_out | -0.0685 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021221023 | +| time-step | 965 | +| y_out | 0.116 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0020764007 | +| time-step | 966 | +| y_out | 0.0434 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021562024 | +| time-step | 967 | +| y_out | 0.0153 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021939613 | +| time-step | 968 | +| y_out | -0.11 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022224276 | +| time-step | 969 | +| y_out | 0.139 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023009425 | +| time-step | 970 | +| y_out | 0.0374 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002268298 | +| time-step | 971 | +| y_out | 0.00215 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0023580329 | +| time-step | 972 | +| y_out | -0.0989 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023340737 | +| time-step | 973 | +| y_out | 0.0637 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023236922 | +| time-step | 974 | +| y_out | 0.0546 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002295545 | +| time-step | 975 | +| y_out | -0.089 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0023230477 | +| time-step | 976 | +| y_out | 0.0349 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023237732 | +| time-step | 977 | +| y_out | 0.0877 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023587295 | +| time-step | 978 | +| y_out | -0.0439 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023891227 | +| time-step | 979 | +| y_out | 0.0198 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0024165357 | +| time-step | 980 | +| y_out | -0.0398 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023942129 | +| time-step | 981 | +| y_out | 0.101 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023297165 | +| time-step | 982 | +| y_out | -0.136 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023099093 | +| time-step | 983 | +| y_out | 0.0213 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.00227584 | +| time-step | 984 | +| y_out | 0.0158 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022622366 | +| time-step | 985 | +| y_out | -0.00373 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022867525 | +| time-step | 986 | +| y_out | 0.0424 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023754737 | +| time-step | 987 | +| y_out | 0.00235 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022828027 | +| time-step | 988 | +| y_out | -0.0433 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022986343 | +| time-step | 989 | +| y_out | -0.0304 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023213169 | +| time-step | 990 | +| y_out | 0.0673 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022419526 | +| time-step | 991 | +| y_out | -0.0689 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.002177755 | +| time-step | 992 | +| y_out | -0.0748 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0022139498 | +| time-step | 993 | +| y_out | -0.0142 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0023084688 | +| time-step | 994 | +| y_out | -0.129 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022994452 | +| time-step | 995 | +| y_out | 0.11 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0022951874 | +| time-step | 996 | +| y_out | -0.0658 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021848192 | +| time-step | 997 | +| y_out | 0.0932 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021798057 | +| time-step | 998 | +| y_out | 0.102 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0021983192 | +| time-step | 999 | +| y_out | 0.1 | +------------------------------------------------------------- diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/progress-[||perf--mse||, ||timestep||].csv b/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/progress-[||perf--mse||, ||timestep||].csv new file mode 100644 index 0000000..fd5b072 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/progress-[||perf--mse||, ||timestep||].csv @@ -0,0 +1,2001 @@ +perf/mse,time-step +,0.0 +, +,1.0 +, +,2.0 +, +,3.0 +, +,4.0 +, +,5.0 +, +,6.0 +, +,7.0 +, +,8.0 +, +0.4116845,9.0 +, +0.34226435,10.0 +, +0.2865979,11.0 +, +0.22066227,12.0 +, +0.17881593,13.0 +, +0.15293343,14.0 +, +0.13582486,15.0 +, +0.12673703,16.0 +, +0.118425295,17.0 +, +0.1182645,18.0 +, +0.11723097,19.0 +, +0.11428434,20.0 +, +0.110354364,21.0 +, +0.10520983,22.0 +, +0.09873715,23.0 +, +0.0954464,24.0 +, +0.090510435,25.0 +, +0.08614574,26.0 +, +0.08214369,27.0 +, +0.07739,28.0 +, +0.072461925,29.0 +, +0.07006042,30.0 +, +0.067246854,31.0 +, +0.065904096,32.0 +, +0.06531572,33.0 +, +0.061929334,34.0 +, +0.060432475,35.0 +, +0.057160437,36.0 +, +0.05663547,37.0 +, +0.05235964,38.0 +, +0.051079948,39.0 +, +0.05068625,40.0 +, +0.04840982,41.0 +, +0.04626112,42.0 +, +0.04484333,43.0 +, +0.046863087,44.0 +, +0.046616856,45.0 +, +0.047773868,46.0 +, +0.04544707,47.0 +, +0.044461053,48.0 +, +0.044983987,49.0 +, +0.04420654,50.0 +, +0.045076367,51.0 +, +0.045095697,52.0 +, +0.046461117,53.0 +, +0.04372434,54.0 +, +0.04359477,55.0 +, +0.043051086,56.0 +, +0.043757685,57.0 +, +0.046227086,58.0 +, +0.045824,59.0 +, +0.044117607,60.0 +, +0.042604417,61.0 +, +0.043005396,62.0 +, +0.041401844,63.0 +, +0.040821463,64.0 +, +0.039660804,65.0 +, +0.03841579,66.0 +, +0.03781774,67.0 +, +0.035546236,68.0 +, +0.03404691,69.0 +, +0.034336008,70.0 +, +0.03648937,71.0 +, +0.03634174,72.0 +, +0.034494564,73.0 +, +0.033293024,74.0 +, +0.03323144,75.0 +, +0.034067787,76.0 +, +0.033351593,77.0 +, +0.032609988,78.0 +, +0.032117996,79.0 +, +0.033656016,80.0 +, +0.03157043,81.0 +, +0.030397505,82.0 +, +0.031375386,83.0 +, +0.0331585,84.0 +, +0.03305576,85.0 +, +0.032709464,86.0 +, +0.0320201,87.0 +, +0.032831933,88.0 +, +0.033486065,89.0 +, +0.032104082,90.0 +, +0.0311484,91.0 +, +0.031639583,92.0 +, +0.030790463,93.0 +, +0.030732488,94.0 +, +0.03033323,95.0 +, +0.030574158,96.0 +, +0.030977616,97.0 +, +0.029380009,98.0 +, +0.028496768,99.0 +, +0.028147172,100.0 +, +0.028606955,101.0 +, +0.027945647,102.0 +, +0.028185958,103.0 +, +0.026932105,104.0 +, +0.027318224,105.0 +, +0.02615488,106.0 +, +0.02680419,107.0 +, +0.026500195,108.0 +, +0.026046822,109.0 +, +0.026122168,110.0 +, +0.026296128,111.0 +, +0.025212338,112.0 +, +0.02545307,113.0 +, +0.025583547,114.0 +, +0.024545776,115.0 +, +0.024057273,116.0 +, +0.02244277,117.0 +, +0.022560945,118.0 +, +0.02307056,119.0 +, +0.022394374,120.0 +, +0.021637758,121.0 +, +0.023614278,122.0 +, +0.022924874,123.0 +, +0.022113372,124.0 +, +0.022329802,125.0 +, +0.022729445,126.0 +, +0.023531575,127.0 +, +0.02450201,128.0 +, +0.0238791,129.0 +, +0.023837082,130.0 +, +0.023029322,131.0 +, +0.021849122,132.0 +, +0.021838527,133.0 +, +0.021615716,134.0 +, +0.021900065,135.0 +, +0.021565739,136.0 +, +0.021086615,137.0 +, +0.019709218,138.0 +, +0.019687956,139.0 +, +0.019365186,140.0 +, +0.019639643,141.0 +, +0.018927427,142.0 +, +0.018604886,143.0 +, +0.018862568,144.0 +, +0.018079463,145.0 +, +0.017920785,146.0 +, +0.017506853,147.0 +, +0.017187018,148.0 +, +0.01760382,149.0 +, +0.017503249,150.0 +, +0.017784001,151.0 +, +0.017888974,152.0 +, +0.018136583,153.0 +, +0.018050347,154.0 +, +0.017828379,155.0 +, +0.017954323,156.0 +, +0.018049702,157.0 +, +0.018038373,158.0 +, +0.017828844,159.0 +, +0.018320028,160.0 +, +0.018292453,161.0 +, +0.01878645,162.0 +, +0.018440742,163.0 +, +0.018220808,164.0 +, +0.018326517,165.0 +, +0.018403286,166.0 +, +0.018378321,167.0 +, +0.018518543,168.0 +, +0.017999902,169.0 +, +0.018018136,170.0 +, +0.017436014,171.0 +, +0.016493583,172.0 +, +0.01667047,173.0 +, +0.016739586,174.0 +, +0.016361233,175.0 +, +0.01617429,176.0 +, +0.015391266,177.0 +, +0.015521039,178.0 +, +0.016098613,179.0 +, +0.015389146,180.0 +, +0.01587503,181.0 +, +0.015917998,182.0 +, +0.015256567,183.0 +, +0.015143004,184.0 +, +0.015454161,185.0 +, +0.015269896,186.0 +, +0.015705734,187.0 +, +0.015584086,188.0 +, +0.014840121,189.0 +, +0.014894625,190.0 +, +0.014608892,191.0 +, +0.014609566,192.0 +, +0.014993951,193.0 +, +0.015000495,194.0 +, +0.014394654,195.0 +, +0.013766756,196.0 +, +0.013613485,197.0 +, +0.013916832,198.0 +, +0.014203673,199.0 +, +0.013562766,200.0 +, +0.013382072,201.0 +, +0.01315968,202.0 +, +0.012887858,203.0 +, +0.01337339,204.0 +, +0.013425673,205.0 +, +0.014038166,206.0 +, +0.013868433,207.0 +, +0.01329882,208.0 +, +0.013069521,209.0 +, +0.0135223,210.0 +, +0.01441008,211.0 +, +0.014295165,212.0 +, +0.01453729,213.0 +, +0.014061342,214.0 +, +0.014587182,215.0 +, +0.0144081805,216.0 +, +0.014319906,217.0 +, +0.014193867,218.0 +, +0.014007312,219.0 +, +0.013912772,220.0 +, +0.012988779,221.0 +, +0.012617411,222.0 +, +0.012815865,223.0 +, +0.012343487,224.0 +, +0.011513001,225.0 +, +0.011502563,226.0 +, +0.011924874,227.0 +, +0.012385877,228.0 +, +0.012254153,229.0 +, +0.012247067,230.0 +, +0.012499314,231.0 +, +0.01362699,232.0 +, +0.013595112,233.0 +, +0.014221516,234.0 +, +0.014418885,235.0 +, +0.014496855,236.0 +, +0.014122048,237.0 +, +0.0140051795,238.0 +, +0.014470877,239.0 +, +0.014183926,240.0 +, +0.013880688,241.0 +, +0.01320968,242.0 +, +0.0130267665,243.0 +, +0.01298934,244.0 +, +0.012912792,245.0 +, +0.012643425,246.0 +, +0.012662187,247.0 +, +0.012426092,248.0 +, +0.011928229,249.0 +, +0.011977758,250.0 +, +0.012049417,251.0 +, +0.012098239,252.0 +, +0.011614481,253.0 +, +0.011484854,254.0 +, +0.011765086,255.0 +, +0.011991626,256.0 +, +0.0120916385,257.0 +, +0.012188358,258.0 +, +0.0122345975,259.0 +, +0.012064756,260.0 +, +0.011673996,261.0 +, +0.011549339,262.0 +, +0.011740644,263.0 +, +0.011079816,264.0 +, +0.010692937,265.0 +, +0.010324869,266.0 +, +0.00977801,267.0 +, +0.009445672,268.0 +, +0.009423474,269.0 +, +0.009913127,270.0 +, +0.010573848,271.0 +, +0.010515319,272.0 +, +0.010208281,273.0 +, +0.010351671,274.0 +, +0.010713759,275.0 +, +0.010491295,276.0 +, +0.010827411,277.0 +, +0.010586554,278.0 +, +0.01052269,279.0 +, +0.010579078,280.0 +, +0.010243152,281.0 +, +0.010236494,282.0 +, +0.010239321,283.0 +, +0.010472357,284.0 +, +0.010008585,285.0 +, +0.010203567,286.0 +, +0.010348397,287.0 +, +0.010345891,288.0 +, +0.010700961,289.0 +, +0.010388944,290.0 +, +0.0106908465,291.0 +, +0.010309842,292.0 +, +0.010474081,293.0 +, +0.010539789,294.0 +, +0.010585275,295.0 +, +0.010429607,296.0 +, +0.010243757,297.0 +, +0.010742357,298.0 +, +0.010794876,299.0 +, +0.010691104,300.0 +, +0.010032582,301.0 +, +0.010654226,302.0 +, +0.010426847,303.0 +, +0.010203677,304.0 +, +0.0099885,305.0 +, +0.009654961,306.0 +, +0.0093472665,307.0 +, +0.009603806,308.0 +, +0.009766078,309.0 +, +0.009610362,310.0 +, +0.009599518,311.0 +, +0.009064664,312.0 +, +0.009033918,313.0 +, +0.009256901,314.0 +, +0.009281759,315.0 +, +0.0097410735,316.0 +, +0.010113874,317.0 +, +0.009633789,318.0 +, +0.009057928,319.0 +, +0.009432124,320.0 +, +0.009712348,321.0 +, +0.009893559,322.0 +, +0.010303207,323.0 +, +0.009784044,324.0 +, +0.010053712,325.0 +, +0.00999709,326.0 +, +0.009864601,327.0 +, +0.010140386,328.0 +, +0.010266502,329.0 +, +0.010139539,330.0 +, +0.010079867,331.0 +, +0.0100426935,332.0 +, +0.0098304525,333.0 +, +0.009680955,334.0 +, +0.00940544,335.0 +, +0.009379968,336.0 +, +0.009440757,337.0 +, +0.009191423,338.0 +, +0.00887909,339.0 +, +0.008715235,340.0 +, +0.00873994,341.0 +, +0.008850156,342.0 +, +0.0087323515,343.0 +, +0.008909301,344.0 +, +0.008655539,345.0 +, +0.008628974,346.0 +, +0.008353037,347.0 +, +0.008267693,348.0 +, +0.008761351,349.0 +, +0.008686851,350.0 +, +0.008627215,351.0 +, +0.0084546115,352.0 +, +0.008602088,353.0 +, +0.00847422,354.0 +, +0.008744193,355.0 +, +0.008688221,356.0 +, +0.008734159,357.0 +, +0.008668827,358.0 +, +0.008293263,359.0 +, +0.008320389,360.0 +, +0.008116147,361.0 +, +0.008200083,362.0 +, +0.008153895,363.0 +, +0.0086259,364.0 +, +0.008612452,365.0 +, +0.008708006,366.0 +, +0.008772651,367.0 +, +0.008839598,368.0 +, +0.008819107,369.0 +, +0.009045528,370.0 +, +0.008872421,371.0 +, +0.008818625,372.0 +, +0.008557636,373.0 +, +0.008084479,374.0 +, +0.0078722015,375.0 +, +0.007573083,376.0 +, +0.00774151,377.0 +, +0.007743551,378.0 +, +0.0076592416,379.0 +, +0.0075029926,380.0 +, +0.0075995037,381.0 +, +0.0075590387,382.0 +, +0.007698643,383.0 +, +0.007813014,384.0 +, +0.008237163,385.0 +, +0.008597644,386.0 +, +0.008355604,387.0 +, +0.008163278,388.0 +, +0.008101468,389.0 +, +0.008072455,390.0 +, +0.008196184,391.0 +, +0.00814244,392.0 +, +0.008040335,393.0 +, +0.008026287,394.0 +, +0.007766598,395.0 +, +0.0074539334,396.0 +, +0.0076807747,397.0 +, +0.007772682,398.0 +, +0.007994756,399.0 +, +0.008108705,400.0 +, +0.008036339,401.0 +, +0.008008949,402.0 +, +0.00787331,403.0 +, +0.007942772,404.0 +, +0.007894406,405.0 +, +0.007802221,406.0 +, +0.007519926,407.0 +, +0.007418646,408.0 +, +0.0070824646,409.0 +, +0.00677785,410.0 +, +0.006938192,411.0 +, +0.0067039416,412.0 +, +0.006594211,413.0 +, +0.0064013363,414.0 +, +0.006770623,415.0 +, +0.006823994,416.0 +, +0.0067184344,417.0 +, +0.0066474816,418.0 +, +0.007046877,419.0 +, +0.0072142407,420.0 +, +0.0073034638,421.0 +, +0.0077653467,422.0 +, +0.008059444,423.0 +, +0.008089931,424.0 +, +0.007656876,425.0 +, +0.00780701,426.0 +, +0.00797386,427.0 +, +0.008552184,428.0 +, +0.008538587,429.0 +, +0.008467974,430.0 +, +0.008256846,431.0 +, +0.008384232,432.0 +, +0.008347852,433.0 +, +0.00868402,434.0 +, +0.0086899875,435.0 +, +0.008616216,436.0 +, +0.00865731,437.0 +, +0.007961267,438.0 +, +0.008033151,439.0 +, +0.0082433615,440.0 +, +0.008022939,441.0 +, +0.0074998075,442.0 +, +0.0073705884,443.0 +, +0.0070143277,444.0 +, +0.0069089322,445.0 +, +0.006694626,446.0 +, +0.0065240427,447.0 +, +0.0067109377,448.0 +, +0.006611994,449.0 +, +0.0062818853,450.0 +, +0.0064523383,451.0 +, +0.0064939125,452.0 +, +0.006648867,453.0 +, +0.006654945,454.0 +, +0.0068740114,455.0 +, +0.0072521814,456.0 +, +0.007261589,457.0 +, +0.0072377757,458.0 +, +0.0070746467,459.0 +, +0.0073849633,460.0 +, +0.0074552074,461.0 +, +0.007544022,462.0 +, +0.007212624,463.0 +, +0.007286919,464.0 +, +0.007602378,465.0 +, +0.0073095886,466.0 +, +0.007411178,467.0 +, +0.0073589766,468.0 +, +0.0072832955,469.0 +, +0.007596711,470.0 +, +0.0075078136,471.0 +, +0.0074071614,472.0 +, +0.007423722,473.0 +, +0.0073407656,474.0 +, +0.0069066794,475.0 +, +0.007060787,476.0 +, +0.007000332,477.0 +, +0.0070274533,478.0 +, +0.007200422,479.0 +, +0.0067265322,480.0 +, +0.006689547,481.0 +, +0.006638625,482.0 +, +0.0066219317,483.0 +, +0.006606955,484.0 +, +0.006765942,485.0 +, +0.0065927855,486.0 +, +0.006678297,487.0 +, +0.0066388734,488.0 +, +0.006275315,489.0 +, +0.0061541293,490.0 +, +0.006242218,491.0 +, +0.0063144267,492.0 +, +0.006560821,493.0 +, +0.006544578,494.0 +, +0.006322493,495.0 +, +0.006461198,496.0 +, +0.0062784078,497.0 +, +0.0063545927,498.0 +, +0.006499437,499.0 +, +0.0064413697,500.0 +, +0.00621063,501.0 +, +0.006231707,502.0 +, +0.0063161002,503.0 +, +0.0064998628,504.0 +, +0.006720625,505.0 +, +0.00659097,506.0 +, +0.0064210193,507.0 +, +0.0063262633,508.0 +, +0.006205489,509.0 +, +0.0064683952,510.0 +, +0.0069108633,511.0 +, +0.0067900373,512.0 +, +0.00673942,513.0 +, +0.0065494156,514.0 +, +0.006396496,515.0 +, +0.006454207,516.0 +, +0.006593805,517.0 +, +0.006836043,518.0 +, +0.006825322,519.0 +, +0.006663178,520.0 +, +0.0066322843,521.0 +, +0.0068622595,522.0 +, +0.0067408183,523.0 +, +0.0069634477,524.0 +, +0.0070486367,525.0 +, +0.007063304,526.0 +, +0.0071476838,527.0 +, +0.006980233,528.0 +, +0.0069410824,529.0 +, +0.0070783896,530.0 +, +0.0067939656,531.0 +, +0.0065552196,532.0 +, +0.006775963,533.0 +, +0.006312805,534.0 +, +0.0059630363,535.0 +, +0.006159703,536.0 +, +0.0062006665,537.0 +, +0.0060760686,538.0 +, +0.0061911535,539.0 +, +0.006080167,540.0 +, +0.00597334,541.0 +, +0.0060778647,542.0 +, +0.005795536,543.0 +, +0.0061646267,544.0 +, +0.0063526086,545.0 +, +0.0061190845,546.0 +, +0.0058716508,547.0 +, +0.005901403,548.0 +, +0.0058907983,549.0 +, +0.005808233,550.0 +, +0.0058353427,551.0 +, +0.0057009934,552.0 +, +0.005772243,553.0 +, +0.0056734663,554.0 +, +0.005680301,555.0 +, +0.005705866,556.0 +, +0.005871755,557.0 +, +0.005826918,558.0 +, +0.005780345,559.0 +, +0.0060133236,560.0 +, +0.006240505,561.0 +, +0.0062749935,562.0 +, +0.0061353166,563.0 +, +0.006270499,564.0 +, +0.0061956593,565.0 +, +0.00631012,566.0 +, +0.006206002,567.0 +, +0.006253851,568.0 +, +0.0063427994,569.0 +, +0.0059592677,570.0 +, +0.0057757176,571.0 +, +0.00569206,572.0 +, +0.005986777,573.0 +, +0.0058613303,574.0 +, +0.005958927,575.0 +, +0.005617448,576.0 +, +0.0055160574,577.0 +, +0.0052953125,578.0 +, +0.0052530663,579.0 +, +0.0054323934,580.0 +, +0.0054982672,581.0 +, +0.0056226975,582.0 +, +0.0055458853,583.0 +, +0.0053948304,584.0 +, +0.0053327624,585.0 +, +0.005581173,586.0 +, +0.005891134,587.0 +, +0.0061695324,588.0 +, +0.005980528,589.0 +, +0.0058547505,590.0 +, +0.0056473007,591.0 +, +0.0055733095,592.0 +, +0.005406431,593.0 +, +0.00548005,594.0 +, +0.0053556636,595.0 +, +0.005052309,596.0 +, +0.004848642,597.0 +, +0.0045913546,598.0 +, +0.0047361376,599.0 +, +0.004598742,600.0 +, +0.004634972,601.0 +, +0.004533014,602.0 +, +0.004535699,603.0 +, +0.0044071414,604.0 +, +0.0047056647,605.0 +, +0.0046403827,606.0 +, +0.004571066,607.0 +, +0.004566402,608.0 +, +0.0044177594,609.0 +, +0.004487564,610.0 +, +0.00452708,611.0 +, +0.004643608,612.0 +, +0.0046588853,613.0 +, +0.0048282165,614.0 +, +0.0045193206,615.0 +, +0.0046170405,616.0 +, +0.004550939,617.0 +, +0.004781705,618.0 +, +0.00489563,619.0 +, +0.004941295,620.0 +, +0.0049533835,621.0 +, +0.0049276003,622.0 +, +0.0048876107,623.0 +, +0.0048700334,624.0 +, +0.0050332868,625.0 +, +0.0051972196,626.0 +, +0.0052523883,627.0 +, +0.0051567964,628.0 +, +0.005077093,629.0 +, +0.0051636947,630.0 +, +0.005091381,631.0 +, +0.0050412402,632.0 +, +0.0053023286,633.0 +, +0.005147076,634.0 +, +0.005135088,635.0 +, +0.0051928936,636.0 +, +0.005089516,637.0 +, +0.0050600795,638.0 +, +0.0051478497,639.0 +, +0.005037625,640.0 +, +0.0052268542,641.0 +, +0.0051815296,642.0 +, +0.0048808097,643.0 +, +0.004830329,644.0 +, +0.004680804,645.0 +, +0.0044285273,646.0 +, +0.0045601004,647.0 +, +0.0047163423,648.0 +, +0.004692768,649.0 +, +0.004637492,650.0 +, +0.0044860104,651.0 +, +0.004424686,652.0 +, +0.004633838,653.0 +, +0.0046405606,654.0 +, +0.0047650584,655.0 +, +0.0049680765,656.0 +, +0.0049326844,657.0 +, +0.0047585946,658.0 +, +0.0047918633,659.0 +, +0.004724721,660.0 +, +0.0048890566,661.0 +, +0.004971376,662.0 +, +0.004909157,663.0 +, +0.005111843,664.0 +, +0.0049361186,665.0 +, +0.0047376654,666.0 +, +0.004892788,667.0 +, +0.0048651057,668.0 +, +0.004750267,669.0 +, +0.0049602417,670.0 +, +0.004778258,671.0 +, +0.004826422,672.0 +, +0.004779159,673.0 +, +0.004690573,674.0 +, +0.004945249,675.0 +, +0.005086684,676.0 +, +0.0048571876,677.0 +, +0.0049944143,678.0 +, +0.005010283,679.0 +, +0.0050083688,680.0 +, +0.0050245402,681.0 +, +0.0050216233,682.0 +, +0.005127184,683.0 +, +0.0049683326,684.0 +, +0.0047148704,685.0 +, +0.004610197,686.0 +, +0.004741398,687.0 +, +0.004597264,688.0 +, +0.004618845,689.0 +, +0.004414019,690.0 +, +0.004552943,691.0 +, +0.00442238,692.0 +, +0.0041751354,693.0 +, +0.004106088,694.0 +, +0.004189212,695.0 +, +0.0040491535,696.0 +, +0.0039100004,697.0 +, +0.0040162345,698.0 +, +0.003942767,699.0 +, +0.0040876735,700.0 +, +0.003729812,701.0 +, +0.0038686127,702.0 +, +0.00385611,703.0 +, +0.004042896,704.0 +, +0.003986498,705.0 +, +0.004055772,706.0 +, +0.004201124,707.0 +, +0.004111974,708.0 +, +0.0043309256,709.0 +, +0.0043430342,710.0 +, +0.004472181,711.0 +, +0.0043492676,712.0 +, +0.0044110697,713.0 +, +0.0042669624,714.0 +, +0.0042817146,715.0 +, +0.0043626153,716.0 +, +0.0042219707,717.0 +, +0.004112959,718.0 +, +0.004066611,719.0 +, +0.0038754623,720.0 +, +0.003815264,721.0 +, +0.003838975,722.0 +, +0.0037858554,723.0 +, +0.0038625945,724.0 +, +0.0037987952,725.0 +, +0.003686358,726.0 +, +0.0036802702,727.0 +, +0.0037022214,728.0 +, +0.003445339,729.0 +, +0.0035373773,730.0 +, +0.0036810234,731.0 +, +0.0038107373,732.0 +, +0.0038043964,733.0 +, +0.003717544,734.0 +, +0.003678637,735.0 +, +0.0036115635,736.0 +, +0.0036957276,737.0 +, +0.0037481033,738.0 +, +0.0038508766,739.0 +, +0.0038630976,740.0 +, +0.0037170083,741.0 +, +0.003649521,742.0 +, +0.0037201955,743.0 +, +0.00391642,744.0 +, +0.0038866703,745.0 +, +0.004041676,746.0 +, +0.004043228,747.0 +, +0.004040128,748.0 +, +0.003994991,749.0 +, +0.004052109,750.0 +, +0.004226033,751.0 +, +0.0041722385,752.0 +, +0.00424968,753.0 +, +0.004154115,754.0 +, +0.0042567067,755.0 +, +0.0041675316,756.0 +, +0.004105932,757.0 +, +0.004032029,758.0 +, +0.0040264954,759.0 +, +0.0039516105,760.0 +, +0.0037971255,761.0 +, +0.0037790202,762.0 +, +0.003778922,763.0 +, +0.0036977367,764.0 +, +0.0037087915,765.0 +, +0.0039525065,766.0 +, +0.0039980244,767.0 +, +0.0039825886,768.0 +, +0.0040001534,769.0 +, +0.00383548,770.0 +, +0.0039546015,771.0 +, +0.0039620395,772.0 +, +0.0038548734,773.0 +, +0.0039359787,774.0 +, +0.0038400274,775.0 +, +0.0036323394,776.0 +, +0.0035986449,777.0 +, +0.003687563,778.0 +, +0.0036622726,779.0 +, +0.0038158644,780.0 +, +0.003729894,781.0 +, +0.003683503,782.0 +, +0.0035964332,783.0 +, +0.003480843,784.0 +, +0.0036128939,785.0 +, +0.0036562826,786.0 +, +0.0035760994,787.0 +, +0.0035297046,788.0 +, +0.0035434575,789.0 +, +0.0034767096,790.0 +, +0.003353361,791.0 +, +0.0032775328,792.0 +, +0.0033687316,793.0 +, +0.0033070124,794.0 +, +0.0032601536,795.0 +, +0.003161159,796.0 +, +0.0032265156,797.0 +, +0.0031818873,798.0 +, +0.0031017424,799.0 +, +0.0032288763,800.0 +, +0.0032676668,801.0 +, +0.0033182434,802.0 +, +0.0032686964,803.0 +, +0.003436252,804.0 +, +0.0034474372,805.0 +, +0.0034694537,806.0 +, +0.0034219064,807.0 +, +0.0035863728,808.0 +, +0.0036884497,809.0 +, +0.0034927535,810.0 +, +0.003425325,811.0 +, +0.0035630472,812.0 +, +0.0034441266,813.0 +, +0.003489071,814.0 +, +0.003428346,815.0 +, +0.0033998818,816.0 +, +0.003290704,817.0 +, +0.003076804,818.0 +, +0.003178605,819.0 +, +0.0032066137,820.0 +, +0.0032917908,821.0 +, +0.003245283,822.0 +, +0.0033186455,823.0 +, +0.0031323172,824.0 +, +0.0031264585,825.0 +, +0.003235293,826.0 +, +0.0032661506,827.0 +, +0.0033029548,828.0 +, +0.0032958488,829.0 +, +0.0033438976,830.0 +, +0.0033375197,831.0 +, +0.0033517475,832.0 +, +0.003423817,833.0 +, +0.0035058944,834.0 +, +0.0034250028,835.0 +, +0.003330797,836.0 +, +0.0033542768,837.0 +, +0.0034240452,838.0 +, +0.0032489195,839.0 +, +0.0031635188,840.0 +, +0.0033099272,841.0 +, +0.0033037607,842.0 +, +0.0033315886,843.0 +, +0.0032614009,844.0 +, +0.0032734796,845.0 +, +0.0032019324,846.0 +, +0.0031833663,847.0 +, +0.0032005191,848.0 +, +0.0032530755,849.0 +, +0.0033189058,850.0 +, +0.003115492,851.0 +, +0.0029809824,852.0 +, +0.0028147802,853.0 +, +0.0029157738,854.0 +, +0.0030645095,855.0 +, +0.0031741385,856.0 +, +0.003266183,857.0 +, +0.0032271645,858.0 +, +0.0032051094,859.0 +, +0.00324094,860.0 +, +0.0033564512,861.0 +, +0.0033736713,862.0 +, +0.0034372103,863.0 +, +0.0033273466,864.0 +, +0.003213677,865.0 +, +0.0032043264,866.0 +, +0.003204727,867.0 +, +0.0031503104,868.0 +, +0.003117843,869.0 +, +0.0029591485,870.0 +, +0.002859468,871.0 +, +0.0028428584,872.0 +, +0.002765915,873.0 +, +0.0028484226,874.0 +, +0.0029216858,875.0 +, +0.0027983815,876.0 +, +0.0027129385,877.0 +, +0.0026772115,878.0 +, +0.0027274308,879.0 +, +0.0028083853,880.0 +, +0.002793008,881.0 +, +0.0027967675,882.0 +, +0.0027795169,883.0 +, +0.0026735994,884.0 +, +0.002630074,885.0 +, +0.002714734,886.0 +, +0.0027270503,887.0 +, +0.0027634504,888.0 +, +0.002701294,889.0 +, +0.0027970974,890.0 +, +0.0028218855,891.0 +, +0.0027766651,892.0 +, +0.0028786203,893.0 +, +0.0028952886,894.0 +, +0.0029038605,895.0 +, +0.0028753176,896.0 +, +0.002866432,897.0 +, +0.0028397955,898.0 +, +0.002851792,899.0 +, +0.002816549,900.0 +, +0.0027485967,901.0 +, +0.0026748937,902.0 +, +0.0025315913,903.0 +, +0.0025534085,904.0 +, +0.0025399844,905.0 +, +0.0025236164,906.0 +, +0.0025169034,907.0 +, +0.002507784,908.0 +, +0.002504256,909.0 +, +0.002442155,910.0 +, +0.00253605,911.0 +, +0.002608821,912.0 +, +0.0027101613,913.0 +, +0.0027743748,914.0 +, +0.0027319647,915.0 +, +0.0027333172,916.0 +, +0.002764387,917.0 +, +0.0028133676,918.0 +, +0.0027685028,919.0 +, +0.0027501308,920.0 +, +0.0027057172,921.0 +, +0.0028365753,922.0 +, +0.0027511637,923.0 +, +0.0027142898,924.0 +, +0.0026565057,925.0 +, +0.0027628713,926.0 +, +0.0026700185,927.0 +, +0.0025884407,928.0 +, +0.0026282899,929.0 +, +0.0027991056,930.0 +, +0.002731581,931.0 +, +0.0026563578,932.0 +, +0.0026089703,933.0 +, +0.0025489016,934.0 +, +0.002604143,935.0 +, +0.0025323257,936.0 +, +0.002669424,937.0 +, +0.0027382039,938.0 +, +0.0026474565,939.0 +, +0.0023901553,940.0 +, +0.0025278465,941.0 +, +0.0023952548,942.0 +, +0.0024865908,943.0 +, +0.0026007656,944.0 +, +0.0026051172,945.0 +, +0.0025503978,946.0 +, +0.0025096468,947.0 +, +0.0024287277,948.0 +, +0.0024341654,949.0 +, +0.0024979038,950.0 +, +0.0024164848,951.0 +, +0.0024580457,952.0 +, +0.002458097,953.0 +, +0.0023210857,954.0 +, +0.0022932545,955.0 +, +0.0022801147,956.0 +, +0.0021593324,957.0 +, +0.0021776601,958.0 +, +0.0021715018,959.0 +, +0.0021020514,960.0 +, +0.0021458864,961.0 +, +0.0021522031,962.0 +, +0.0021304737,963.0 +, +0.0021381008,964.0 +, +0.0021221023,965.0 +, +0.0020764007,966.0 +, +0.0021562024,967.0 +, +0.0021939613,968.0 +, +0.0022224276,969.0 +, +0.0023009425,970.0 +, +0.002268298,971.0 +, +0.0023580329,972.0 +, +0.0023340737,973.0 +, +0.0023236922,974.0 +, +0.002295545,975.0 +, +0.0023230477,976.0 +, +0.0023237732,977.0 +, +0.0023587295,978.0 +, +0.0023891227,979.0 +, +0.0024165357,980.0 +, +0.0023942129,981.0 +, +0.0023297165,982.0 +, +0.0023099093,983.0 +, +0.00227584,984.0 +, +0.0022622366,985.0 +, +0.0022867525,986.0 +, +0.0023754737,987.0 +, +0.0022828027,988.0 +, +0.0022986343,989.0 +, +0.0023213169,990.0 +, +0.0022419526,991.0 +, +0.002177755,992.0 +, +0.0022139498,993.0 +, +0.0023084688,994.0 +, +0.0022994452,995.0 +, +0.0022951874,996.0 +, +0.0021848192,997.0 +, +0.0021798057,998.0 +, +0.0021983192,999.0 +, diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/progress.csv b/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/progress.csv new file mode 100644 index 0000000..c303fb5 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/progress.csv @@ -0,0 +1,2001 @@ +time-step,y_out,perf/mse +0,0.16240999615398422, +,, +1,0.07641456463160486, +,, +2,-0.0011717288240395193, +,, +3,-0.09012713418421624, +,, +4,-0.012061218454751216, +,, +5,0.15191245448182283, +,, +6,-0.048566227146673684, +,, +7,-0.0013081162506174103, +,, +8,0.07500560284415056, +,, +9,-0.022956678253111172,0.4116845 +,, +10,0.06660997968239282,0.34226435 +,, +11,0.11308196148160113,0.2865979 +,, +12,0.06840011216646363,0.22066227 +,, +13,0.01800599775137217,0.17881593 +,, +14,0.024976372658908126,0.15293343 +,, +15,0.018461401431130123,0.13582486 +,, +16,-0.01501410261941262,0.12673703 +,, +17,0.06755599212415825,0.118425295 +,, +18,-0.019971585166287498,0.1182645 +,, +19,-0.04203208715773933,0.11723097 +,, +20,0.0020152994063752615,0.11428434 +,, +21,-0.016077175147938425,0.110354364 +,, +22,-0.011169867559633392,0.10520983 +,, +23,0.07157224793263184,0.09873715 +,, +24,0.04875229753230614,0.0954464 +,, +25,-0.013226237991990256,0.090510435 +,, +26,0.008634544825672864,0.08614574 +,, +27,0.044358858961731015,0.08214369 +,, +28,-0.04581204958054661,0.07739 +,, +29,-0.06548359883454802,0.072461925 +,, +30,0.02001096314776065,0.07006042 +,, +31,0.00980486070814907,0.067246854 +,, +32,0.0828596115359481,0.065904096 +,, +33,-0.13458109908006685,0.06531572 +,, +34,0.11535667444324081,0.061929334 +,, +35,-0.10291404142438783,0.060432475 +,, +36,0.004494428363629843,0.057160437 +,, +37,0.12884621761570197,0.05663547 +,, +38,-0.013382023832540384,0.05235964 +,, +39,0.0050273293669035185,0.051079948 +,, +40,-0.04260475431574122,0.05068625 +,, +41,-0.006983668716958595,0.04840982 +,, +42,-0.043439135871932266,0.04626112 +,, +43,-0.034347496111465654,0.04484333 +,, +44,0.09160496522496815,0.046863087 +,, +45,-0.018642889852113896,0.046616856 +,, +46,-0.053921264724906465,0.047773868 +,, +47,0.04428160342142992,0.04544707 +,, +48,0.06687881493531449,0.044461053 +,, +49,0.09832220469501696,0.044983987 +,, +50,0.0020377153022540784,0.04420654 +,, +51,0.030024046055545216,0.045076367 +,, +52,-0.003560809313594822,0.045095697 +,, +53,-0.028752017812056593,0.046461117 +,, +54,-0.017544264817461762,0.04372434 +,, +55,-0.12818225167456726,0.04359477 +,, +56,-0.09943109716961919,0.043051086 +,, +57,-0.03015853874993539,0.043757685 +,, +58,-0.043659483640211584,0.046227086 +,, +59,-0.020180478674383003,0.045824 +,, +60,-0.00417215039349321,0.044117607 +,, +61,0.03405750422793356,0.042604417 +,, +62,-0.0050933857095513055,0.043005396 +,, +63,0.048288540736857524,0.041401844 +,, +64,-0.03283309884923945,0.040821463 +,, +65,-0.0893672378837717,0.039660804 +,, +66,0.055695105310126516,0.03841579 +,, +67,0.1144154849841959,0.03781774 +,, +68,-0.03662838931039447,0.035546236 +,, +69,-0.022218736039447743,0.03404691 +,, +70,0.08037786029972512,0.034336008 +,, +71,-0.036474710157650816,0.03648937 +,, +72,0.05701813551072386,0.03634174 +,, +73,0.006430428799160358,0.034494564 +,, +74,0.005518694747225869,0.033293024 +,, +75,0.046827532118112206,0.03323144 +,, +76,-0.013858532843361984,0.034067787 +,, +77,-0.03979682844963582,0.033351593 +,, +78,0.035773995435925784,0.032609988 +,, +79,-0.05745185070196354,0.032117996 +,, +80,0.021145357583119653,0.033656016 +,, +81,-0.018741959346237638,0.03157043 +,, +82,0.14653389102255235,0.030397505 +,, +83,-0.046750166579708874,0.031375386 +,, +84,0.05658013606908728,0.0331585 +,, +85,0.08768802348811955,0.03305576 +,, +86,0.04850889007813984,0.032709464 +,, +87,-0.05358354350900623,0.0320201 +,, +88,0.07727937431452778,0.032831933 +,, +89,0.12567823716684484,0.033486065 +,, +90,-0.04745032302526806,0.032104082 +,, +91,-0.031379891309265634,0.0311484 +,, +92,-0.03217858674056022,0.031639583 +,, +93,0.05156058450781635,0.030790463 +,, +94,0.05916383370198352,0.030732488 +,, +95,0.0031709151598605656,0.03033323 +,, +96,0.13327181735159735,0.030574158 +,, +97,0.03502987368016504,0.030977616 +,, +98,0.0651227502605749,0.029380009 +,, +99,0.004470195458455027,0.028496768 +,, +100,0.08092234936167289,0.028147172 +,, +101,0.007574734437483348,0.028606955 +,, +102,-0.06001100318417074,0.027945647 +,, +103,-0.06083882144488263,0.028185958 +,, +104,-0.19201708128044442,0.026932105 +,, +105,-0.00589771850003816,0.027318224 +,, +106,-0.03677512501898109,0.02615488 +,, +107,-0.018781277985125362,0.02680419 +,, +108,-0.03461706174637285,0.026500195 +,, +109,0.1507684407078,0.026046822 +,, +110,0.05019039740621027,0.026122168 +,, +111,-0.07656035836433585,0.026296128 +,, +112,0.10980404615921482,0.025212338 +,, +113,0.1297424117611227,0.02545307 +,, +114,0.030243963684215662,0.025583547 +,, +115,-0.03247930662141137,0.024545776 +,, +116,0.11493216883539217,0.024057273 +,, +117,0.09016540820699691,0.02244277 +,, +118,0.04034859443169436,0.022560945 +,, +119,0.15748402012366203,0.02307056 +,, +120,-0.08011225798124773,0.022394374 +,, +121,-0.060557160630072035,0.021637758 +,, +122,0.02327329221306411,0.023614278 +,, +123,0.09659832141926308,0.022924874 +,, +124,-0.07913491340626208,0.022113372 +,, +125,-0.08962200936239421,0.022329802 +,, +126,0.026486328572310328,0.022729445 +,, +127,-0.0032781799463922814,0.023531575 +,, +128,0.00183282967630948,0.02450201 +,, +129,0.017651417946548807,0.0238791 +,, +130,-0.06479940705504686,0.023837082 +,, +131,-0.03337878838413004,0.023029322 +,, +132,0.025835408017960346,0.021849122 +,, +133,0.00021105547868253277,0.021838527 +,, +134,-0.15799698372354387,0.021615716 +,, +135,-0.17807672961247836,0.021900065 +,, +136,0.0959072586966325,0.021565739 +,, +137,0.07804765550997518,0.021086615 +,, +138,0.0068350720941908055,0.019709218 +,, +139,-0.00010939898325541472,0.019687956 +,, +140,0.09680386143293672,0.019365186 +,, +141,0.041966490315175145,0.019639643 +,, +142,-0.0059175625370071795,0.018927427 +,, +143,-0.0829398547519111,0.018604886 +,, +144,-0.053501754248370004,0.018862568 +,, +145,0.02508104343504669,0.018079463 +,, +146,-0.009805052216072647,0.017920785 +,, +147,-0.08811541699359463,0.017506853 +,, +148,0.00941794501770453,0.017187018 +,, +149,0.06632928274622119,0.01760382 +,, +150,0.051649628168262976,0.017503249 +,, +151,-0.07227613153573365,0.017784001 +,, +152,0.036040500272878355,0.017888974 +,, +153,0.0019050399096572877,0.018136583 +,, +154,-0.01054899847065896,0.018050347 +,, +155,0.010788890463461837,0.017828379 +,, +156,-0.09178865131601975,0.017954323 +,, +157,0.09478501319191532,0.018049702 +,, +158,-0.06146746326068888,0.018038373 +,, +159,-0.016155479928053218,0.017828844 +,, +160,-0.06676568628199753,0.018320028 +,, +161,-0.0034553600181435346,0.018292453 +,, +162,-0.05519654658114269,0.01878645 +,, +163,0.05391024146457892,0.018440742 +,, +164,0.17669944096098456,0.018220808 +,, +165,0.06543604602363766,0.018326517 +,, +166,0.05980803602262899,0.018403286 +,, +167,0.050790915597082494,0.018378321 +,, +168,0.13023515564995175,0.018518543 +,, +169,0.14251680762245753,0.017999902 +,, +170,0.072878808519883,0.018018136 +,, +171,-0.023300404078895356,0.017436014 +,, +172,-0.022975475306669237,0.016493583 +,, +173,0.014771216670010946,0.01667047 +,, +174,0.04754520964430747,0.016739586 +,, +175,-0.05062402216052467,0.016361233 +,, +176,-0.005106401403202284,0.01617429 +,, +177,0.020804507935634715,0.015391266 +,, +178,0.014291237913974617,0.015521039 +,, +179,0.039857029833344035,0.016098613 +,, +180,0.10177892037475345,0.015389146 +,, +181,0.10860254493431334,0.01587503 +,, +182,-0.10874048488814121,0.015917998 +,, +183,0.030478681420756475,0.015256567 +,, +184,0.05874269283530072,0.015143004 +,, +185,0.09466731239266996,0.015454161 +,, +186,0.12865481911085086,0.015269896 +,, +187,0.07256584240843458,0.015705734 +,, +188,-0.08876979531479981,0.015584086 +,, +189,-0.13007857922176036,0.014840121 +,, +190,-0.11129971855908966,0.014894625 +,, +191,-0.03217887581547991,0.014608892 +,, +192,0.03137005262663008,0.014609566 +,, +193,-0.05646138138589208,0.014993951 +,, +194,-0.013343783115025418,0.015000495 +,, +195,-0.03245599191210819,0.014394654 +,, +196,0.038536952149493764,0.013766756 +,, +197,0.013689057094846413,0.013613485 +,, +198,0.022666321420984153,0.013916832 +,, +199,-0.042431169071688785,0.014203673 +,, +200,0.00656703973146526,0.013562766 +,, +201,-0.059107122047658875,0.013382072 +,, +202,0.012592438515680204,0.01315968 +,, +203,0.023923722271947234,0.012887858 +,, +204,-0.05777150410422024,0.01337339 +,, +205,0.017587592603098508,0.013425673 +,, +206,0.006368093506374483,0.014038166 +,, +207,-0.07281224582363607,0.013868433 +,, +208,0.06707523975639398,0.01329882 +,, +209,0.04521205242319466,0.013069521 +,, +210,0.15006941613331243,0.0135223 +,, +211,-0.07889502864144268,0.01441008 +,, +212,-0.08201391137760793,0.014295165 +,, +213,-0.019705128977845213,0.01453729 +,, +214,-0.10554585374602898,0.014061342 +,, +215,0.038525693620566154,0.014587182 +,, +216,-0.0056026164788197524,0.0144081805 +,, +217,-0.06727811480178619,0.014319906 +,, +218,-0.034387348447003474,0.014193867 +,, +219,0.044131498483435436,0.014007312 +,, +220,0.0029881544710214716,0.013912772 +,, +221,-0.06341800433812958,0.012988779 +,, +222,-0.016924612483458352,0.012617411 +,, +223,0.07993174215450256,0.012815865 +,, +224,0.00233182643359571,0.012343487 +,, +225,0.05066265855599567,0.011513001 +,, +226,-0.21892965459865593,0.011502563 +,, +227,-0.03976524188804938,0.011924874 +,, +228,0.04101772836990002,0.012385877 +,, +229,-0.0056197241466754665,0.012254153 +,, +230,-0.015371788339466572,0.012247067 +,, +231,0.0487195762580705,0.012499314 +,, +232,-0.04154933980796101,0.01362699 +,, +233,0.04088900241865691,0.013595112 +,, +234,0.031652751633956366,0.014221516 +,, +235,-0.036721772139796584,0.014418885 +,, +236,-0.13741143006570306,0.014496855 +,, +237,-0.04093556904418427,0.014122048 +,, +238,-0.0658348286322214,0.0140051795 +,, +239,-0.08632774675938978,0.014470877 +,, +240,0.013261666763647512,0.014183926 +,, +241,0.01220509582082624,0.013880688 +,, +242,0.046658572920174515,0.01320968 +,, +243,-0.07531002001004543,0.0130267665 +,, +244,-0.033775563392026114,0.01298934 +,, +245,-0.04763734720932926,0.012912792 +,, +246,0.018530444390605038,0.012643425 +,, +247,0.08852202783959945,0.012662187 +,, +248,-0.0376946223800184,0.012426092 +,, +249,0.031644365174101664,0.011928229 +,, +250,0.07567890018271439,0.011977758 +,, +251,0.10243631958488111,0.012049417 +,, +252,-0.07646693922778133,0.012098239 +,, +253,0.009297972014334084,0.011614481 +,, +254,0.01773082631034724,0.011484854 +,, +255,0.029742401325371266,0.011765086 +,, +256,-0.013209507102489686,0.011991626 +,, +257,-0.0074721326970845076,0.0120916385 +,, +258,-0.002250253720972553,0.012188358 +,, +259,0.04853799387693169,0.0122345975 +,, +260,0.011726360182135145,0.012064756 +,, +261,-0.026990503839779332,0.011673996 +,, +262,-0.04416668824149142,0.011549339 +,, +263,0.06914204390264797,0.011740644 +,, +264,-0.051303530090995274,0.011079816 +,, +265,-0.10283228303900964,0.010692937 +,, +266,0.051849662145616135,0.010324869 +,, +267,0.11025736032782463,0.00977801 +,, +268,-0.09756238894529967,0.009445672 +,, +269,-0.0939027719800404,0.009423474 +,, +270,0.03838674492847549,0.009913127 +,, +271,0.012401850275933893,0.010573848 +,, +272,7.877726262849397e-05,0.010515319 +,, +273,-0.13443198020903444,0.010208281 +,, +274,-0.03099254273963443,0.010351671 +,, +275,-0.022627850381493328,0.010713759 +,, +276,0.0021187803439371026,0.010491295 +,, +277,-0.03962151379160125,0.010827411 +,, +278,-0.05621131345031722,0.010586554 +,, +279,-0.08239987699482498,0.01052269 +,, +280,-0.03484050564824988,0.010579078 +,, +281,-0.1401940865629403,0.010243152 +,, +282,0.03685471035520049,0.010236494 +,, +283,0.021071481189237504,0.010239321 +,, +284,0.16937202802379625,0.010472357 +,, +285,-0.016321847507938775,0.010008585 +,, +286,-0.09553927570122914,0.010203567 +,, +287,-0.013438394907315522,0.010348397 +,, +288,0.06726212068037377,0.010345891 +,, +289,0.027936775877943,0.010700961 +,, +290,0.038984069880555375,0.010388944 +,, +291,-0.06463824560064839,0.0106908465 +,, +292,-0.008610564649744974,0.010309842 +,, +293,0.12621578953054718,0.010474081 +,, +294,-0.021393833061541995,0.010539789 +,, +295,0.08146889193548608,0.010585275 +,, +296,0.0478970347873498,0.010429607 +,, +297,0.010752581743455794,0.010243757 +,, +298,-0.03815772021925011,0.010742357 +,, +299,0.004990354306814819,0.010794876 +,, +300,-0.08473962678145512,0.010691104 +,, +301,0.10433388184216794,0.010032582 +,, +302,-0.14614489996474955,0.010654226 +,, +303,-0.05156463982429901,0.010426847 +,, +304,-0.0014383435324377622,0.010203677 +,, +305,-0.02732087598979004,0.0099885 +,, +306,-0.12757840988013291,0.009654961 +,, +307,0.015937373940890467,0.0093472665 +,, +308,0.06534839954218637,0.009603806 +,, +309,0.016211039656219263,0.009766078 +,, +310,0.04572283120209093,0.009610362 +,, +311,0.056834933143540066,0.009599518 +,, +312,-0.03496677021224072,0.009064664 +,, +313,-0.041586408304630146,0.009033918 +,, +314,-0.017720227563746443,0.009256901 +,, +315,0.03640086804345319,0.009281759 +,, +316,-0.08400690799576654,0.0097410735 +,, +317,0.020856315603777972,0.010113874 +,, +318,-0.027628574410856987,0.009633789 +,, +319,-0.002404621772761366,0.009057928 +,, +320,0.10283979753751979,0.009432124 +,, +321,-0.009019732656361343,0.009712348 +,, +322,0.03576184089906553,0.009893559 +,, +323,0.1444609697684611,0.010303207 +,, +324,-0.09160248751892301,0.009784044 +,, +325,-0.09559492827917435,0.010053712 +,, +326,-0.027601520026826643,0.00999709 +,, +327,-0.011476056067246825,0.009864601 +,, +328,0.02720820596975433,0.010140386 +,, +329,0.02059077165861603,0.010266502 +,, +330,-0.06272159637717752,0.010139539 +,, +331,-0.012871135349260734,0.010079867 +,, +332,0.030559145861990628,0.0100426935 +,, +333,0.13711738939888474,0.0098304525 +,, +334,0.0063284109309972615,0.009680955 +,, +335,-0.02276096289025581,0.00940544 +,, +336,-0.0006067204662103531,0.009379968 +,, +337,0.03788087879232267,0.009440757 +,, +338,0.046257936782707405,0.009191423 +,, +339,-0.10019067882284059,0.00887909 +,, +340,-0.034859025436064006,0.008715235 +,, +341,0.13899958883926442,0.00873994 +,, +342,-0.005126743865910895,0.008850156 +,, +343,0.17174817075536203,0.0087323515 +,, +344,0.09014963380273697,0.008909301 +,, +345,0.04708437080883376,0.008655539 +,, +346,0.12320309836573373,0.008628974 +,, +347,-0.03016034228098646,0.008353037 +,, +348,0.11953185695619717,0.008267693 +,, +349,-0.0753973358824013,0.008761351 +,, +350,-0.04995320669467419,0.008686851 +,, +351,-0.042704133673614225,0.008627215 +,, +352,0.06759942777583079,0.0084546115 +,, +353,0.08639356130236468,0.008602088 +,, +354,-0.008366804007211792,0.00847422 +,, +355,-0.07754169300609984,0.008744193 +,, +356,-0.035319952277473116,0.008688221 +,, +357,0.034984561460707775,0.008734159 +,, +358,0.14237733884604967,0.008668827 +,, +359,-0.10408107026096469,0.008293263 +,, +360,-0.04167819665103234,0.008320389 +,, +361,0.021898897092055558,0.008116147 +,, +362,0.05538752525425443,0.008200083 +,, +363,0.03815088571408584,0.008153895 +,, +364,-0.14295379840180067,0.0086259 +,, +365,0.017715810534444515,0.008612452 +,, +366,-0.029044520307307215,0.008708006 +,, +367,0.1176301321288273,0.008772651 +,, +368,0.021183219301245542,0.008839598 +,, +369,-0.062125875998464065,0.008819107 +,, +370,0.019195712271626753,0.009045528 +,, +371,0.10597510013833805,0.008872421 +,, +372,-0.00862257221895519,0.008818625 +,, +373,-0.027137758202441294,0.008557636 +,, +374,-0.15041036288203036,0.008084479 +,, +375,0.026266140636982273,0.0078722015 +,, +376,0.03498758005934569,0.007573083 +,, +377,-0.09833913040831924,0.00774151 +,, +378,-0.023110725668813285,0.007743551 +,, +379,0.0017529586072825634,0.0076592416 +,, +380,0.007580191659224925,0.0075029926 +,, +381,-0.15654744722407904,0.0075995037 +,, +382,-0.04009266670827338,0.0075590387 +,, +383,0.06196066611421165,0.007698643 +,, +384,-0.045184781409084794,0.007813014 +,, +385,0.032367276873837225,0.008237163 +,, +386,0.04442122007664274,0.008597644 +,, +387,-0.11131365093705782,0.008355604 +,, +388,-0.1273783556083556,0.008163278 +,, +389,0.048769565957018604,0.008101468 +,, +390,-0.014626542022665955,0.008072455 +,, +391,-0.007608378201602917,0.008196184 +,, +392,0.035268228858504364,0.00814244 +,, +393,0.1068357881442056,0.008040335 +,, +394,-0.04148120593613803,0.008026287 +,, +395,0.08520576959321513,0.007766598 +,, +396,0.061231386695995045,0.0074539334 +,, +397,0.13410636549186358,0.0076807747 +,, +398,-0.023926445142033348,0.007772682 +,, +399,0.009771115902103437,0.007994756 +,, +400,0.03216118484057193,0.008108705 +,, +401,-0.04107045497888011,0.008036339 +,, +402,-0.07470806831317155,0.008008949 +,, +403,0.07450207484737431,0.00787331 +,, +404,-0.15926046670421676,0.007942772 +,, +405,-0.01967346448647527,0.007894406 +,, +406,0.03369266925078079,0.007802221 +,, +407,0.05179065025394684,0.007519926 +,, +408,-0.035169222579759074,0.007418646 +,, +409,-0.00019913754246865534,0.0070824646 +,, +410,-0.015670703200043407,0.00677785 +,, +411,0.05489954739720536,0.006938192 +,, +412,0.09796590562985583,0.0067039416 +,, +413,0.10622220883036589,0.006594211 +,, +414,0.018272657447513017,0.0064013363 +,, +415,-0.07616595007337831,0.006770623 +,, +416,0.10406923260512874,0.006823994 +,, +417,-0.11095579531129143,0.0067184344 +,, +418,0.011396225672294792,0.0066474816 +,, +419,-0.020203952397979542,0.007046877 +,, +420,0.04013888495305191,0.0072142407 +,, +421,-0.05599257622283417,0.0073034638 +,, +422,-0.06138855322040046,0.0077653467 +,, +423,-0.10500535066106734,0.008059444 +,, +424,-0.04207217733229522,0.008089931 +,, +425,0.17747829661568948,0.007656876 +,, +426,-0.03394663670340773,0.00780701 +,, +427,0.08737173236405732,0.00797386 +,, +428,0.029423717084910858,0.008552184 +,, +429,-0.11900985950031967,0.008538587 +,, +430,0.025887941965658027,0.008467974 +,, +431,-0.059784712512734296,0.008256846 +,, +432,-0.026362815958855215,0.008384232 +,, +433,-0.043437439120860434,0.008347852 +,, +434,0.025999970905864256,0.00868402 +,, +435,-0.1194740305009711,0.0086899875 +,, +436,0.0873841061123103,0.008616216 +,, +437,0.05633859482372143,0.00865731 +,, +438,-0.02872160169470614,0.007961267 +,, +439,-0.04339764432532023,0.008033151 +,, +440,-0.04946158860422779,0.0082433615 +,, +441,0.06750014213575364,0.008022939 +,, +442,0.09912146021567497,0.0074998075 +,, +443,0.022529913641589343,0.0073705884 +,, +444,0.08508320157013782,0.0070143277 +,, +445,-0.06294355028380196,0.0069089322 +,, +446,0.02941934205979885,0.006694626 +,, +447,-0.003368049104440848,0.0065240427 +,, +448,0.05196033603938337,0.0067109377 +,, +449,0.014776684831533618,0.006611994 +,, +450,-0.0840593920392649,0.0062818853 +,, +451,0.03303462073528077,0.0064523383 +,, +452,0.00723180423105229,0.0064939125 +,, +453,-0.07250812139451179,0.006648867 +,, +454,-0.0009617754195641098,0.006654945 +,, +455,-0.023877384655851805,0.0068740114 +,, +456,0.040691780088910466,0.0072521814 +,, +457,-0.13150859131573983,0.007261589 +,, +458,-0.09760122689225392,0.0072377757 +,, +459,-0.04699323253091516,0.0070746467 +,, +460,0.1432284107364749,0.0073849633 +,, +461,0.10473720033644837,0.0074552074 +,, +462,0.09035629777813256,0.007544022 +,, +463,0.0794406530908566,0.007212624 +,, +464,-5.9069138950915145e-05,0.007286919 +,, +465,-0.08723891795529304,0.007602378 +,, +466,-0.05677260898382061,0.0073095886 +,, +467,0.014829120948816166,0.007411178 +,, +468,-0.03296861612106851,0.0073589766 +,, +469,-0.0003265195327814413,0.0072832955 +,, +470,-0.14259184333379943,0.007596711 +,, +471,0.037881625974252625,0.0075078136 +,, +472,-9.846948410524407e-05,0.0074071614 +,, +473,-0.15289543275666556,0.007423722 +,, +474,0.07302667198646103,0.0073407656 +,, +475,-0.0100575934882359,0.0069066794 +,, +476,0.06502260156654274,0.007060787 +,, +477,0.08053527356743453,0.007000332 +,, +478,0.0041569719001917915,0.0070274533 +,, +479,0.016790317238935447,0.007200422 +,, +480,0.007508064548772446,0.0067265322 +,, +481,-0.08896738778225549,0.006689547 +,, +482,-0.07288207526945412,0.006638625 +,, +483,-0.07360090155287076,0.0066219317 +,, +484,-0.012385655534607274,0.006606955 +,, +485,-0.04902368403550891,0.006765942 +,, +486,0.1838628534908373,0.0065927855 +,, +487,0.10338689572678697,0.006678297 +,, +488,0.033789590418148926,0.0066388734 +,, +489,-0.05257933339115052,0.006275315 +,, +490,-0.0984881131367101,0.0061541293 +,, +491,0.00044053465873701916,0.006242218 +,, +492,0.053798536677958766,0.0063144267 +,, +493,-0.027976269461742365,0.006560821 +,, +494,-0.07147847252748585,0.006544578 +,, +495,-0.016909989976655812,0.006322493 +,, +496,-0.0957464550499649,0.006461198 +,, +497,0.024070536234783356,0.0062784078 +,, +498,0.033350085924674935,0.0063545927 +,, +499,0.061496621050227,0.006499437 +,, +500,0.10867259173555033,0.0064413697 +,, +501,0.012023466908266538,0.00621063 +,, +502,-0.018383240978496446,0.006231707 +,, +503,-0.05303943405005493,0.0063161002 +,, +504,0.005782691136855936,0.0064998628 +,, +505,0.014177922753428145,0.006720625 +,, +506,0.011165112398315982,0.00659097 +,, +507,-0.05674541955179672,0.0064210193 +,, +508,0.059943019421229926,0.0063262633 +,, +509,-0.012102434711697467,0.006205489 +,, +510,0.13235438438708055,0.0064683952 +,, +511,-0.01242620089118835,0.0069108633 +,, +512,0.05423323138560249,0.0067900373 +,, +513,-0.024887252365950685,0.00673942 +,, +514,-0.019974137716988874,0.0065494156 +,, +515,0.1531779767902686,0.006396496 +,, +516,0.059112744369104735,0.006454207 +,, +517,-0.07306853989241371,0.006593805 +,, +518,-0.008461359632823944,0.006836043 +,, +519,-0.015218563457219517,0.006825322 +,, +520,-0.13976122307458763,0.006663178 +,, +521,0.059768299791597146,0.0066322843 +,, +522,0.023631592921512165,0.0068622595 +,, +523,-0.01768100895767947,0.0067408183 +,, +524,0.13765271061606343,0.0069634477 +,, +525,0.044183099164905815,0.0070486367 +,, +526,-0.10672891499318682,0.007063304 +,, +527,0.04099821553191652,0.0071476838 +,, +528,0.051180043324638845,0.006980233 +,, +529,0.027204007280766527,0.0069410824 +,, +530,-0.016772370882018557,0.0070783896 +,, +531,-0.011670269706617477,0.0067939656 +,, +532,0.11784692617819892,0.0065552196 +,, +533,0.005758532122401613,0.006775963 +,, +534,-0.018559317406214436,0.006312805 +,, +535,-0.04080580845853363,0.0059630363 +,, +536,-0.01104577396730402,0.006159703 +,, +537,0.022117812370463855,0.0062006665 +,, +538,-0.010423555937152378,0.0060760686 +,, +539,-0.04745625785994365,0.0061911535 +,, +540,-0.08598676168231799,0.006080167 +,, +541,0.145884638442623,0.00597334 +,, +542,-0.02865359567059913,0.0060778647 +,, +543,0.00836355602709014,0.005795536 +,, +544,0.0687236766123368,0.0061646267 +,, +545,-0.04607844061505547,0.0063526086 +,, +546,0.00883907003837833,0.0061190845 +,, +547,-0.045437466043269224,0.0058716508 +,, +548,-0.15352216510796746,0.005901403 +,, +549,0.045636756999937064,0.0058907983 +,, +550,-0.09284611717871391,0.005808233 +,, +551,0.019989303120713252,0.0058353427 +,, +552,0.09610602697571588,0.0057009934 +,, +553,-0.0020302389720382973,0.005772243 +,, +554,-0.05524507243104802,0.0056734663 +,, +555,-0.059497628112001495,0.005680301 +,, +556,-0.010864357426533744,0.005705866 +,, +557,0.012660909157759914,0.005871755 +,, +558,-0.09450811957580654,0.005826918 +,, +559,0.022585972628466768,0.005780345 +,, +560,0.110746557237865,0.0060133236 +,, +561,0.029189057714149046,0.006240505 +,, +562,-0.0935043258362383,0.0062749935 +,, +563,0.0228430093379256,0.0061353166 +,, +564,0.005495080894702485,0.006270499 +,, +565,0.02163841056072853,0.0061956593 +,, +566,0.02857100661185033,0.00631012 +,, +567,0.025471712571667193,0.006206002 +,, +568,-0.09003535211603869,0.006253851 +,, +569,-0.029103882282501103,0.0063427994 +,, +570,0.0627363621963106,0.0059592677 +,, +571,0.005746573814092229,0.0057757176 +,, +572,-0.15058649769357013,0.00569206 +,, +573,-0.03312091285814395,0.005986777 +,, +574,0.0704639421120835,0.0058613303 +,, +575,0.02577163216146789,0.005958927 +,, +576,0.010382522487090524,0.005617448 +,, +577,-0.007684154377634644,0.0055160574 +,, +578,-0.06032893360871938,0.0052953125 +,, +579,0.003337394073936517,0.0052530663 +,, +580,-0.05004390831458477,0.0054323934 +,, +581,-0.03202163567255928,0.0054982672 +,, +582,-0.06709403100145696,0.0056226975 +,, +583,-0.08289792316514424,0.0055458853 +,, +584,0.031638001222306075,0.0053948304 +,, +585,0.007314629083181194,0.0053327624 +,, +586,0.0622930624074593,0.005581173 +,, +587,-0.0540015226177301,0.005891134 +,, +588,-0.05831913241685084,0.0061695324 +,, +589,-0.03248535262596911,0.005980528 +,, +590,0.03577950788951417,0.0058547505 +,, +591,0.10611434312233896,0.0056473007 +,, +592,-0.008664051227582919,0.0055733095 +,, +593,-0.04504369942480109,0.005406431 +,, +594,0.10775614360176336,0.00548005 +,, +595,0.07197821363396281,0.0053556636 +,, +596,0.014340418600274484,0.005052309 +,, +597,0.15703035247559727,0.004848642 +,, +598,-0.07663209456722989,0.0045913546 +,, +599,0.06360165353550376,0.0047361376 +,, +600,0.038195238371459106,0.004598742 +,, +601,0.0656891701343192,0.004634972 +,, +602,0.025158097562601,0.004533014 +,, +603,0.04010687363644043,0.004535699 +,, +604,0.09416898898818744,0.0044071414 +,, +605,0.0641055308852021,0.0047056647 +,, +606,-0.03256045403697434,0.0046403827 +,, +607,-0.04455991641093784,0.004571066 +,, +608,-0.05818444472467381,0.004566402 +,, +609,-0.03202023468763286,0.0044177594 +,, +610,-0.052137845122985846,0.004487564 +,, +611,0.05820116358780976,0.00452708 +,, +612,-0.03413950503771438,0.004643608 +,, +613,0.08279699776547896,0.0046588853 +,, +614,0.07043539830541715,0.0048282165 +,, +615,0.034207769012504184,0.0045193206 +,, +616,0.045446757687002584,0.0046170405 +,, +617,0.01886805178270721,0.004550939 +,, +618,-0.13672092220584334,0.004781705 +,, +619,-0.005439181265488459,0.00489563 +,, +620,-0.030265772274554008,0.004941295 +,, +621,0.04029146006982741,0.0049533835 +,, +622,-0.0685154956183881,0.0049276003 +,, +623,-0.05099409843352207,0.0048876107 +,, +624,-0.060210312354970145,0.0048700334 +,, +625,0.06901305154773942,0.0050332868 +,, +626,0.005135427486259128,0.0051972196 +,, +627,0.0044370402192809855,0.0052523883 +,, +628,-0.06680234688603215,0.0051567964 +,, +629,0.03373198341107903,0.005077093 +,, +630,-0.06808956952255932,0.0051636947 +,, +631,-0.020910029070163358,0.005091381 +,, +632,-0.0861718737670384,0.0050412402 +,, +633,0.16370419642326728,0.0053023286 +,, +634,0.07758805262641388,0.005147076 +,, +635,0.03591860150285891,0.005135088 +,, +636,-0.00875839650715926,0.0051928936 +,, +637,-0.00034076984106377016,0.005089516 +,, +638,0.010539169434382066,0.0050600795 +,, +639,-0.07071304416136168,0.0051478497 +,, +640,-0.013455345913767174,0.005037625 +,, +641,0.014566684422004657,0.0052268542 +,, +642,-0.00586617121814479,0.0051815296 +,, +643,-0.0018511461789813347,0.0048808097 +,, +644,0.025878116129420006,0.004830329 +,, +645,-0.028484116703112607,0.004680804 +,, +646,-0.013457843877468904,0.0044285273 +,, +647,-0.032298067374535264,0.0045601004 +,, +648,-0.038303743525988455,0.0047163423 +,, +649,0.02257620194861261,0.004692768 +,, +650,0.08511173645779127,0.004637492 +,, +651,0.00030360310889306075,0.0044860104 +,, +652,-0.01900225740040007,0.004424686 +,, +653,-0.016606173518660845,0.004633838 +,, +654,-0.06099734822127025,0.0046405606 +,, +655,0.007630774219808487,0.0047650584 +,, +656,0.08246876883674009,0.0049680765 +,, +657,-0.07175119835886933,0.0049326844 +,, +658,-0.053682259398401905,0.0047585946 +,, +659,-0.008434792080010325,0.0047918633 +,, +660,0.09887303458375563,0.004724721 +,, +661,-0.004545199853412238,0.0048890566 +,, +662,0.10537745561945885,0.004971376 +,, +663,-0.011202312381288201,0.004909157 +,, +664,0.07751177237648162,0.005111843 +,, +665,0.025768669176817326,0.0049361186 +,, +666,0.013365027862027902,0.0047376654 +,, +667,-0.08726305116178257,0.004892788 +,, +668,-0.00773051044910705,0.0048651057 +,, +669,0.1817976178516392,0.004750267 +,, +670,0.0335312213374932,0.0049602417 +,, +671,0.029438888250292818,0.004778258 +,, +672,0.00771296467095408,0.004826422 +,, +673,-0.11815453190841879,0.004779159 +,, +674,0.055087474856836544,0.004690573 +,, +675,-0.026903250353312043,0.004945249 +,, +676,-0.03299358695945903,0.005086684 +,, +677,-0.053708833100938796,0.0048571876 +,, +678,-0.08879211931412824,0.0049944143 +,, +679,0.0369573546232028,0.005010283 +,, +680,-0.11304376180662196,0.0050083688 +,, +681,0.009835592435011378,0.0050245402 +,, +682,-0.08323392982710265,0.0050216233 +,, +683,0.07830861679613736,0.005127184 +,, +684,0.021926086559143264,0.0049683326 +,, +685,0.05583605949010196,0.0047148704 +,, +686,-0.1274522622584134,0.004610197 +,, +687,-0.10945806821284679,0.004741398 +,, +688,0.030272835399688246,0.004597264 +,, +689,0.01587020288920097,0.004618845 +,, +690,-0.13949657577418656,0.004414019 +,, +691,0.05414807555178063,0.004552943 +,, +692,-0.023435918541071285,0.00442238 +,, +693,0.05295435405560735,0.0041751354 +,, +694,-0.0461587286773355,0.004106088 +,, +695,0.0177967407932414,0.004189212 +,, +696,-0.03275300771577827,0.0040491535 +,, +697,0.030058590446462984,0.0039100004 +,, +698,0.012883063112920187,0.0040162345 +,, +699,0.02213058127711498,0.003942767 +,, +700,0.07575259619668037,0.0040876735 +,, +701,0.11093011713172342,0.003729812 +,, +702,-0.015644613461566675,0.0038686127 +,, +703,-0.009802598672802873,0.00385611 +,, +704,-0.07465722432430734,0.004042896 +,, +705,-0.06665402389574217,0.003986498 +,, +706,0.07463893330917296,0.004055772 +,, +707,-0.0016905803506118283,0.004201124 +,, +708,-0.05923445245978823,0.004111974 +,, +709,0.05395624391445748,0.0043309256 +,, +710,-0.10364693127275741,0.0043430342 +,, +711,0.042020814568226386,0.004472181 +,, +712,-0.02760766381614537,0.0043492676 +,, +713,0.014600242294853918,0.0044110697 +,, +714,-0.06438625601429965,0.0042669624 +,, +715,0.14207745855399195,0.0042817146 +,, +716,-0.15683913840980715,0.0043626153 +,, +717,-0.0959558458308925,0.0042219707 +,, +718,-0.004643023086661192,0.004112959 +,, +719,0.09737401991422048,0.004066611 +,, +720,0.08758491114869038,0.0038754623 +,, +721,0.058437664287882995,0.003815264 +,, +722,0.09643908402969678,0.003838975 +,, +723,-0.036816229666471995,0.0037858554 +,, +724,-0.06925082732608062,0.0038625945 +,, +725,0.12658108904680807,0.0037987952 +,, +726,0.040699624732941204,0.003686358 +,, +727,-0.03066727594527675,0.0036802702 +,, +728,-0.04291018729732686,0.0037022214 +,, +729,-0.013533463067809136,0.003445339 +,, +730,0.08193609293618663,0.0035373773 +,, +731,-0.08502166515334478,0.0036810234 +,, +732,-0.11730141047670334,0.0038107373 +,, +733,-0.03580753223809469,0.0038043964 +,, +734,0.0425859690184118,0.003717544 +,, +735,0.09678203112952871,0.003678637 +,, +736,0.09931014501027324,0.0036115635 +,, +737,0.030813463256262427,0.0036957276 +,, +738,-0.040343645169131664,0.0037481033 +,, +739,0.11089094912109056,0.0038508766 +,, +740,-0.0388853252130259,0.0038630976 +,, +741,-0.0708249921170063,0.0037170083 +,, +742,-0.03174550402014392,0.003649521 +,, +743,0.04673662927158779,0.0037201955 +,, +744,-0.06960588808250656,0.00391642 +,, +745,-0.0029000267091557723,0.0038866703 +,, +746,0.032074102802524346,0.004041676 +,, +747,0.11348583639101313,0.004043228 +,, +748,0.06730711724798594,0.004040128 +,, +749,0.0022899374663303967,0.003994991 +,, +750,-0.0143288790681582,0.004052109 +,, +751,-0.05995027145010348,0.004226033 +,, +752,-0.10010647972626052,0.0041722385 +,, +753,0.12349379763376409,0.00424968 +,, +754,0.042372163548056334,0.004154115 +,, +755,0.013291871702916147,0.0042567067 +,, +756,0.010299159097761537,0.0041675316 +,, +757,0.04503022887146063,0.004105932 +,, +758,0.11565208590406338,0.004032029 +,, +759,0.038248618587268704,0.0040264954 +,, +760,-0.011104695294011147,0.0039516105 +,, +761,0.03881686508332695,0.0037971255 +,, +762,-0.054350678871133935,0.0037790202 +,, +763,-0.0041077616123723765,0.003778922 +,, +764,-0.09149340403404843,0.0036977367 +,, +765,-0.031902349734853425,0.0037087915 +,, +766,-0.05244908372482829,0.0039525065 +,, +767,-0.04945526281016863,0.0039980244 +,, +768,-0.038600061572527586,0.0039825886 +,, +769,0.0023608844618483657,0.0040001534 +,, +770,-0.03716292560129046,0.00383548 +,, +771,-0.10233617435001785,0.0039546015 +,, +772,0.05942570063815313,0.0039620395 +,, +773,-0.12469068636388794,0.0038548734 +,, +774,0.05039482518544958,0.0039359787 +,, +775,0.07275501340999396,0.0038400274 +,, +776,0.09279416694780393,0.0036323394 +,, +777,-0.003407771657708173,0.0035986449 +,, +778,-0.040540530583906505,0.003687563 +,, +779,0.01923084425249838,0.0036622726 +,, +780,-0.030983015257031742,0.0038158644 +,, +781,-0.007486396645601879,0.003729894 +,, +782,-0.016822050520744945,0.003683503 +,, +783,-0.043249348411557344,0.0035964332 +,, +784,0.012658864804989664,0.003480843 +,, +785,-0.03786200014792861,0.0036128939 +,, +786,0.09598859759294108,0.0036562826 +,, +787,-0.024221635269879062,0.0035760994 +,, +788,0.0006747372983891622,0.0035297046 +,, +789,-0.017278994819610975,0.0035434575 +,, +790,-0.01837132785741975,0.0034767096 +,, +791,-0.19146994751004487,0.003353361 +,, +792,-0.05541180624690077,0.0032775328 +,, +793,0.005976296471543823,0.0033687316 +,, +794,0.04042499852015002,0.0033070124 +,, +795,0.10565822157972415,0.0032601536 +,, +796,-0.009273854681977778,0.003161159 +,, +797,0.0016930243605644615,0.0032265156 +,, +798,0.07780826020281292,0.0031818873 +,, +799,0.14657944767076664,0.0031017424 +,, +800,-0.06691851661784655,0.0032288763 +,, +801,0.11393969601878409,0.0032676668 +,, +802,-0.043257182639391475,0.0033182434 +,, +803,0.06582939883863616,0.0032686964 +,, +804,-0.1094084761149383,0.003436252 +,, +805,-0.009043392127296823,0.0034474372 +,, +806,0.0767414389501448,0.0034694537 +,, +807,-0.0006982623188657583,0.0034219064 +,, +808,-0.03461387442281787,0.0035863728 +,, +809,0.06045093684428436,0.0036884497 +,, +810,-0.1320047105856027,0.0034927535 +,, +811,0.05696695713938701,0.003425325 +,, +812,-0.015134866113341298,0.0035630472 +,, +813,-0.017527719306708323,0.0034441266 +,, +814,-0.06648726704521678,0.003489071 +,, +815,-0.11939593257696222,0.003428346 +,, +816,-0.0133588170323234,0.0033998818 +,, +817,0.023637526715989045,0.003290704 +,, +818,0.08421226301273807,0.003076804 +,, +819,-0.06404083510723606,0.003178605 +,, +820,-0.13842488083266066,0.0032066137 +,, +821,0.05599764119374381,0.0032917908 +,, +822,0.042575679224454197,0.003245283 +,, +823,0.039056347720289736,0.0033186455 +,, +824,0.047854202975720544,0.0031323172 +,, +825,0.10213053711556046,0.0031264585 +,, +826,0.034538488207555715,0.003235293 +,, +827,0.005444499553305155,0.0032661506 +,, +828,0.01936034237727194,0.0033029548 +,, +829,-0.06008922442314741,0.0032958488 +,, +830,-0.08988883680453799,0.0033438976 +,, +831,-0.09593234575810339,0.0033375197 +,, +832,0.1614330621714831,0.0033517475 +,, +833,-0.06335514984810839,0.003423817 +,, +834,0.05883399553522096,0.0035058944 +,, +835,0.047247607679567365,0.0034250028 +,, +836,0.06979339788157304,0.003330797 +,, +837,-0.18124804680861856,0.0033542768 +,, +838,0.06670673982007169,0.0034240452 +,, +839,0.004816272890374194,0.0032489195 +,, +840,-0.1126873722348845,0.0031635188 +,, +841,0.047068633386623177,0.0033099272 +,, +842,-0.07807335688117918,0.0033037607 +,, +843,-0.16042737752067185,0.0033315886 +,, +844,0.013561631536124769,0.0032614009 +,, +845,0.0055157689617099034,0.0032734796 +,, +846,-0.012134221838973482,0.0032019324 +,, +847,-0.004493554860397956,0.0031833663 +,, +848,0.08572326983706229,0.0032005191 +,, +849,0.017529089486673498,0.0032530755 +,, +850,-0.0852525941330575,0.0033189058 +,, +851,-0.06573060352731172,0.003115492 +,, +852,0.06115734210337737,0.0029809824 +,, +853,-0.05914285543844121,0.0028147802 +,, +854,-0.054085913888472156,0.0029157738 +,, +855,0.08276575894274996,0.0030645095 +,, +856,0.01968625229292074,0.0031741385 +,, +857,0.06576261193985534,0.003266183 +,, +858,-0.020119869122335654,0.0032271645 +,, +859,0.07475644115335912,0.0032051094 +,, +860,0.013937360230450592,0.00324094 +,, +861,-0.14661443644437278,0.0033564512 +,, +862,0.05693787072679796,0.0033736713 +,, +863,0.0748569590676936,0.0034372103 +,, +864,-0.05142722906834931,0.0033273466 +,, +865,0.01808017802453334,0.003213677 +,, +866,0.015805243061694403,0.0032043264 +,, +867,0.011279387034888812,0.003204727 +,, +868,-0.04457720527380234,0.0031503104 +,, +869,0.059053491272598936,0.003117843 +,, +870,-0.034259181466588226,0.0029591485 +,, +871,0.10129543193138486,0.002859468 +,, +872,-0.031349375835708994,0.0028428584 +,, +873,-0.08005570233939027,0.002765915 +,, +874,0.10892663965179845,0.0028484226 +,, +875,-0.13343079494602322,0.0029216858 +,, +876,-0.0020742410843473842,0.0027983815 +,, +877,0.08603184626701199,0.0027129385 +,, +878,0.017437229475710192,0.0026772115 +,, +879,0.14141658989798078,0.0027274308 +,, +880,0.02723873778309952,0.0028083853 +,, +881,0.11110791684988289,0.002793008 +,, +882,0.09838274442417647,0.0027967675 +,, +883,-0.05847212908993963,0.0027795169 +,, +884,0.013448214403066039,0.0026735994 +,, +885,-0.002693320560798969,0.002630074 +,, +886,-0.09447609123292394,0.002714734 +,, +887,-0.026932766621313095,0.0027270503 +,, +888,0.03677421138989007,0.0027634504 +,, +889,-0.012657408427397505,0.002701294 +,, +890,-0.03244904471362686,0.0027970974 +,, +891,-0.0006961659432776768,0.0028218855 +,, +892,0.12926857453221774,0.0027766651 +,, +893,-0.038344544175702745,0.0028786203 +,, +894,-0.05949622443654498,0.0028952886 +,, +895,-0.08036375607043764,0.0029038605 +,, +896,-0.02756096973013688,0.0028753176 +,, +897,-0.016786906018677,0.002866432 +,, +898,-0.04770547603638603,0.0028397955 +,, +899,0.017390537668180647,0.002851792 +,, +900,0.0337407023274155,0.002816549 +,, +901,0.09948716865026348,0.0027485967 +,, +902,0.03783906347144496,0.0026748937 +,, +903,-0.022713011891334046,0.0025315913 +,, +904,-0.017754859804960114,0.0025534085 +,, +905,0.012453338521923298,0.0025399844 +,, +906,0.061821739027559455,0.0025236164 +,, +907,0.016237738156917418,0.0025169034 +,, +908,-0.14541611482732614,0.002507784 +,, +909,0.05711361031233398,0.002504256 +,, +910,-0.05732385810904425,0.002442155 +,, +911,0.10906009435513378,0.00253605 +,, +912,0.04044497702918875,0.002608821 +,, +913,-0.012429756713451895,0.0027101613 +,, +914,0.051995913822177955,0.0027743748 +,, +915,0.01577036801303959,0.0027319647 +,, +916,-0.01249847342894177,0.0027333172 +,, +917,0.057815218377423136,0.002764387 +,, +918,0.024056234217315023,0.0028133676 +,, +919,0.0595330765705432,0.0027685028 +,, +920,0.002046550022683939,0.0027501308 +,, +921,-0.011911952333671032,0.0027057172 +,, +922,-0.049288114419236764,0.0028365753 +,, +923,0.02554093363290549,0.0027511637 +,, +924,0.025323054415998428,0.0027142898 +,, +925,-0.08357439926256804,0.0026565057 +,, +926,0.11278723365077528,0.0027628713 +,, +927,-0.12035258300554794,0.0026700185 +,, +928,-0.00018722615292231584,0.0025884407 +,, +929,0.09636644012712209,0.0026282899 +,, +930,0.05366578913659906,0.0027991056 +,, +931,-0.02974111386880278,0.002731581 +,, +932,-0.009334111681011448,0.0026563578 +,, +933,0.092720142988614,0.0026089703 +,, +934,-0.06749076720989847,0.0025489016 +,, +935,-0.010876435782008878,0.002604143 +,, +936,-0.07223771798092872,0.0025323257 +,, +937,0.04334181882769369,0.002669424 +,, +938,0.04338992312867271,0.0027382039 +,, +939,-0.03861532642124721,0.0026474565 +,, +940,-0.06666045616882266,0.0023901553 +,, +941,-0.04982358043830777,0.0025278465 +,, +942,-0.06701815913363132,0.0023952548 +,, +943,-0.0803261163456868,0.0024865908 +,, +944,0.11169624828094787,0.0026007656 +,, +945,-0.040385476217819745,0.0026051172 +,, +946,-0.02692366810937997,0.0025503978 +,, +947,-0.08497453790764797,0.0025096468 +,, +948,0.026990406138504924,0.0024287277 +,, +949,0.09344842118061603,0.0024341654 +,, +950,-0.09174909340840878,0.0024979038 +,, +951,-0.07630369455415528,0.0024164848 +,, +952,-0.03857395216958599,0.0024580457 +,, +953,-0.0707592738238981,0.002458097 +,, +954,0.011329504731144097,0.0023210857 +,, +955,-0.02358075553680041,0.0022932545 +,, +956,-0.04692154725351813,0.0022801147 +,, +957,-0.10501122791562509,0.0021593324 +,, +958,0.0188612432813694,0.0021776601 +,, +959,-0.048752160368164335,0.0021715018 +,, +960,-0.06905365323568759,0.0021020514 +,, +961,-0.028436765895982815,0.0021458864 +,, +962,0.07546673222402649,0.0021522031 +,, +963,-0.012522727199346186,0.0021304737 +,, +964,-0.06846592784351486,0.0021381008 +,, +965,0.11554682428391838,0.0021221023 +,, +966,0.0434415608564339,0.0020764007 +,, +967,0.015304608518340687,0.0021562024 +,, +968,-0.1102421327894913,0.0021939613 +,, +969,0.13874678386992134,0.0022224276 +,, +970,0.03739943221001626,0.0023009425 +,, +971,0.0021452555404372162,0.002268298 +,, +972,-0.09889556982483617,0.0023580329 +,, +973,0.06367895256823927,0.0023340737 +,, +974,0.05458908560756194,0.0023236922 +,, +975,-0.08903971475434275,0.002295545 +,, +976,0.034897538208490814,0.0023230477 +,, +977,0.08774276579204804,0.0023237732 +,, +978,-0.0438624691988711,0.0023587295 +,, +979,0.01982017730340692,0.0023891227 +,, +980,-0.03982090922000585,0.0024165357 +,, +981,0.10134207121258348,0.0023942129 +,, +982,-0.13610267306254925,0.0023297165 +,, +983,0.021286001427182673,0.0023099093 +,, +984,0.01575072192614234,0.00227584 +,, +985,-0.0037308086691541804,0.0022622366 +,, +986,0.04239047308737716,0.0022867525 +,, +987,0.002346557589420123,0.0023754737 +,, +988,-0.04334470401902632,0.0022828027 +,, +989,-0.030415766684359243,0.0022986343 +,, +990,0.06729265364605973,0.0023213169 +,, +991,-0.06893927641196436,0.0022419526 +,, +992,-0.07484859940412,0.002177755 +,, +993,-0.014157572576518646,0.0022139498 +,, +994,-0.12897979217745972,0.0023084688 +,, +995,0.10972342723454237,0.0022994452 +,, +996,-0.0657891000714295,0.0022951874 +,, +997,0.09319869205216665,0.0021848192 +,, +998,0.10205834985163542,0.0021798057 +,, +999,0.10046089008734214,0.0021983192 +,, diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/tb/events/events.out.tfevents.1646141219.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/tb/events/events.out.tfevents.1646141219.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..d95e99f Binary files /dev/null and b/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/tb/events/events.out.tfevents.1646141219.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/warn.txt b/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/warn.txt new file mode 100644 index 0000000..f7e0929 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/warn.txt @@ -0,0 +1,8 @@ +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/backup.txt b/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/backup.txt new file mode 100644 index 0000000..30333aa --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/backup.txt @@ -0,0 +1,7 @@ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.001 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 88 diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/log.txt b/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/log.txt new file mode 100644 index 0000000..2b948cc --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/log.txt @@ -0,0 +1,1797 @@ +Logging to ../log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/ +log dir: ../log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/ +pkl_file: ../archive_tester/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88.pkl +checkpoint_dir: ../checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/ +results_dir: ../results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/ +[BACKUP] 0 : key: env_id, value: Test-v1 +[BACKUP] 0 : key: info, value: default exp info +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.001 +[BACKUP] 0 : key: loaded_date, value: True +[BACKUP] 0 : key: loaded_task_name, value: +[BACKUP] 0 : key: seed, value: 88 +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.162 | +--------------------------------------------------------- +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint 0 +--------------------------------------------------------- +| time-step | 1 | +| y_out | 0.0764 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 2 | +| y_out | -0.00117 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 3 | +| y_out | -0.0901 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 4 | +| y_out | -0.0121 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 5 | +| y_out | 0.152 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 6 | +| y_out | -0.0486 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 7 | +| y_out | -0.00131 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 8 | +| y_out | 0.075 | +--------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.4116845 | +| time-step | 9 | +| y_out | -0.023 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.34226435 | +| time-step | 10 | +| y_out | 0.0666 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2865979 | +| time-step | 11 | +| y_out | 0.113 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22066227 | +| time-step | 12 | +| y_out | 0.0684 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17881593 | +| time-step | 13 | +| y_out | 0.018 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15293343 | +| time-step | 14 | +| y_out | 0.025 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13582486 | +| time-step | 15 | +| y_out | 0.0185 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12673703 | +| time-step | 16 | +| y_out | -0.015 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.118425295 | +| time-step | 17 | +| y_out | 0.0676 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.1182645 | +| time-step | 18 | +| y_out | -0.02 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11723097 | +| time-step | 19 | +| y_out | -0.042 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11428434 | +| time-step | 20 | +| y_out | 0.00202 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.110354364 | +| time-step | 21 | +| y_out | -0.0161 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.10520983 | +| time-step | 22 | +| y_out | -0.0112 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09873715 | +| time-step | 23 | +| y_out | 0.0716 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0954464 | +| time-step | 24 | +| y_out | 0.0488 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.090510435 | +| time-step | 25 | +| y_out | -0.0132 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08614574 | +| time-step | 26 | +| y_out | 0.00863 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08214369 | +| time-step | 27 | +| y_out | 0.0444 | +----------------------------------------------------------- +--------------------------------------------------------- +| perf/mse | 0.07739 | +| time-step | 28 | +| y_out | -0.0458 | +--------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.072461925 | +| time-step | 29 | +| y_out | -0.0655 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07006042 | +| time-step | 30 | +| y_out | 0.02 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.067246854 | +| time-step | 31 | +| y_out | 0.0098 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.065904096 | +| time-step | 32 | +| y_out | 0.0829 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06531572 | +| time-step | 33 | +| y_out | -0.135 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.061929334 | +| time-step | 34 | +| y_out | 0.115 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.060432475 | +| time-step | 35 | +| y_out | -0.103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.057160437 | +| time-step | 36 | +| y_out | 0.00449 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05663547 | +| time-step | 37 | +| y_out | 0.129 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05235964 | +| time-step | 38 | +| y_out | -0.0134 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.051079948 | +| time-step | 39 | +| y_out | 0.00503 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05068625 | +| time-step | 40 | +| y_out | -0.0426 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04840982 | +| time-step | 41 | +| y_out | -0.00698 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04626112 | +| time-step | 42 | +| y_out | -0.0434 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04484333 | +| time-step | 43 | +| y_out | -0.0343 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.046863087 | +| time-step | 44 | +| y_out | 0.0916 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.046616856 | +| time-step | 45 | +| y_out | -0.0186 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047773868 | +| time-step | 46 | +| y_out | -0.0539 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04544707 | +| time-step | 47 | +| y_out | 0.0443 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.044461053 | +| time-step | 48 | +| y_out | 0.0669 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.044983987 | +| time-step | 49 | +| y_out | 0.0983 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04420654 | +| time-step | 50 | +| y_out | 0.00204 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.045076367 | +| time-step | 51 | +| y_out | 0.03 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045095697 | +| time-step | 52 | +| y_out | -0.00356 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.046461117 | +| time-step | 53 | +| y_out | -0.0288 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04372434 | +| time-step | 54 | +| y_out | -0.0175 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04359477 | +| time-step | 55 | +| y_out | -0.128 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.043051086 | +| time-step | 56 | +| y_out | -0.0994 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043757685 | +| time-step | 57 | +| y_out | -0.0302 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.046227086 | +| time-step | 58 | +| y_out | -0.0437 | +------------------------------------------------------------ +--------------------------------------------------------- +| perf/mse | 0.045824 | +| time-step | 59 | +| y_out | -0.0202 | +--------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.044117607 | +| time-step | 60 | +| y_out | -0.00417 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.042604417 | +| time-step | 61 | +| y_out | 0.0341 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043005396 | +| time-step | 62 | +| y_out | -0.00509 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041401844 | +| time-step | 63 | +| y_out | 0.0483 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040821463 | +| time-step | 64 | +| y_out | -0.0328 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039660804 | +| time-step | 65 | +| y_out | -0.0894 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03841579 | +| time-step | 66 | +| y_out | 0.0557 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03781774 | +| time-step | 67 | +| y_out | 0.114 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035546236 | +| time-step | 68 | +| y_out | -0.0366 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03404691 | +| time-step | 69 | +| y_out | -0.0222 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034336008 | +| time-step | 70 | +| y_out | 0.0804 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03648937 | +| time-step | 71 | +| y_out | -0.0365 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03634174 | +| time-step | 72 | +| y_out | 0.057 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034494564 | +| time-step | 73 | +| y_out | 0.00643 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033293024 | +| time-step | 74 | +| y_out | 0.00552 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03323144 | +| time-step | 75 | +| y_out | 0.0468 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034067787 | +| time-step | 76 | +| y_out | -0.0139 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033351593 | +| time-step | 77 | +| y_out | -0.0398 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032609988 | +| time-step | 78 | +| y_out | 0.0358 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032117996 | +| time-step | 79 | +| y_out | -0.0575 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033656016 | +| time-step | 80 | +| y_out | 0.0211 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03157043 | +| time-step | 81 | +| y_out | -0.0187 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.030397505 | +| time-step | 82 | +| y_out | 0.147 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031375386 | +| time-step | 83 | +| y_out | -0.0468 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0331585 | +| time-step | 84 | +| y_out | 0.0566 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03305576 | +| time-step | 85 | +| y_out | 0.0877 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.032709464 | +| time-step | 86 | +| y_out | 0.0485 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0320201 | +| time-step | 87 | +| y_out | -0.0536 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.032831933 | +| time-step | 88 | +| y_out | 0.0773 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033486065 | +| time-step | 89 | +| y_out | 0.126 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032104082 | +| time-step | 90 | +| y_out | -0.0475 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0311484 | +| time-step | 91 | +| y_out | -0.0314 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031639583 | +| time-step | 92 | +| y_out | -0.0322 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030790463 | +| time-step | 93 | +| y_out | 0.0516 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030732488 | +| time-step | 94 | +| y_out | 0.0592 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03033323 | +| time-step | 95 | +| y_out | 0.00317 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.030574158 | +| time-step | 96 | +| y_out | 0.133 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030977616 | +| time-step | 97 | +| y_out | 0.035 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029380009 | +| time-step | 98 | +| y_out | 0.0651 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028496768 | +| time-step | 99 | +| y_out | 0.00447 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028147172 | +| time-step | 100 | +| y_out | 0.0809 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint 100 +------------------------------------------------------------ +| perf/mse | 0.028606955 | +| time-step | 101 | +| y_out | 0.00757 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027945647 | +| time-step | 102 | +| y_out | -0.06 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028185958 | +| time-step | 103 | +| y_out | -0.0608 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026932105 | +| time-step | 104 | +| y_out | -0.192 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027318224 | +| time-step | 105 | +| y_out | -0.0059 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02615488 | +| time-step | 106 | +| y_out | -0.0368 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02680419 | +| time-step | 107 | +| y_out | -0.0188 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026500195 | +| time-step | 108 | +| y_out | -0.0346 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026046822 | +| time-step | 109 | +| y_out | 0.151 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026122168 | +| time-step | 110 | +| y_out | 0.0502 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026296128 | +| time-step | 111 | +| y_out | -0.0766 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025212338 | +| time-step | 112 | +| y_out | 0.11 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02545307 | +| time-step | 113 | +| y_out | 0.13 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.025583547 | +| time-step | 114 | +| y_out | 0.0302 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024545776 | +| time-step | 115 | +| y_out | -0.0325 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024057273 | +| time-step | 116 | +| y_out | 0.115 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02244277 | +| time-step | 117 | +| y_out | 0.0902 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.022560945 | +| time-step | 118 | +| y_out | 0.0403 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02307056 | +| time-step | 119 | +| y_out | 0.157 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.022394374 | +| time-step | 120 | +| y_out | -0.0801 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021637758 | +| time-step | 121 | +| y_out | -0.0606 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023614278 | +| time-step | 122 | +| y_out | 0.0233 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022924874 | +| time-step | 123 | +| y_out | 0.0966 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022113372 | +| time-step | 124 | +| y_out | -0.0791 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022329802 | +| time-step | 125 | +| y_out | -0.0896 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022729445 | +| time-step | 126 | +| y_out | 0.0265 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023531575 | +| time-step | 127 | +| y_out | -0.00328 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02450201 | +| time-step | 128 | +| y_out | 0.00183 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0238791 | +| time-step | 129 | +| y_out | 0.0177 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.023837082 | +| time-step | 130 | +| y_out | -0.0648 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023029322 | +| time-step | 131 | +| y_out | -0.0334 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021849122 | +| time-step | 132 | +| y_out | 0.0258 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021838527 | +| time-step | 133 | +| y_out | 0.000211 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021615716 | +| time-step | 134 | +| y_out | -0.158 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021900065 | +| time-step | 135 | +| y_out | -0.178 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021565739 | +| time-step | 136 | +| y_out | 0.0959 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021086615 | +| time-step | 137 | +| y_out | 0.078 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019709218 | +| time-step | 138 | +| y_out | 0.00684 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019687956 | +| time-step | 139 | +| y_out | -0.000109 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019365186 | +| time-step | 140 | +| y_out | 0.0968 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019639643 | +| time-step | 141 | +| y_out | 0.042 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018927427 | +| time-step | 142 | +| y_out | -0.00592 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018604886 | +| time-step | 143 | +| y_out | -0.0829 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018862568 | +| time-step | 144 | +| y_out | -0.0535 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018079463 | +| time-step | 145 | +| y_out | 0.0251 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017920785 | +| time-step | 146 | +| y_out | -0.00981 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017506853 | +| time-step | 147 | +| y_out | -0.0881 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017187018 | +| time-step | 148 | +| y_out | 0.00942 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01760382 | +| time-step | 149 | +| y_out | 0.0663 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.017503249 | +| time-step | 150 | +| y_out | 0.0516 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017784001 | +| time-step | 151 | +| y_out | -0.0723 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017888974 | +| time-step | 152 | +| y_out | 0.036 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018136583 | +| time-step | 153 | +| y_out | 0.00191 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018050347 | +| time-step | 154 | +| y_out | -0.0105 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017828379 | +| time-step | 155 | +| y_out | 0.0108 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017954323 | +| time-step | 156 | +| y_out | -0.0918 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018049702 | +| time-step | 157 | +| y_out | 0.0948 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018038373 | +| time-step | 158 | +| y_out | -0.0615 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017828844 | +| time-step | 159 | +| y_out | -0.0162 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018320028 | +| time-step | 160 | +| y_out | -0.0668 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018292453 | +| time-step | 161 | +| y_out | -0.00346 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01878645 | +| time-step | 162 | +| y_out | -0.0552 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.018440742 | +| time-step | 163 | +| y_out | 0.0539 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018220808 | +| time-step | 164 | +| y_out | 0.177 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018326517 | +| time-step | 165 | +| y_out | 0.0654 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018403286 | +| time-step | 166 | +| y_out | 0.0598 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018378321 | +| time-step | 167 | +| y_out | 0.0508 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018518543 | +| time-step | 168 | +| y_out | 0.13 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017999902 | +| time-step | 169 | +| y_out | 0.143 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018018136 | +| time-step | 170 | +| y_out | 0.0729 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017436014 | +| time-step | 171 | +| y_out | -0.0233 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016493583 | +| time-step | 172 | +| y_out | -0.023 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01667047 | +| time-step | 173 | +| y_out | 0.0148 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.016739586 | +| time-step | 174 | +| y_out | 0.0475 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016361233 | +| time-step | 175 | +| y_out | -0.0506 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01617429 | +| time-step | 176 | +| y_out | -0.00511 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015391266 | +| time-step | 177 | +| y_out | 0.0208 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015521039 | +| time-step | 178 | +| y_out | 0.0143 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016098613 | +| time-step | 179 | +| y_out | 0.0399 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015389146 | +| time-step | 180 | +| y_out | 0.102 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01587503 | +| time-step | 181 | +| y_out | 0.109 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015917998 | +| time-step | 182 | +| y_out | -0.109 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015256567 | +| time-step | 183 | +| y_out | 0.0305 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015143004 | +| time-step | 184 | +| y_out | 0.0587 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015454161 | +| time-step | 185 | +| y_out | 0.0947 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015269896 | +| time-step | 186 | +| y_out | 0.129 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015705734 | +| time-step | 187 | +| y_out | 0.0726 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015584086 | +| time-step | 188 | +| y_out | -0.0888 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014840121 | +| time-step | 189 | +| y_out | -0.13 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014894625 | +| time-step | 190 | +| y_out | -0.111 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014608892 | +| time-step | 191 | +| y_out | -0.0322 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014609566 | +| time-step | 192 | +| y_out | 0.0314 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014993951 | +| time-step | 193 | +| y_out | -0.0565 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015000495 | +| time-step | 194 | +| y_out | -0.0133 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014394654 | +| time-step | 195 | +| y_out | -0.0325 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013766756 | +| time-step | 196 | +| y_out | 0.0385 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013613485 | +| time-step | 197 | +| y_out | 0.0137 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013916832 | +| time-step | 198 | +| y_out | 0.0227 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014203673 | +| time-step | 199 | +| y_out | -0.0424 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013562766 | +| time-step | 200 | +| y_out | 0.00657 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint 200 +------------------------------------------------------------ +| perf/mse | 0.013382072 | +| time-step | 201 | +| y_out | -0.0591 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01315968 | +| time-step | 202 | +| y_out | 0.0126 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.012887858 | +| time-step | 203 | +| y_out | 0.0239 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01337339 | +| time-step | 204 | +| y_out | -0.0578 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.013425673 | +| time-step | 205 | +| y_out | 0.0176 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014038166 | +| time-step | 206 | +| y_out | 0.00637 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013868433 | +| time-step | 207 | +| y_out | -0.0728 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01329882 | +| time-step | 208 | +| y_out | 0.0671 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.013069521 | +| time-step | 209 | +| y_out | 0.0452 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0135223 | +| time-step | 210 | +| y_out | 0.15 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01441008 | +| time-step | 211 | +| y_out | -0.0789 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.014295165 | +| time-step | 212 | +| y_out | -0.082 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01453729 | +| time-step | 213 | +| y_out | -0.0197 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.014061342 | +| time-step | 214 | +| y_out | -0.106 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014587182 | +| time-step | 215 | +| y_out | 0.0385 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0144081805 | +| time-step | 216 | +| y_out | -0.0056 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.014319906 | +| time-step | 217 | +| y_out | -0.0673 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014193867 | +| time-step | 218 | +| y_out | -0.0344 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014007312 | +| time-step | 219 | +| y_out | 0.0441 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013912772 | +| time-step | 220 | +| y_out | 0.00299 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012988779 | +| time-step | 221 | +| y_out | -0.0634 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012617411 | +| time-step | 222 | +| y_out | -0.0169 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012815865 | +| time-step | 223 | +| y_out | 0.0799 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012343487 | +| time-step | 224 | +| y_out | 0.00233 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011513001 | +| time-step | 225 | +| y_out | 0.0507 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011502563 | +| time-step | 226 | +| y_out | -0.219 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011924874 | +| time-step | 227 | +| y_out | -0.0398 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012385877 | +| time-step | 228 | +| y_out | 0.041 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012254153 | +| time-step | 229 | +| y_out | -0.00562 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012247067 | +| time-step | 230 | +| y_out | -0.0154 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012499314 | +| time-step | 231 | +| y_out | 0.0487 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01362699 | +| time-step | 232 | +| y_out | -0.0415 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.013595112 | +| time-step | 233 | +| y_out | 0.0409 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014221516 | +| time-step | 234 | +| y_out | 0.0317 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014418885 | +| time-step | 235 | +| y_out | -0.0367 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014496855 | +| time-step | 236 | +| y_out | -0.137 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014122048 | +| time-step | 237 | +| y_out | -0.0409 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0140051795 | +| time-step | 238 | +| y_out | -0.0658 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.014470877 | +| time-step | 239 | +| y_out | -0.0863 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014183926 | +| time-step | 240 | +| y_out | 0.0133 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.013880688 | +| time-step | 241 | +| y_out | 0.0122 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01320968 | +| time-step | 242 | +| y_out | 0.0467 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0130267665 | +| time-step | 243 | +| y_out | -0.0753 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01298934 | +| time-step | 244 | +| y_out | -0.0338 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.012912792 | +| time-step | 245 | +| y_out | -0.0476 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012643425 | +| time-step | 246 | +| y_out | 0.0185 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012662187 | +| time-step | 247 | +| y_out | 0.0885 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012426092 | +| time-step | 248 | +| y_out | -0.0377 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011928229 | +| time-step | 249 | +| y_out | 0.0316 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011977758 | +| time-step | 250 | +| y_out | 0.0757 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012049417 | +| time-step | 251 | +| y_out | 0.102 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.012098239 | +| time-step | 252 | +| y_out | -0.0765 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011614481 | +| time-step | 253 | +| y_out | 0.0093 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011484854 | +| time-step | 254 | +| y_out | 0.0177 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011765086 | +| time-step | 255 | +| y_out | 0.0297 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011991626 | +| time-step | 256 | +| y_out | -0.0132 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0120916385 | +| time-step | 257 | +| y_out | -0.00747 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.012188358 | +| time-step | 258 | +| y_out | -0.00225 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0122345975 | +| time-step | 259 | +| y_out | 0.0485 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.012064756 | +| time-step | 260 | +| y_out | 0.0117 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011673996 | +| time-step | 261 | +| y_out | -0.027 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011549339 | +| time-step | 262 | +| y_out | -0.0442 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011740644 | +| time-step | 263 | +| y_out | 0.0691 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.011079816 | +| time-step | 264 | +| y_out | -0.0513 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010692937 | +| time-step | 265 | +| y_out | -0.103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010324869 | +| time-step | 266 | +| y_out | 0.0518 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00977801 | +| time-step | 267 | +| y_out | 0.11 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009445672 | +| time-step | 268 | +| y_out | -0.0976 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009423474 | +| time-step | 269 | +| y_out | -0.0939 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009913127 | +| time-step | 270 | +| y_out | 0.0384 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010573848 | +| time-step | 271 | +| y_out | 0.0124 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010515319 | +| time-step | 272 | +| y_out | 7.88e-05 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010208281 | +| time-step | 273 | +| y_out | -0.134 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010351671 | +| time-step | 274 | +| y_out | -0.031 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010713759 | +| time-step | 275 | +| y_out | -0.0226 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010491295 | +| time-step | 276 | +| y_out | 0.00212 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010827411 | +| time-step | 277 | +| y_out | -0.0396 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010586554 | +| time-step | 278 | +| y_out | -0.0562 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01052269 | +| time-step | 279 | +| y_out | -0.0824 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010579078 | +| time-step | 280 | +| y_out | -0.0348 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010243152 | +| time-step | 281 | +| y_out | -0.14 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010236494 | +| time-step | 282 | +| y_out | 0.0369 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010239321 | +| time-step | 283 | +| y_out | 0.0211 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010472357 | +| time-step | 284 | +| y_out | 0.169 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010008585 | +| time-step | 285 | +| y_out | -0.0163 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010203567 | +| time-step | 286 | +| y_out | -0.0955 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010348397 | +| time-step | 287 | +| y_out | -0.0134 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010345891 | +| time-step | 288 | +| y_out | 0.0673 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010700961 | +| time-step | 289 | +| y_out | 0.0279 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010388944 | +| time-step | 290 | +| y_out | 0.039 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0106908465 | +| time-step | 291 | +| y_out | -0.0646 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010309842 | +| time-step | 292 | +| y_out | -0.00861 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010474081 | +| time-step | 293 | +| y_out | 0.126 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010539789 | +| time-step | 294 | +| y_out | -0.0214 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010585275 | +| time-step | 295 | +| y_out | 0.0815 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010429607 | +| time-step | 296 | +| y_out | 0.0479 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010243757 | +| time-step | 297 | +| y_out | 0.0108 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010742357 | +| time-step | 298 | +| y_out | -0.0382 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010794876 | +| time-step | 299 | +| y_out | 0.00499 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010691104 | +| time-step | 300 | +| y_out | -0.0847 | +------------------------------------------------------------ +save checkpoint to ../checkpoint/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/checkpoint 300 +------------------------------------------------------------ +| perf/mse | 0.010032582 | +| time-step | 301 | +| y_out | 0.104 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010654226 | +| time-step | 302 | +| y_out | -0.146 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010426847 | +| time-step | 303 | +| y_out | -0.0516 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010203677 | +| time-step | 304 | +| y_out | -0.00144 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0099885 | +| time-step | 305 | +| y_out | -0.0273 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009654961 | +| time-step | 306 | +| y_out | -0.128 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0093472665 | +| time-step | 307 | +| y_out | 0.0159 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009603806 | +| time-step | 308 | +| y_out | 0.0653 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009766078 | +| time-step | 309 | +| y_out | 0.0162 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009610362 | +| time-step | 310 | +| y_out | 0.0457 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009599518 | +| time-step | 311 | +| y_out | 0.0568 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009064664 | +| time-step | 312 | +| y_out | -0.035 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009033918 | +| time-step | 313 | +| y_out | -0.0416 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009256901 | +| time-step | 314 | +| y_out | -0.0177 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009281759 | +| time-step | 315 | +| y_out | 0.0364 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0097410735 | +| time-step | 316 | +| y_out | -0.084 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.010113874 | +| time-step | 317 | +| y_out | 0.0209 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009633789 | +| time-step | 318 | +| y_out | -0.0276 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009057928 | +| time-step | 319 | +| y_out | -0.0024 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009432124 | +| time-step | 320 | +| y_out | 0.103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009712348 | +| time-step | 321 | +| y_out | -0.00902 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009893559 | +| time-step | 322 | +| y_out | 0.0358 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010303207 | +| time-step | 323 | +| y_out | 0.144 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009784044 | +| time-step | 324 | +| y_out | -0.0916 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010053712 | +| time-step | 325 | +| y_out | -0.0956 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00999709 | +| time-step | 326 | +| y_out | -0.0276 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009864601 | +| time-step | 327 | +| y_out | -0.0115 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010140386 | +| time-step | 328 | +| y_out | 0.0272 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010266502 | +| time-step | 329 | +| y_out | 0.0206 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010139539 | +| time-step | 330 | +| y_out | -0.0627 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.010079867 | +| time-step | 331 | +| y_out | -0.0129 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0100426935 | +| time-step | 332 | +| y_out | 0.0306 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0098304525 | +| time-step | 333 | +| y_out | 0.137 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009680955 | +| time-step | 334 | +| y_out | 0.00633 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00940544 | +| time-step | 335 | +| y_out | -0.0228 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.009379968 | +| time-step | 336 | +| y_out | -0.000607 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009440757 | +| time-step | 337 | +| y_out | 0.0379 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.009191423 | +| time-step | 338 | +| y_out | 0.0463 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00887909 | +| time-step | 339 | +| y_out | -0.1 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008715235 | +| time-step | 340 | +| y_out | -0.0349 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.00873994 | +| time-step | 341 | +| y_out | 0.139 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008850156 | +| time-step | 342 | +| y_out | -0.00513 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0087323515 | +| time-step | 343 | +| y_out | 0.172 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.008909301 | +| time-step | 344 | +| y_out | 0.0901 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008655539 | +| time-step | 345 | +| y_out | 0.0471 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008628974 | +| time-step | 346 | +| y_out | 0.123 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008353037 | +| time-step | 347 | +| y_out | -0.0302 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008267693 | +| time-step | 348 | +| y_out | 0.12 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008761351 | +| time-step | 349 | +| y_out | -0.0754 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.008686851 | +| time-step | 350 | +| y_out | -0.05 | +------------------------------------------------------------ diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/progress.csv b/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/progress.csv new file mode 100644 index 0000000..b4ae68e --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/progress.csv @@ -0,0 +1,702 @@ +time-step,y_out,perf/mse +0,0.16240999615398422, +,, +1,0.07641456463160486, +,, +2,-0.0011717288240395193, +,, +3,-0.09012713418421624, +,, +4,-0.012061218454751216, +,, +5,0.15191245448182283, +,, +6,-0.048566227146673684, +,, +7,-0.0013081162506174103, +,, +8,0.07500560284415056, +,, +9,-0.022956678253111172,0.4116845 +,, +10,0.06660997968239282,0.34226435 +,, +11,0.11308196148160113,0.2865979 +,, +12,0.06840011216646363,0.22066227 +,, +13,0.01800599775137217,0.17881593 +,, +14,0.024976372658908126,0.15293343 +,, +15,0.018461401431130123,0.13582486 +,, +16,-0.01501410261941262,0.12673703 +,, +17,0.06755599212415825,0.118425295 +,, +18,-0.019971585166287498,0.1182645 +,, +19,-0.04203208715773933,0.11723097 +,, +20,0.0020152994063752615,0.11428434 +,, +21,-0.016077175147938425,0.110354364 +,, +22,-0.011169867559633392,0.10520983 +,, +23,0.07157224793263184,0.09873715 +,, +24,0.04875229753230614,0.0954464 +,, +25,-0.013226237991990256,0.090510435 +,, +26,0.008634544825672864,0.08614574 +,, +27,0.044358858961731015,0.08214369 +,, +28,-0.04581204958054661,0.07739 +,, +29,-0.06548359883454802,0.072461925 +,, +30,0.02001096314776065,0.07006042 +,, +31,0.00980486070814907,0.067246854 +,, +32,0.0828596115359481,0.065904096 +,, +33,-0.13458109908006685,0.06531572 +,, +34,0.11535667444324081,0.061929334 +,, +35,-0.10291404142438783,0.060432475 +,, +36,0.004494428363629843,0.057160437 +,, +37,0.12884621761570197,0.05663547 +,, +38,-0.013382023832540384,0.05235964 +,, +39,0.0050273293669035185,0.051079948 +,, +40,-0.04260475431574122,0.05068625 +,, +41,-0.006983668716958595,0.04840982 +,, +42,-0.043439135871932266,0.04626112 +,, +43,-0.034347496111465654,0.04484333 +,, +44,0.09160496522496815,0.046863087 +,, +45,-0.018642889852113896,0.046616856 +,, +46,-0.053921264724906465,0.047773868 +,, +47,0.04428160342142992,0.04544707 +,, +48,0.06687881493531449,0.044461053 +,, +49,0.09832220469501696,0.044983987 +,, +50,0.0020377153022540784,0.04420654 +,, +51,0.030024046055545216,0.045076367 +,, +52,-0.003560809313594822,0.045095697 +,, +53,-0.028752017812056593,0.046461117 +,, +54,-0.017544264817461762,0.04372434 +,, +55,-0.12818225167456726,0.04359477 +,, +56,-0.09943109716961919,0.043051086 +,, +57,-0.03015853874993539,0.043757685 +,, +58,-0.043659483640211584,0.046227086 +,, +59,-0.020180478674383003,0.045824 +,, +60,-0.00417215039349321,0.044117607 +,, +61,0.03405750422793356,0.042604417 +,, +62,-0.0050933857095513055,0.043005396 +,, +63,0.048288540736857524,0.041401844 +,, +64,-0.03283309884923945,0.040821463 +,, +65,-0.0893672378837717,0.039660804 +,, +66,0.055695105310126516,0.03841579 +,, +67,0.1144154849841959,0.03781774 +,, +68,-0.03662838931039447,0.035546236 +,, +69,-0.022218736039447743,0.03404691 +,, +70,0.08037786029972512,0.034336008 +,, +71,-0.036474710157650816,0.03648937 +,, +72,0.05701813551072386,0.03634174 +,, +73,0.006430428799160358,0.034494564 +,, +74,0.005518694747225869,0.033293024 +,, +75,0.046827532118112206,0.03323144 +,, +76,-0.013858532843361984,0.034067787 +,, +77,-0.03979682844963582,0.033351593 +,, +78,0.035773995435925784,0.032609988 +,, +79,-0.05745185070196354,0.032117996 +,, +80,0.021145357583119653,0.033656016 +,, +81,-0.018741959346237638,0.03157043 +,, +82,0.14653389102255235,0.030397505 +,, +83,-0.046750166579708874,0.031375386 +,, +84,0.05658013606908728,0.0331585 +,, +85,0.08768802348811955,0.03305576 +,, +86,0.04850889007813984,0.032709464 +,, +87,-0.05358354350900623,0.0320201 +,, +88,0.07727937431452778,0.032831933 +,, +89,0.12567823716684484,0.033486065 +,, +90,-0.04745032302526806,0.032104082 +,, +91,-0.031379891309265634,0.0311484 +,, +92,-0.03217858674056022,0.031639583 +,, +93,0.05156058450781635,0.030790463 +,, +94,0.05916383370198352,0.030732488 +,, +95,0.0031709151598605656,0.03033323 +,, +96,0.13327181735159735,0.030574158 +,, +97,0.03502987368016504,0.030977616 +,, +98,0.0651227502605749,0.029380009 +,, +99,0.004470195458455027,0.028496768 +,, +100,0.08092234936167289,0.028147172 +,, +101,0.007574734437483348,0.028606955 +,, +102,-0.06001100318417074,0.027945647 +,, +103,-0.06083882144488263,0.028185958 +,, +104,-0.19201708128044442,0.026932105 +,, +105,-0.00589771850003816,0.027318224 +,, +106,-0.03677512501898109,0.02615488 +,, +107,-0.018781277985125362,0.02680419 +,, +108,-0.03461706174637285,0.026500195 +,, +109,0.1507684407078,0.026046822 +,, +110,0.05019039740621027,0.026122168 +,, +111,-0.07656035836433585,0.026296128 +,, +112,0.10980404615921482,0.025212338 +,, +113,0.1297424117611227,0.02545307 +,, +114,0.030243963684215662,0.025583547 +,, +115,-0.03247930662141137,0.024545776 +,, +116,0.11493216883539217,0.024057273 +,, +117,0.09016540820699691,0.02244277 +,, +118,0.04034859443169436,0.022560945 +,, +119,0.15748402012366203,0.02307056 +,, +120,-0.08011225798124773,0.022394374 +,, +121,-0.060557160630072035,0.021637758 +,, +122,0.02327329221306411,0.023614278 +,, +123,0.09659832141926308,0.022924874 +,, +124,-0.07913491340626208,0.022113372 +,, +125,-0.08962200936239421,0.022329802 +,, +126,0.026486328572310328,0.022729445 +,, +127,-0.0032781799463922814,0.023531575 +,, +128,0.00183282967630948,0.02450201 +,, +129,0.017651417946548807,0.0238791 +,, +130,-0.06479940705504686,0.023837082 +,, +131,-0.03337878838413004,0.023029322 +,, +132,0.025835408017960346,0.021849122 +,, +133,0.00021105547868253277,0.021838527 +,, +134,-0.15799698372354387,0.021615716 +,, +135,-0.17807672961247836,0.021900065 +,, +136,0.0959072586966325,0.021565739 +,, +137,0.07804765550997518,0.021086615 +,, +138,0.0068350720941908055,0.019709218 +,, +139,-0.00010939898325541472,0.019687956 +,, +140,0.09680386143293672,0.019365186 +,, +141,0.041966490315175145,0.019639643 +,, +142,-0.0059175625370071795,0.018927427 +,, +143,-0.0829398547519111,0.018604886 +,, +144,-0.053501754248370004,0.018862568 +,, +145,0.02508104343504669,0.018079463 +,, +146,-0.009805052216072647,0.017920785 +,, +147,-0.08811541699359463,0.017506853 +,, +148,0.00941794501770453,0.017187018 +,, +149,0.06632928274622119,0.01760382 +,, +150,0.051649628168262976,0.017503249 +,, +151,-0.07227613153573365,0.017784001 +,, +152,0.036040500272878355,0.017888974 +,, +153,0.0019050399096572877,0.018136583 +,, +154,-0.01054899847065896,0.018050347 +,, +155,0.010788890463461837,0.017828379 +,, +156,-0.09178865131601975,0.017954323 +,, +157,0.09478501319191532,0.018049702 +,, +158,-0.06146746326068888,0.018038373 +,, +159,-0.016155479928053218,0.017828844 +,, +160,-0.06676568628199753,0.018320028 +,, +161,-0.0034553600181435346,0.018292453 +,, +162,-0.05519654658114269,0.01878645 +,, +163,0.05391024146457892,0.018440742 +,, +164,0.17669944096098456,0.018220808 +,, +165,0.06543604602363766,0.018326517 +,, +166,0.05980803602262899,0.018403286 +,, +167,0.050790915597082494,0.018378321 +,, +168,0.13023515564995175,0.018518543 +,, +169,0.14251680762245753,0.017999902 +,, +170,0.072878808519883,0.018018136 +,, +171,-0.023300404078895356,0.017436014 +,, +172,-0.022975475306669237,0.016493583 +,, +173,0.014771216670010946,0.01667047 +,, +174,0.04754520964430747,0.016739586 +,, +175,-0.05062402216052467,0.016361233 +,, +176,-0.005106401403202284,0.01617429 +,, +177,0.020804507935634715,0.015391266 +,, +178,0.014291237913974617,0.015521039 +,, +179,0.039857029833344035,0.016098613 +,, +180,0.10177892037475345,0.015389146 +,, +181,0.10860254493431334,0.01587503 +,, +182,-0.10874048488814121,0.015917998 +,, +183,0.030478681420756475,0.015256567 +,, +184,0.05874269283530072,0.015143004 +,, +185,0.09466731239266996,0.015454161 +,, +186,0.12865481911085086,0.015269896 +,, +187,0.07256584240843458,0.015705734 +,, +188,-0.08876979531479981,0.015584086 +,, +189,-0.13007857922176036,0.014840121 +,, +190,-0.11129971855908966,0.014894625 +,, +191,-0.03217887581547991,0.014608892 +,, +192,0.03137005262663008,0.014609566 +,, +193,-0.05646138138589208,0.014993951 +,, +194,-0.013343783115025418,0.015000495 +,, +195,-0.03245599191210819,0.014394654 +,, +196,0.038536952149493764,0.013766756 +,, +197,0.013689057094846413,0.013613485 +,, +198,0.022666321420984153,0.013916832 +,, +199,-0.042431169071688785,0.014203673 +,, +200,0.00656703973146526,0.013562766 +,, +201,-0.059107122047658875,0.013382072 +,, +202,0.012592438515680204,0.01315968 +,, +203,0.023923722271947234,0.012887858 +,, +204,-0.05777150410422024,0.01337339 +,, +205,0.017587592603098508,0.013425673 +,, +206,0.006368093506374483,0.014038166 +,, +207,-0.07281224582363607,0.013868433 +,, +208,0.06707523975639398,0.01329882 +,, +209,0.04521205242319466,0.013069521 +,, +210,0.15006941613331243,0.0135223 +,, +211,-0.07889502864144268,0.01441008 +,, +212,-0.08201391137760793,0.014295165 +,, +213,-0.019705128977845213,0.01453729 +,, +214,-0.10554585374602898,0.014061342 +,, +215,0.038525693620566154,0.014587182 +,, +216,-0.0056026164788197524,0.0144081805 +,, +217,-0.06727811480178619,0.014319906 +,, +218,-0.034387348447003474,0.014193867 +,, +219,0.044131498483435436,0.014007312 +,, +220,0.0029881544710214716,0.013912772 +,, +221,-0.06341800433812958,0.012988779 +,, +222,-0.016924612483458352,0.012617411 +,, +223,0.07993174215450256,0.012815865 +,, +224,0.00233182643359571,0.012343487 +,, +225,0.05066265855599567,0.011513001 +,, +226,-0.21892965459865593,0.011502563 +,, +227,-0.03976524188804938,0.011924874 +,, +228,0.04101772836990002,0.012385877 +,, +229,-0.0056197241466754665,0.012254153 +,, +230,-0.015371788339466572,0.012247067 +,, +231,0.0487195762580705,0.012499314 +,, +232,-0.04154933980796101,0.01362699 +,, +233,0.04088900241865691,0.013595112 +,, +234,0.031652751633956366,0.014221516 +,, +235,-0.036721772139796584,0.014418885 +,, +236,-0.13741143006570306,0.014496855 +,, +237,-0.04093556904418427,0.014122048 +,, +238,-0.0658348286322214,0.0140051795 +,, +239,-0.08632774675938978,0.014470877 +,, +240,0.013261666763647512,0.014183926 +,, +241,0.01220509582082624,0.013880688 +,, +242,0.046658572920174515,0.01320968 +,, +243,-0.07531002001004543,0.0130267665 +,, +244,-0.033775563392026114,0.01298934 +,, +245,-0.04763734720932926,0.012912792 +,, +246,0.018530444390605038,0.012643425 +,, +247,0.08852202783959945,0.012662187 +,, +248,-0.0376946223800184,0.012426092 +,, +249,0.031644365174101664,0.011928229 +,, +250,0.07567890018271439,0.011977758 +,, +251,0.10243631958488111,0.012049417 +,, +252,-0.07646693922778133,0.012098239 +,, +253,0.009297972014334084,0.011614481 +,, +254,0.01773082631034724,0.011484854 +,, +255,0.029742401325371266,0.011765086 +,, +256,-0.013209507102489686,0.011991626 +,, +257,-0.0074721326970845076,0.0120916385 +,, +258,-0.002250253720972553,0.012188358 +,, +259,0.04853799387693169,0.0122345975 +,, +260,0.011726360182135145,0.012064756 +,, +261,-0.026990503839779332,0.011673996 +,, +262,-0.04416668824149142,0.011549339 +,, +263,0.06914204390264797,0.011740644 +,, +264,-0.051303530090995274,0.011079816 +,, +265,-0.10283228303900964,0.010692937 +,, +266,0.051849662145616135,0.010324869 +,, +267,0.11025736032782463,0.00977801 +,, +268,-0.09756238894529967,0.009445672 +,, +269,-0.0939027719800404,0.009423474 +,, +270,0.03838674492847549,0.009913127 +,, +271,0.012401850275933893,0.010573848 +,, +272,7.877726262849397e-05,0.010515319 +,, +273,-0.13443198020903444,0.010208281 +,, +274,-0.03099254273963443,0.010351671 +,, +275,-0.022627850381493328,0.010713759 +,, +276,0.0021187803439371026,0.010491295 +,, +277,-0.03962151379160125,0.010827411 +,, +278,-0.05621131345031722,0.010586554 +,, +279,-0.08239987699482498,0.01052269 +,, +280,-0.03484050564824988,0.010579078 +,, +281,-0.1401940865629403,0.010243152 +,, +282,0.03685471035520049,0.010236494 +,, +283,0.021071481189237504,0.010239321 +,, +284,0.16937202802379625,0.010472357 +,, +285,-0.016321847507938775,0.010008585 +,, +286,-0.09553927570122914,0.010203567 +,, +287,-0.013438394907315522,0.010348397 +,, +288,0.06726212068037377,0.010345891 +,, +289,0.027936775877943,0.010700961 +,, +290,0.038984069880555375,0.010388944 +,, +291,-0.06463824560064839,0.0106908465 +,, +292,-0.008610564649744974,0.010309842 +,, +293,0.12621578953054718,0.010474081 +,, +294,-0.021393833061541995,0.010539789 +,, +295,0.08146889193548608,0.010585275 +,, +296,0.0478970347873498,0.010429607 +,, +297,0.010752581743455794,0.010243757 +,, +298,-0.03815772021925011,0.010742357 +,, +299,0.004990354306814819,0.010794876 +,, +300,-0.08473962678145512,0.010691104 +,, +301,0.10433388184216794,0.010032582 +,, +302,-0.14614489996474955,0.010654226 +,, +303,-0.05156463982429901,0.010426847 +,, +304,-0.0014383435324377622,0.010203677 +,, +305,-0.02732087598979004,0.0099885 +,, +306,-0.12757840988013291,0.009654961 +,, +307,0.015937373940890467,0.0093472665 +,, +308,0.06534839954218637,0.009603806 +,, +309,0.016211039656219263,0.009766078 +,, +310,0.04572283120209093,0.009610362 +,, +311,0.056834933143540066,0.009599518 +,, +312,-0.03496677021224072,0.009064664 +,, +313,-0.041586408304630146,0.009033918 +,, +314,-0.017720227563746443,0.009256901 +,, +315,0.03640086804345319,0.009281759 +,, +316,-0.08400690799576654,0.0097410735 +,, +317,0.020856315603777972,0.010113874 +,, +318,-0.027628574410856987,0.009633789 +,, +319,-0.002404621772761366,0.009057928 +,, +320,0.10283979753751979,0.009432124 +,, +321,-0.009019732656361343,0.009712348 +,, +322,0.03576184089906553,0.009893559 +,, +323,0.1444609697684611,0.010303207 +,, +324,-0.09160248751892301,0.009784044 +,, +325,-0.09559492827917435,0.010053712 +,, +326,-0.027601520026826643,0.00999709 +,, +327,-0.011476056067246825,0.009864601 +,, +328,0.02720820596975433,0.010140386 +,, +329,0.02059077165861603,0.010266502 +,, +330,-0.06272159637717752,0.010139539 +,, +331,-0.012871135349260734,0.010079867 +,, +332,0.030559145861990628,0.0100426935 +,, +333,0.13711738939888474,0.0098304525 +,, +334,0.0063284109309972615,0.009680955 +,, +335,-0.02276096289025581,0.00940544 +,, +336,-0.0006067204662103531,0.009379968 +,, +337,0.03788087879232267,0.009440757 +,, +338,0.046257936782707405,0.009191423 +,, +339,-0.10019067882284059,0.00887909 +,, +340,-0.034859025436064006,0.008715235 +,, +341,0.13899958883926442,0.00873994 +,, +342,-0.005126743865910895,0.008850156 +,, +343,0.17174817075536203,0.0087323515 +,, +344,0.09014963380273697,0.008909301 +,, +345,0.04708437080883376,0.008655539 +,, +346,0.12320309836573373,0.008628974 +,, +347,-0.03016034228098646,0.008353037 +,, +348,0.11953185695619717,0.008267693 +,, +349,-0.0753973358824013,0.008761351 +,, +350,-0.04995320669467419,0.008686851 diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/tb/events/events.out.tfevents.1646142685.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/tb/events/events.out.tfevents.1646142685.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..eda57c5 Binary files /dev/null and b/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/tb/events/events.out.tfevents.1646142685.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/warn.txt b/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/warn.txt new file mode 100644 index 0000000..f7e0929 --- /dev/null +++ b/test/test_data_root/log/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/warn.txt @@ -0,0 +1,8 @@ +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None +[WARN] 0 : meet invalid loader config when use it +[WARN] 0 : load_date True +[WARN] 0 : task_name +[WARN] 0 : root None diff --git a/test/test_data_root/log/demo_task/simple_res.pdf b/test/test_data_root/log/demo_task/simple_res.pdf new file mode 100644 index 0000000..1700b19 Binary files /dev/null and b/test/test_data_root/log/demo_task/simple_res.pdf differ diff --git a/test/test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/backup.txt b/test/test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/backup.txt new file mode 100644 index 0000000..7cb516c --- /dev/null +++ b/test/test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: hp1, value: 1 +[BACKUP] 0 : key: hp2, value: 2 diff --git a/test/test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/log.txt b/test/test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/log.txt new file mode 100644 index 0000000..9532f07 --- /dev/null +++ b/test/test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/log.txt @@ -0,0 +1,7 @@ +Logging to ../../test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/ +log dir: ../../test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/ +pkl_file: ../../test_data_root/archive_tester/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/ +results_dir: ../../test_data_root/results/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/ +[BACKUP] 0 : key: hp1, value: 1 +[BACKUP] 0 : key: hp2, value: 2 diff --git a/test/test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/progress.csv b/test/test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/tb/events/events.out.tfevents.1655790856.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/tb/events/events.out.tfevents.1655790856.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..88aa584 Binary files /dev/null and b/test/test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/tb/events/events.out.tfevents.1655790856.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/warn.txt b/test/test_data_root/log/test_demo_task/2022/06/21/13-54-13-775042 172.16.0.65 &hp1=1/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/backup.txt new file mode 100644 index 0000000..7cb516c --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: hp1, value: 1 +[BACKUP] 0 : key: hp2, value: 2 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/log.txt new file mode 100644 index 0000000..3246249 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/log.txt @@ -0,0 +1,7 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/ +[BACKUP] 0 : key: hp1, value: 1 +[BACKUP] 0 : key: hp2, value: 2 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/tb/events/events.out.tfevents.1655790880.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/tb/events/events.out.tfevents.1655790880.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..272020b Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/tb/events/events.out.tfevents.1655790880.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/21/13-54-38-241150 172.16.0.65 &hp1=1/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/backup.txt new file mode 100644 index 0000000..b833532 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 2 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/log.txt new file mode 100644 index 0000000..e2ddb28 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/log.txt @@ -0,0 +1,39 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/ +[BACKUP] 0 : key: input_size, value: 2 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.0614 | +--------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/checkpoint 0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/progress.csv new file mode 100644 index 0000000..689dd84 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/progress.csv @@ -0,0 +1,2 @@ +time-step,y_out +0,0.06142289050171087 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/tb/events/events.out.tfevents.1655791870.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/tb/events/events.out.tfevents.1655791870.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..d2e86d7 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/tb/events/events.out.tfevents.1655791870.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-06-996700 172.16.0.65 &input_size=2/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..ef98249 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,4389 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +--------------------------------------------------------- +| time-step | 0 | +| y_out | -0.0582 | +--------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint 0 +--------------------------------------------------------- +| time-step | 1 | +| y_out | -0.0495 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 2 | +| y_out | 0.0972 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 3 | +| y_out | -0.0577 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 4 | +| y_out | 0.0455 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 5 | +| y_out | 0.0247 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 6 | +| y_out | 0.117 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 7 | +| y_out | -0.0126 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 8 | +| y_out | 0.0674 | +--------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.49030668 | +| time-step | 9 | +| y_out | 0.0892 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.46725398 | +| time-step | 10 | +| y_out | -0.11 | +----------------------------------------------------------- +--------------------------------------------------------- +| perf/mse | 0.44722 | +| time-step | 11 | +| y_out | -0.077 | +--------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.4356205 | +| time-step | 12 | +| y_out | 0.0203 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.40128922 | +| time-step | 13 | +| y_out | 0.0141 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.40109587 | +| time-step | 14 | +| y_out | -0.0509 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.39908072 | +| time-step | 15 | +| y_out | 0.0649 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.40538663 | +| time-step | 16 | +| y_out | 0.022 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.4022921 | +| time-step | 17 | +| y_out | -0.0818 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.40471846 | +| time-step | 18 | +| y_out | 0.0104 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.41447744 | +| time-step | 19 | +| y_out | -0.0647 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.4064266 | +| time-step | 20 | +| y_out | 0.0316 | +---------------------------------------------------------- +--------------------------------------------------------- +| perf/mse | 0.394135 | +| time-step | 21 | +| y_out | 0.0136 | +--------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.38421816 | +| time-step | 22 | +| y_out | 0.059 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.38059896 | +| time-step | 23 | +| y_out | 0.0729 | +----------------------------------------------------------- +--------------------------------------------------------- +| perf/mse | 0.375098 | +| time-step | 24 | +| y_out | 0.0297 | +--------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.35202464 | +| time-step | 25 | +| y_out | 0.0394 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.3352399 | +| time-step | 26 | +| y_out | 0.0772 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.32589594 | +| time-step | 27 | +| y_out | -0.0658 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.30648553 | +| time-step | 28 | +| y_out | 0.097 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2859203 | +| time-step | 29 | +| y_out | -0.0551 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.27834338 | +| time-step | 30 | +| y_out | 0.0923 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.27918825 | +| time-step | 31 | +| y_out | -0.00342 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2702306 | +| time-step | 32 | +| y_out | -0.0612 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.27846462 | +| time-step | 33 | +| y_out | -0.0157 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.27542943 | +| time-step | 34 | +| y_out | -0.0179 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2760417 | +| time-step | 35 | +| y_out | -0.0573 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.27595618 | +| time-step | 36 | +| y_out | 0.00378 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2824224 | +| time-step | 37 | +| y_out | -0.0861 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.27706552 | +| time-step | 38 | +| y_out | -0.034 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2727928 | +| time-step | 39 | +| y_out | -0.0288 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26850787 | +| time-step | 40 | +| y_out | -0.143 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2573467 | +| time-step | 41 | +| y_out | 0.0305 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25539646 | +| time-step | 42 | +| y_out | -0.0647 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22965717 | +| time-step | 43 | +| y_out | -0.194 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22312912 | +| time-step | 44 | +| y_out | -0.0517 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21917558 | +| time-step | 45 | +| y_out | -0.00503 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21286908 | +| time-step | 46 | +| y_out | 0.0128 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1969879 | +| time-step | 47 | +| y_out | -0.147 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19592378 | +| time-step | 48 | +| y_out | -0.0634 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19245319 | +| time-step | 49 | +| y_out | -0.00773 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1892899 | +| time-step | 50 | +| y_out | 0.0101 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19675265 | +| time-step | 51 | +| y_out | 0.0557 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19165997 | +| time-step | 52 | +| y_out | -0.0189 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1926342 | +| time-step | 53 | +| y_out | -0.0247 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18765154 | +| time-step | 54 | +| y_out | 0.00169 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18326017 | +| time-step | 55 | +| y_out | -0.0675 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1734732 | +| time-step | 56 | +| y_out | -0.0721 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17428835 | +| time-step | 57 | +| y_out | 0.0686 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17213002 | +| time-step | 58 | +| y_out | -0.0341 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16819453 | +| time-step | 59 | +| y_out | 0.0559 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16590077 | +| time-step | 60 | +| y_out | -0.0121 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15662189 | +| time-step | 61 | +| y_out | 0.0448 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15810056 | +| time-step | 62 | +| y_out | 0.00379 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15849526 | +| time-step | 63 | +| y_out | -0.0378 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15460253 | +| time-step | 64 | +| y_out | 0.0582 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1517772 | +| time-step | 65 | +| y_out | 0.0772 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15379944 | +| time-step | 66 | +| y_out | -0.037 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14935191 | +| time-step | 67 | +| y_out | 0.165 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14908016 | +| time-step | 68 | +| y_out | -0.00984 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15192051 | +| time-step | 69 | +| y_out | -0.0479 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14853875 | +| time-step | 70 | +| y_out | 0.031 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14685132 | +| time-step | 71 | +| y_out | -0.0218 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13775438 | +| time-step | 72 | +| y_out | -0.0187 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13657515 | +| time-step | 73 | +| y_out | -0.0166 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14103243 | +| time-step | 74 | +| y_out | -0.0126 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13629177 | +| time-step | 75 | +| y_out | -0.0283 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13484542 | +| time-step | 76 | +| y_out | -0.0167 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13554354 | +| time-step | 77 | +| y_out | -0.154 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13096239 | +| time-step | 78 | +| y_out | 0.0786 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12819044 | +| time-step | 79 | +| y_out | 0.0038 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12955162 | +| time-step | 80 | +| y_out | 0.0197 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12832956 | +| time-step | 81 | +| y_out | 0.0901 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13284071 | +| time-step | 82 | +| y_out | -0.0529 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12788132 | +| time-step | 83 | +| y_out | -0.0814 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12010696 | +| time-step | 84 | +| y_out | 2.45e-05 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12400609 | +| time-step | 85 | +| y_out | -0.0042 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12114714 | +| time-step | 86 | +| y_out | 0.0576 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12049351 | +| time-step | 87 | +| y_out | -0.0692 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.117591545 | +| time-step | 88 | +| y_out | 0.0132 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11618533 | +| time-step | 89 | +| y_out | 0.0526 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11202963 | +| time-step | 90 | +| y_out | 0.0595 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10749795 | +| time-step | 91 | +| y_out | 0.0674 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10089743 | +| time-step | 92 | +| y_out | 0.0401 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10151825 | +| time-step | 93 | +| y_out | 0.000541 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10420946 | +| time-step | 94 | +| y_out | -0.0644 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10103506 | +| time-step | 95 | +| y_out | -0.0612 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.097031645 | +| time-step | 96 | +| y_out | -0.0377 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09652333 | +| time-step | 97 | +| y_out | -0.0137 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09672431 | +| time-step | 98 | +| y_out | 0.0254 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09413188 | +| time-step | 99 | +| y_out | -0.0012 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09722036 | +| time-step | 100 | +| y_out | 0.0312 | +----------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint 100 +----------------------------------------------------------- +| perf/mse | 0.09866486 | +| time-step | 101 | +| y_out | 0.0561 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.098303795 | +| time-step | 102 | +| y_out | -0.00522 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09725959 | +| time-step | 103 | +| y_out | -0.0901 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.098537505 | +| time-step | 104 | +| y_out | 0.0605 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09504741 | +| time-step | 105 | +| y_out | 0.1 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.098326646 | +| time-step | 106 | +| y_out | -0.0117 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09678003 | +| time-step | 107 | +| y_out | 0.0191 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09677333 | +| time-step | 108 | +| y_out | -0.0169 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09431489 | +| time-step | 109 | +| y_out | -0.108 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09145598 | +| time-step | 110 | +| y_out | -0.00448 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08987512 | +| time-step | 111 | +| y_out | -0.0545 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09513543 | +| time-step | 112 | +| y_out | 0.0405 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.093599126 | +| time-step | 113 | +| y_out | 0.0402 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08917842 | +| time-step | 114 | +| y_out | 0.0636 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09043958 | +| time-step | 115 | +| y_out | -0.00276 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08764857 | +| time-step | 116 | +| y_out | -0.0389 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08793067 | +| time-step | 117 | +| y_out | 0.0292 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08886134 | +| time-step | 118 | +| y_out | -0.0553 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08878454 | +| time-step | 119 | +| y_out | 0.0628 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09203519 | +| time-step | 120 | +| y_out | 0.00969 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09488541 | +| time-step | 121 | +| y_out | 0.0494 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0933571 | +| time-step | 122 | +| y_out | 0.0661 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.091652706 | +| time-step | 123 | +| y_out | -0.0185 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09163402 | +| time-step | 124 | +| y_out | 0.00669 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09070408 | +| time-step | 125 | +| y_out | 0.0537 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.089621276 | +| time-step | 126 | +| y_out | 0.0278 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08641612 | +| time-step | 127 | +| y_out | -0.102 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.082999505 | +| time-step | 128 | +| y_out | -0.0432 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08350495 | +| time-step | 129 | +| y_out | 0.0329 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.081158616 | +| time-step | 130 | +| y_out | -0.0468 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.076140806 | +| time-step | 131 | +| y_out | -0.0696 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07255548 | +| time-step | 132 | +| y_out | 0.0575 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07368334 | +| time-step | 133 | +| y_out | -0.0172 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.072576866 | +| time-step | 134 | +| y_out | 0.0724 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07336119 | +| time-step | 135 | +| y_out | 0.0568 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07360689 | +| time-step | 136 | +| y_out | 0.00706 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.074170314 | +| time-step | 137 | +| y_out | 0.0416 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07597777 | +| time-step | 138 | +| y_out | -0.0596 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.075255744 | +| time-step | 139 | +| y_out | -0.0354 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.071989335 | +| time-step | 140 | +| y_out | -0.000725 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07520542 | +| time-step | 141 | +| y_out | -0.0416 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0753596 | +| time-step | 142 | +| y_out | 0.053 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07662775 | +| time-step | 143 | +| y_out | -0.0975 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.077184625 | +| time-step | 144 | +| y_out | -0.00893 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07795949 | +| time-step | 145 | +| y_out | -0.019 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07859997 | +| time-step | 146 | +| y_out | 0.00495 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07880659 | +| time-step | 147 | +| y_out | -0.0374 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07766412 | +| time-step | 148 | +| y_out | 0.0841 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07902576 | +| time-step | 149 | +| y_out | -0.0843 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.079748586 | +| time-step | 150 | +| y_out | -0.102 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07685062 | +| time-step | 151 | +| y_out | -0.0854 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07658921 | +| time-step | 152 | +| y_out | -0.0528 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07520914 | +| time-step | 153 | +| y_out | -0.0215 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07570366 | +| time-step | 154 | +| y_out | -0.0467 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07410152 | +| time-step | 155 | +| y_out | 0.00465 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.074178524 | +| time-step | 156 | +| y_out | -0.0319 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07349205 | +| time-step | 157 | +| y_out | -0.127 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.072328135 | +| time-step | 158 | +| y_out | 0.0556 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07030443 | +| time-step | 159 | +| y_out | -0.0276 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06974628 | +| time-step | 160 | +| y_out | -0.0121 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07045316 | +| time-step | 161 | +| y_out | 0.00422 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.070341855 | +| time-step | 162 | +| y_out | 0.0545 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0749472 | +| time-step | 163 | +| y_out | 0.00851 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07200081 | +| time-step | 164 | +| y_out | -0.0752 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.072234765 | +| time-step | 165 | +| y_out | 0.00151 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06968574 | +| time-step | 166 | +| y_out | -0.00486 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06747711 | +| time-step | 167 | +| y_out | -0.0276 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.068632185 | +| time-step | 168 | +| y_out | 0.0412 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07016902 | +| time-step | 169 | +| y_out | -0.169 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06920503 | +| time-step | 170 | +| y_out | 0.00116 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06865578 | +| time-step | 171 | +| y_out | 0.0953 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.068018794 | +| time-step | 172 | +| y_out | 0.00361 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.060454153 | +| time-step | 173 | +| y_out | -0.0556 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.060338758 | +| time-step | 174 | +| y_out | -0.0851 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05821512 | +| time-step | 175 | +| y_out | 0.0218 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.061771907 | +| time-step | 176 | +| y_out | 0.00628 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.061037354 | +| time-step | 177 | +| y_out | -0.0296 | +------------------------------------------------------------ +--------------------------------------------------------- +| perf/mse | 0.05939 | +| time-step | 178 | +| y_out | 0.0337 | +--------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.058682185 | +| time-step | 179 | +| y_out | -0.0738 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.061186206 | +| time-step | 180 | +| y_out | 0.0195 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06249378 | +| time-step | 181 | +| y_out | -0.0391 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.062954776 | +| time-step | 182 | +| y_out | 0.008 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.063530326 | +| time-step | 183 | +| y_out | 0.023 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06510935 | +| time-step | 184 | +| y_out | -0.0162 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.066021495 | +| time-step | 185 | +| y_out | -0.0352 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06407362 | +| time-step | 186 | +| y_out | 0.0266 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06525252 | +| time-step | 187 | +| y_out | 0.0358 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06584628 | +| time-step | 188 | +| y_out | -0.0134 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06453097 | +| time-step | 189 | +| y_out | -0.0585 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06360158 | +| time-step | 190 | +| y_out | -0.153 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06385478 | +| time-step | 191 | +| y_out | 0.025 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06277536 | +| time-step | 192 | +| y_out | -0.036 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06564377 | +| time-step | 193 | +| y_out | 0.0823 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0660685 | +| time-step | 194 | +| y_out | 0.0954 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06663888 | +| time-step | 195 | +| y_out | -0.0426 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06857444 | +| time-step | 196 | +| y_out | -0.049 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06884728 | +| time-step | 197 | +| y_out | -0.0081 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06818736 | +| time-step | 198 | +| y_out | 0.00521 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06983349 | +| time-step | 199 | +| y_out | -0.0341 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06811339 | +| time-step | 200 | +| y_out | 0.00414 | +----------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint 200 +----------------------------------------------------------- +| perf/mse | 0.06616482 | +| time-step | 201 | +| y_out | -0.166 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06590567 | +| time-step | 202 | +| y_out | 0.0119 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06592958 | +| time-step | 203 | +| y_out | 0.0667 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06354184 | +| time-step | 204 | +| y_out | -0.0532 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06171415 | +| time-step | 205 | +| y_out | 0.0726 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.061320703 | +| time-step | 206 | +| y_out | 0.0626 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.059749436 | +| time-step | 207 | +| y_out | -0.0141 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.059748657 | +| time-step | 208 | +| y_out | -0.0524 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05967269 | +| time-step | 209 | +| y_out | 0.0352 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0627072 | +| time-step | 210 | +| y_out | 0.0348 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06190454 | +| time-step | 211 | +| y_out | -0.0506 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06425017 | +| time-step | 212 | +| y_out | 0.0993 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06392668 | +| time-step | 213 | +| y_out | 0.217 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06618197 | +| time-step | 214 | +| y_out | -0.000663 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06672396 | +| time-step | 215 | +| y_out | 0.0193 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06532984 | +| time-step | 216 | +| y_out | -0.00299 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.066146486 | +| time-step | 217 | +| y_out | 0.00902 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.064975806 | +| time-step | 218 | +| y_out | 0.0214 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0630003 | +| time-step | 219 | +| y_out | -0.137 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.060314745 | +| time-step | 220 | +| y_out | -0.126 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0624517 | +| time-step | 221 | +| y_out | -0.0072 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.060216933 | +| time-step | 222 | +| y_out | -0.0461 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05960244 | +| time-step | 223 | +| y_out | 0.0305 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05884903 | +| time-step | 224 | +| y_out | 0.116 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05948279 | +| time-step | 225 | +| y_out | 0.088 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.059296004 | +| time-step | 226 | +| y_out | 0.125 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.057963468 | +| time-step | 227 | +| y_out | 0.00525 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05948673 | +| time-step | 228 | +| y_out | -0.12 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06030799 | +| time-step | 229 | +| y_out | 0.0231 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06217482 | +| time-step | 230 | +| y_out | -0.0692 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.060006768 | +| time-step | 231 | +| y_out | -0.0425 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.059678555 | +| time-step | 232 | +| y_out | 0.0274 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.056896836 | +| time-step | 233 | +| y_out | 0.0648 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05519135 | +| time-step | 234 | +| y_out | 0.0118 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05357951 | +| time-step | 235 | +| y_out | -0.0334 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.053739198 | +| time-step | 236 | +| y_out | 0.00437 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.054819513 | +| time-step | 237 | +| y_out | 0.0127 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.054516714 | +| time-step | 238 | +| y_out | 0.0353 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.055505436 | +| time-step | 239 | +| y_out | -0.00941 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05397337 | +| time-step | 240 | +| y_out | -0.0962 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.053612806 | +| time-step | 241 | +| y_out | -0.0356 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.056304086 | +| time-step | 242 | +| y_out | -0.0703 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05672614 | +| time-step | 243 | +| y_out | 0.00876 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.058642082 | +| time-step | 244 | +| y_out | -0.0922 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.060372073 | +| time-step | 245 | +| y_out | 0.0919 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06131935 | +| time-step | 246 | +| y_out | -0.0781 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06267763 | +| time-step | 247 | +| y_out | -0.0529 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06262267 | +| time-step | 248 | +| y_out | -0.0251 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06004439 | +| time-step | 249 | +| y_out | 0.0254 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.059957266 | +| time-step | 250 | +| y_out | -0.0781 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.062695615 | +| time-step | 251 | +| y_out | -0.0278 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06092366 | +| time-step | 252 | +| y_out | -0.0184 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.062162317 | +| time-step | 253 | +| y_out | -0.0318 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.061132085 | +| time-step | 254 | +| y_out | 0.0799 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05924613 | +| time-step | 255 | +| y_out | 0.0653 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.060434055 | +| time-step | 256 | +| y_out | -0.0788 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.057571102 | +| time-step | 257 | +| y_out | -0.0524 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05639541 | +| time-step | 258 | +| y_out | 0.00217 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.057101797 | +| time-step | 259 | +| y_out | -0.0289 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05618251 | +| time-step | 260 | +| y_out | -0.108 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05464252 | +| time-step | 261 | +| y_out | -0.116 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05428974 | +| time-step | 262 | +| y_out | 0.0337 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.052216798 | +| time-step | 263 | +| y_out | -0.0103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.051262338 | +| time-step | 264 | +| y_out | 0.0165 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050855733 | +| time-step | 265 | +| y_out | 0.104 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04840196 | +| time-step | 266 | +| y_out | -0.0576 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.049175605 | +| time-step | 267 | +| y_out | -0.131 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.049470197 | +| time-step | 268 | +| y_out | -0.00244 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050518066 | +| time-step | 269 | +| y_out | 0.083 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.051476307 | +| time-step | 270 | +| y_out | 0.0592 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.051011473 | +| time-step | 271 | +| y_out | -0.0573 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.049953796 | +| time-step | 272 | +| y_out | 0.0429 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05097891 | +| time-step | 273 | +| y_out | 0.0567 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05294041 | +| time-step | 274 | +| y_out | -0.216 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05349181 | +| time-step | 275 | +| y_out | -0.0373 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.052047722 | +| time-step | 276 | +| y_out | 0.00351 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.051791944 | +| time-step | 277 | +| y_out | -0.147 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.051755946 | +| time-step | 278 | +| y_out | 0.0682 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04898694 | +| time-step | 279 | +| y_out | 0.0934 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.048101082 | +| time-step | 280 | +| y_out | -0.0504 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.048442706 | +| time-step | 281 | +| y_out | 0.0308 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04843736 | +| time-step | 282 | +| y_out | 0.024 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04744278 | +| time-step | 283 | +| y_out | 0.0689 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.046123512 | +| time-step | 284 | +| y_out | -0.0299 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.044650167 | +| time-step | 285 | +| y_out | 0.0108 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045727085 | +| time-step | 286 | +| y_out | 0.0343 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.046573404 | +| time-step | 287 | +| y_out | -0.0485 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045426007 | +| time-step | 288 | +| y_out | -0.127 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.046911374 | +| time-step | 289 | +| y_out | -0.0342 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04829799 | +| time-step | 290 | +| y_out | -0.103 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.047202215 | +| time-step | 291 | +| y_out | -0.0443 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047759354 | +| time-step | 292 | +| y_out | -0.0464 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04901324 | +| time-step | 293 | +| y_out | -0.0202 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.049171332 | +| time-step | 294 | +| y_out | 0.0805 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050798703 | +| time-step | 295 | +| y_out | -0.0214 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050071336 | +| time-step | 296 | +| y_out | -0.0884 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04819747 | +| time-step | 297 | +| y_out | 0.0701 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.051176287 | +| time-step | 298 | +| y_out | -0.0205 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050809048 | +| time-step | 299 | +| y_out | -0.0126 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050406896 | +| time-step | 300 | +| y_out | 0.116 | +------------------------------------------------------------ +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint 300 +----------------------------------------------------------- +| perf/mse | 0.05174283 | +| time-step | 301 | +| y_out | 0.024 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05258121 | +| time-step | 302 | +| y_out | -0.0303 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0546092 | +| time-step | 303 | +| y_out | -0.0389 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.054850496 | +| time-step | 304 | +| y_out | 0.00659 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05508005 | +| time-step | 305 | +| y_out | -0.0544 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05548368 | +| time-step | 306 | +| y_out | -0.0218 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.057017952 | +| time-step | 307 | +| y_out | 0.0167 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05396073 | +| time-step | 308 | +| y_out | -0.0447 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.053436358 | +| time-step | 309 | +| y_out | -0.00739 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.052189868 | +| time-step | 310 | +| y_out | 0.051 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.051170953 | +| time-step | 311 | +| y_out | -0.0448 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.051373493 | +| time-step | 312 | +| y_out | -0.0193 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.051005155 | +| time-step | 313 | +| y_out | -0.0162 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050715476 | +| time-step | 314 | +| y_out | -0.0722 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.048216157 | +| time-step | 315 | +| y_out | 0.0666 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.046970457 | +| time-step | 316 | +| y_out | 0.0139 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04634898 | +| time-step | 317 | +| y_out | -0.123 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.047595352 | +| time-step | 318 | +| y_out | -0.00802 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04812552 | +| time-step | 319 | +| y_out | 0.00408 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.048778407 | +| time-step | 320 | +| y_out | 0.0253 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.048348833 | +| time-step | 321 | +| y_out | 0.0814 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.048585653 | +| time-step | 322 | +| y_out | -0.0666 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047750764 | +| time-step | 323 | +| y_out | 0.0234 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047169484 | +| time-step | 324 | +| y_out | 0.0134 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.051051043 | +| time-step | 325 | +| y_out | -0.0697 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050783254 | +| time-step | 326 | +| y_out | -0.113 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05024145 | +| time-step | 327 | +| y_out | -0.0369 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.049518358 | +| time-step | 328 | +| y_out | 0.05 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050671153 | +| time-step | 329 | +| y_out | -0.0229 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04976202 | +| time-step | 330 | +| y_out | 0.0191 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04918482 | +| time-step | 331 | +| y_out | 0.0149 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.046014633 | +| time-step | 332 | +| y_out | 0.0611 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04446416 | +| time-step | 333 | +| y_out | 0.225 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.047265183 | +| time-step | 334 | +| y_out | 0.139 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045637976 | +| time-step | 335 | +| y_out | -0.21 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04610682 | +| time-step | 336 | +| y_out | -0.0574 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04625579 | +| time-step | 337 | +| y_out | 0.00341 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.045840107 | +| time-step | 338 | +| y_out | -0.031 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04537605 | +| time-step | 339 | +| y_out | 0.0899 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.044669002 | +| time-step | 340 | +| y_out | 0.123 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045253754 | +| time-step | 341 | +| y_out | -0.0432 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045383714 | +| time-step | 342 | +| y_out | -0.0727 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.044924565 | +| time-step | 343 | +| y_out | 0.0429 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043362886 | +| time-step | 344 | +| y_out | 0.0401 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041840345 | +| time-step | 345 | +| y_out | -0.153 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043310747 | +| time-step | 346 | +| y_out | -0.0121 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.044173524 | +| time-step | 347 | +| y_out | -0.137 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045624156 | +| time-step | 348 | +| y_out | 0.0497 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047848817 | +| time-step | 349 | +| y_out | -0.128 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047799133 | +| time-step | 350 | +| y_out | 0.117 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047366858 | +| time-step | 351 | +| y_out | 0.0389 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04888399 | +| time-step | 352 | +| y_out | 0.0713 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.049352866 | +| time-step | 353 | +| y_out | 0.0587 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.051599108 | +| time-step | 354 | +| y_out | 0.0556 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05342742 | +| time-step | 355 | +| y_out | -0.0932 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05273967 | +| time-step | 356 | +| y_out | 0.121 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.051974278 | +| time-step | 357 | +| y_out | 0.0238 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05059583 | +| time-step | 358 | +| y_out | 0.0447 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04586927 | +| time-step | 359 | +| y_out | -0.0184 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.047620047 | +| time-step | 360 | +| y_out | 0.171 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047107298 | +| time-step | 361 | +| y_out | -0.0801 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047237623 | +| time-step | 362 | +| y_out | 0.0878 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.048508685 | +| time-step | 363 | +| y_out | 0.076 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045510255 | +| time-step | 364 | +| y_out | -0.0532 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043865245 | +| time-step | 365 | +| y_out | 0.0193 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041885465 | +| time-step | 366 | +| y_out | 0.0736 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04296519 | +| time-step | 367 | +| y_out | -0.0214 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04382933 | +| time-step | 368 | +| y_out | -0.0343 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.046098553 | +| time-step | 369 | +| y_out | 0.117 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04480189 | +| time-step | 370 | +| y_out | 0.117 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.044245582 | +| time-step | 371 | +| y_out | 0.138 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0439245 | +| time-step | 372 | +| y_out | 0.0668 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.043942112 | +| time-step | 373 | +| y_out | -0.0123 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043682896 | +| time-step | 374 | +| y_out | -0.115 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043958686 | +| time-step | 375 | +| y_out | 0.114 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04454767 | +| time-step | 376 | +| y_out | -0.0614 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04306534 | +| time-step | 377 | +| y_out | 0.00934 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.041446973 | +| time-step | 378 | +| y_out | -0.151 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04100363 | +| time-step | 379 | +| y_out | 0.024 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04180368 | +| time-step | 380 | +| y_out | -0.0599 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.042992603 | +| time-step | 381 | +| y_out | -0.0548 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043098643 | +| time-step | 382 | +| y_out | -0.0116 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043514136 | +| time-step | 383 | +| y_out | 0.0327 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04369066 | +| time-step | 384 | +| y_out | 0.0623 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04326322 | +| time-step | 385 | +| y_out | -0.096 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.044685632 | +| time-step | 386 | +| y_out | 0.0277 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04526978 | +| time-step | 387 | +| y_out | -0.0655 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04619179 | +| time-step | 388 | +| y_out | -0.0376 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04565365 | +| time-step | 389 | +| y_out | -0.0207 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0453593 | +| time-step | 390 | +| y_out | -0.0541 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.044717014 | +| time-step | 391 | +| y_out | -0.0988 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04368487 | +| time-step | 392 | +| y_out | -0.0678 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04057418 | +| time-step | 393 | +| y_out | 0.0429 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.039496467 | +| time-step | 394 | +| y_out | 0.0154 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041491378 | +| time-step | 395 | +| y_out | -0.0318 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040550705 | +| time-step | 396 | +| y_out | 0.0563 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040151957 | +| time-step | 397 | +| y_out | -0.126 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040751856 | +| time-step | 398 | +| y_out | -0.0782 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041047078 | +| time-step | 399 | +| y_out | -0.113 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040643338 | +| time-step | 400 | +| y_out | 0.0683 | +------------------------------------------------------------ +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint 400 +------------------------------------------------------------ +| perf/mse | 0.040522076 | +| time-step | 401 | +| y_out | 0.0577 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040857714 | +| time-step | 402 | +| y_out | -0.0516 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041983295 | +| time-step | 403 | +| y_out | 0.0433 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041991167 | +| time-step | 404 | +| y_out | -0.0785 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04240365 | +| time-step | 405 | +| y_out | 0.103 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.042375665 | +| time-step | 406 | +| y_out | -0.00437 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043141805 | +| time-step | 407 | +| y_out | -0.0194 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041378472 | +| time-step | 408 | +| y_out | -0.0212 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04113335 | +| time-step | 409 | +| y_out | 0.018 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.040811963 | +| time-step | 410 | +| y_out | -0.0737 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041282825 | +| time-step | 411 | +| y_out | 0.118 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.042308565 | +| time-step | 412 | +| y_out | -0.00289 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041298993 | +| time-step | 413 | +| y_out | -0.0298 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.042077266 | +| time-step | 414 | +| y_out | -0.1 | +------------------------------------------------------------ +--------------------------------------------------------- +| perf/mse | 0.039507 | +| time-step | 415 | +| y_out | 0.0715 | +--------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.039639987 | +| time-step | 416 | +| y_out | 0.0893 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03933642 | +| time-step | 417 | +| y_out | -0.0395 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04217129 | +| time-step | 418 | +| y_out | -0.0557 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.043428592 | +| time-step | 419 | +| y_out | 0.111 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.044488728 | +| time-step | 420 | +| y_out | 0.0178 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.044093788 | +| time-step | 421 | +| y_out | -0.067 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043048836 | +| time-step | 422 | +| y_out | 0.0504 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04314921 | +| time-step | 423 | +| y_out | 0.0162 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04349237 | +| time-step | 424 | +| y_out | 0.01 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04452821 | +| time-step | 425 | +| y_out | 0.00787 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04426225 | +| time-step | 426 | +| y_out | 0.0487 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04360787 | +| time-step | 427 | +| y_out | 0.0032 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.043667957 | +| time-step | 428 | +| y_out | -0.0608 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.042218983 | +| time-step | 429 | +| y_out | -0.0561 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0419866 | +| time-step | 430 | +| y_out | -0.0284 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.041578658 | +| time-step | 431 | +| y_out | 0.0457 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04186579 | +| time-step | 432 | +| y_out | 0.000263 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04387967 | +| time-step | 433 | +| y_out | -0.0321 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04383936 | +| time-step | 434 | +| y_out | -0.0136 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.044992246 | +| time-step | 435 | +| y_out | 0.0228 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.044400357 | +| time-step | 436 | +| y_out | 0.0347 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.045319177 | +| time-step | 437 | +| y_out | 0.0315 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043344233 | +| time-step | 438 | +| y_out | -0.105 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04432697 | +| time-step | 439 | +| y_out | -0.119 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04481327 | +| time-step | 440 | +| y_out | 0.00662 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.045533992 | +| time-step | 441 | +| y_out | -0.104 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043996777 | +| time-step | 442 | +| y_out | 0.00843 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0417896 | +| time-step | 443 | +| y_out | -0.0833 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.04127677 | +| time-step | 444 | +| y_out | -0.0714 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.038586713 | +| time-step | 445 | +| y_out | 0.0362 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039206453 | +| time-step | 446 | +| y_out | -0.0908 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038004704 | +| time-step | 447 | +| y_out | 0.0358 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03785272 | +| time-step | 448 | +| y_out | 0.0616 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.036497425 | +| time-step | 449 | +| y_out | 0.00423 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034876965 | +| time-step | 450 | +| y_out | -0.0286 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034173798 | +| time-step | 451 | +| y_out | -0.00491 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03518618 | +| time-step | 452 | +| y_out | -0.0324 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035749175 | +| time-step | 453 | +| y_out | 0.00848 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03567919 | +| time-step | 454 | +| y_out | -0.0353 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.036438446 | +| time-step | 455 | +| y_out | 0.111 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03529737 | +| time-step | 456 | +| y_out | -0.00363 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035979748 | +| time-step | 457 | +| y_out | 0.0314 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036433093 | +| time-step | 458 | +| y_out | -0.012 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03787488 | +| time-step | 459 | +| y_out | 0.00587 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.038683094 | +| time-step | 460 | +| y_out | -0.0452 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039051373 | +| time-step | 461 | +| y_out | -0.00751 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039357126 | +| time-step | 462 | +| y_out | 0.0189 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03825305 | +| time-step | 463 | +| y_out | 0.0738 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03832134 | +| time-step | 464 | +| y_out | 0.026 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03921164 | +| time-step | 465 | +| y_out | 0.131 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.039929666 | +| time-step | 466 | +| y_out | -0.117 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039560802 | +| time-step | 467 | +| y_out | 0.118 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03878637 | +| time-step | 468 | +| y_out | -0.117 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03827966 | +| time-step | 469 | +| y_out | -0.0765 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037641738 | +| time-step | 470 | +| y_out | -0.023 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038357873 | +| time-step | 471 | +| y_out | -0.0722 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038132764 | +| time-step | 472 | +| y_out | 0.109 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03891701 | +| time-step | 473 | +| y_out | -0.0703 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.038103554 | +| time-step | 474 | +| y_out | 0.0692 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03621999 | +| time-step | 475 | +| y_out | -0.000647 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.036580242 | +| time-step | 476 | +| y_out | -0.0134 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036139347 | +| time-step | 477 | +| y_out | -0.0238 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03563816 | +| time-step | 478 | +| y_out | 0.0093 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035266772 | +| time-step | 479 | +| y_out | 2.33e-05 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035108875 | +| time-step | 480 | +| y_out | -0.0566 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03506776 | +| time-step | 481 | +| y_out | 0.0127 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034106456 | +| time-step | 482 | +| y_out | 0.124 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033619884 | +| time-step | 483 | +| y_out | 0.0468 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034672335 | +| time-step | 484 | +| y_out | 0.063 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03652858 | +| time-step | 485 | +| y_out | 0.00827 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037528615 | +| time-step | 486 | +| y_out | -0.182 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038261674 | +| time-step | 487 | +| y_out | 0.0356 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039350253 | +| time-step | 488 | +| y_out | 0.0238 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0382124 | +| time-step | 489 | +| y_out | 0.127 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03865268 | +| time-step | 490 | +| y_out | -0.062 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037496835 | +| time-step | 491 | +| y_out | 0.0473 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03886371 | +| time-step | 492 | +| y_out | 0.0499 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.038803898 | +| time-step | 493 | +| y_out | -0.0929 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03859285 | +| time-step | 494 | +| y_out | 0.0994 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037241153 | +| time-step | 495 | +| y_out | 0.0234 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036005683 | +| time-step | 496 | +| y_out | -0.0635 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035168167 | +| time-step | 497 | +| y_out | 0.00639 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034892336 | +| time-step | 498 | +| y_out | -0.0325 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035247844 | +| time-step | 499 | +| y_out | 0.052 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03583549 | +| time-step | 500 | +| y_out | 0.00646 | +----------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint 500 +----------------------------------------------------------- +| perf/mse | 0.03733476 | +| time-step | 501 | +| y_out | -0.0302 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037066884 | +| time-step | 502 | +| y_out | 0.0845 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036854826 | +| time-step | 503 | +| y_out | 0.0376 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037260495 | +| time-step | 504 | +| y_out | 0.0172 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037195526 | +| time-step | 505 | +| y_out | -0.0203 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03681703 | +| time-step | 506 | +| y_out | 0.0952 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03714765 | +| time-step | 507 | +| y_out | 0.144 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03735614 | +| time-step | 508 | +| y_out | -0.0451 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03867663 | +| time-step | 509 | +| y_out | -0.0839 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037212465 | +| time-step | 510 | +| y_out | 0.00484 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03521788 | +| time-step | 511 | +| y_out | 0.00774 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.036547348 | +| time-step | 512 | +| y_out | 0.0122 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037850987 | +| time-step | 513 | +| y_out | 0.0956 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03790846 | +| time-step | 514 | +| y_out | 0.0194 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037776686 | +| time-step | 515 | +| y_out | 0.11 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038909797 | +| time-step | 516 | +| y_out | -0.0527 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038011245 | +| time-step | 517 | +| y_out | 0.0574 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038414802 | +| time-step | 518 | +| y_out | -0.0221 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038682684 | +| time-step | 519 | +| y_out | -0.000219 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03936618 | +| time-step | 520 | +| y_out | 0.0755 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0401329 | +| time-step | 521 | +| y_out | -0.0511 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037935577 | +| time-step | 522 | +| y_out | -0.0776 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037657436 | +| time-step | 523 | +| y_out | -0.0248 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036557578 | +| time-step | 524 | +| y_out | -0.119 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036983322 | +| time-step | 525 | +| y_out | -0.091 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035910983 | +| time-step | 526 | +| y_out | 0.0255 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036941655 | +| time-step | 527 | +| y_out | -0.0308 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036313415 | +| time-step | 528 | +| y_out | -0.0558 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034566753 | +| time-step | 529 | +| y_out | -0.0136 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03446619 | +| time-step | 530 | +| y_out | -0.0846 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034713157 | +| time-step | 531 | +| y_out | 0.0129 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036472194 | +| time-step | 532 | +| y_out | 0.0272 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035231292 | +| time-step | 533 | +| y_out | -0.0406 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035995197 | +| time-step | 534 | +| y_out | -0.0932 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03676777 | +| time-step | 535 | +| y_out | 0.108 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037174717 | +| time-step | 536 | +| y_out | -0.0364 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03749975 | +| time-step | 537 | +| y_out | 0.0197 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037383832 | +| time-step | 538 | +| y_out | -0.0188 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03777265 | +| time-step | 539 | +| y_out | 0.023 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03784097 | +| time-step | 540 | +| y_out | 0.0279 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.036639057 | +| time-step | 541 | +| y_out | 0.0781 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035638865 | +| time-step | 542 | +| y_out | -0.117 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036030825 | +| time-step | 543 | +| y_out | -0.0932 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035704833 | +| time-step | 544 | +| y_out | -0.0248 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034461215 | +| time-step | 545 | +| y_out | 0.00317 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034431677 | +| time-step | 546 | +| y_out | 0.0268 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033069186 | +| time-step | 547 | +| y_out | 0.0918 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032823406 | +| time-step | 548 | +| y_out | -0.17 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03383097 | +| time-step | 549 | +| y_out | -0.00244 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03324308 | +| time-step | 550 | +| y_out | -0.016 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03337992 | +| time-step | 551 | +| y_out | 0.0363 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03336678 | +| time-step | 552 | +| y_out | -0.0461 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.033796065 | +| time-step | 553 | +| y_out | 0.102 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033875298 | +| time-step | 554 | +| y_out | -0.0256 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033707503 | +| time-step | 555 | +| y_out | -0.0254 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03477437 | +| time-step | 556 | +| y_out | 0.0673 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037721146 | +| time-step | 557 | +| y_out | 0.0961 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037171803 | +| time-step | 558 | +| y_out | 0.0863 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03746583 | +| time-step | 559 | +| y_out | 0.0299 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03680097 | +| time-step | 560 | +| y_out | -0.0652 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.037690498 | +| time-step | 561 | +| y_out | 0.0334 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037210356 | +| time-step | 562 | +| y_out | 0.0707 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.036322925 | +| time-step | 563 | +| y_out | -0.0154 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037201725 | +| time-step | 564 | +| y_out | -0.0757 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037067797 | +| time-step | 565 | +| y_out | -0.106 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0362378 | +| time-step | 566 | +| y_out | 0.0437 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034831397 | +| time-step | 567 | +| y_out | -0.0502 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.035759993 | +| time-step | 568 | +| y_out | 0.0359 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034532867 | +| time-step | 569 | +| y_out | -0.0246 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03503443 | +| time-step | 570 | +| y_out | 0.0237 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03428251 | +| time-step | 571 | +| y_out | 0.00545 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03483584 | +| time-step | 572 | +| y_out | 0.0163 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03531785 | +| time-step | 573 | +| y_out | -0.0865 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0360641 | +| time-step | 574 | +| y_out | -0.0317 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.036605097 | +| time-step | 575 | +| y_out | -0.00924 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03552351 | +| time-step | 576 | +| y_out | 0.00129 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034539882 | +| time-step | 577 | +| y_out | 0.00987 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033754088 | +| time-step | 578 | +| y_out | -0.0458 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034340445 | +| time-step | 579 | +| y_out | -0.0525 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034343418 | +| time-step | 580 | +| y_out | 0.0191 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033559937 | +| time-step | 581 | +| y_out | -0.0297 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032644056 | +| time-step | 582 | +| y_out | 0.0281 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03298333 | +| time-step | 583 | +| y_out | 0.0182 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03146042 | +| time-step | 584 | +| y_out | -0.0691 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.032784816 | +| time-step | 585 | +| y_out | 0.0775 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033799257 | +| time-step | 586 | +| y_out | -0.104 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034174956 | +| time-step | 587 | +| y_out | 0.015 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034603573 | +| time-step | 588 | +| y_out | -0.00166 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03349266 | +| time-step | 589 | +| y_out | 0.0394 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034142423 | +| time-step | 590 | +| y_out | -0.0372 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03479029 | +| time-step | 591 | +| y_out | -0.0133 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03450986 | +| time-step | 592 | +| y_out | 0.0506 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034693528 | +| time-step | 593 | +| y_out | 0.00966 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033304214 | +| time-step | 594 | +| y_out | 0.036 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032109775 | +| time-step | 595 | +| y_out | 0.112 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031864252 | +| time-step | 596 | +| y_out | -0.0726 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030815398 | +| time-step | 597 | +| y_out | -0.0907 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029445121 | +| time-step | 598 | +| y_out | 0.0155 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030023491 | +| time-step | 599 | +| y_out | 0.0474 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029509742 | +| time-step | 600 | +| y_out | -0.0995 | +------------------------------------------------------------ +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint 600 +----------------------------------------------------------- +| perf/mse | 0.02955753 | +| time-step | 601 | +| y_out | -0.0466 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.029665494 | +| time-step | 602 | +| y_out | -0.0332 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029646825 | +| time-step | 603 | +| y_out | -0.0353 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031129738 | +| time-step | 604 | +| y_out | 0.0409 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030378044 | +| time-step | 605 | +| y_out | -0.0555 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02960462 | +| time-step | 606 | +| y_out | 0.081 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.030322623 | +| time-step | 607 | +| y_out | 0.183 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032099858 | +| time-step | 608 | +| y_out | -0.00356 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031497665 | +| time-step | 609 | +| y_out | 0.0442 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03245721 | +| time-step | 610 | +| y_out | -0.027 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03226036 | +| time-step | 611 | +| y_out | -0.0141 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.033365626 | +| time-step | 612 | +| y_out | 0.0502 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032781415 | +| time-step | 613 | +| y_out | 0.0341 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032474138 | +| time-step | 614 | +| y_out | -0.0315 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033486746 | +| time-step | 615 | +| y_out | 0.0203 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0338382 | +| time-step | 616 | +| y_out | 0.143 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.033649676 | +| time-step | 617 | +| y_out | 0.0633 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032934792 | +| time-step | 618 | +| y_out | -0.0988 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03315308 | +| time-step | 619 | +| y_out | -0.0178 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03229132 | +| time-step | 620 | +| y_out | -0.0611 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0327541 | +| time-step | 621 | +| y_out | 0.00041 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031698115 | +| time-step | 622 | +| y_out | 0.0749 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032262318 | +| time-step | 623 | +| y_out | -0.063 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03194316 | +| time-step | 624 | +| y_out | 0.0229 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031548526 | +| time-step | 625 | +| y_out | -0.135 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03101631 | +| time-step | 626 | +| y_out | 0.164 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031343438 | +| time-step | 627 | +| y_out | 0.0476 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031631738 | +| time-step | 628 | +| y_out | -0.0989 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031573154 | +| time-step | 629 | +| y_out | 0.00181 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031537663 | +| time-step | 630 | +| y_out | 0.0358 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03145404 | +| time-step | 631 | +| y_out | -0.0157 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.032795534 | +| time-step | 632 | +| y_out | -0.0114 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033159014 | +| time-step | 633 | +| y_out | -0.157 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03244157 | +| time-step | 634 | +| y_out | 0.0512 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03138875 | +| time-step | 635 | +| y_out | -0.0156 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03282702 | +| time-step | 636 | +| y_out | 0.0454 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.033254016 | +| time-step | 637 | +| y_out | 0.056 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032730367 | +| time-step | 638 | +| y_out | 0.05 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032393552 | +| time-step | 639 | +| y_out | 0.0597 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032702588 | +| time-step | 640 | +| y_out | -0.134 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032438923 | +| time-step | 641 | +| y_out | -0.0474 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03167278 | +| time-step | 642 | +| y_out | -0.00115 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03203782 | +| time-step | 643 | +| y_out | -0.043 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.033848215 | +| time-step | 644 | +| y_out | 0.0673 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03518135 | +| time-step | 645 | +| y_out | 0.0419 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034817737 | +| time-step | 646 | +| y_out | -0.132 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03450574 | +| time-step | 647 | +| y_out | 0.0362 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.034160025 | +| time-step | 648 | +| y_out | -0.0592 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.033882897 | +| time-step | 649 | +| y_out | 0.0346 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0326714 | +| time-step | 650 | +| y_out | 0.138 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.032752864 | +| time-step | 651 | +| y_out | -0.0257 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.032670703 | +| time-step | 652 | +| y_out | -0.0755 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03110286 | +| time-step | 653 | +| y_out | -0.0117 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.030341158 | +| time-step | 654 | +| y_out | 0.0549 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029916978 | +| time-step | 655 | +| y_out | -0.0918 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02941716 | +| time-step | 656 | +| y_out | -0.0771 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02865209 | +| time-step | 657 | +| y_out | 0.00312 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02901752 | +| time-step | 658 | +| y_out | 0.0537 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.029792726 | +| time-step | 659 | +| y_out | -0.127 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029873054 | +| time-step | 660 | +| y_out | 0.0515 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030676743 | +| time-step | 661 | +| y_out | 0.0639 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031062389 | +| time-step | 662 | +| y_out | 0.0299 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03166271 | +| time-step | 663 | +| y_out | 0.0591 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031490974 | +| time-step | 664 | +| y_out | -0.0373 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03088668 | +| time-step | 665 | +| y_out | 0.00167 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03148003 | +| time-step | 666 | +| y_out | -0.109 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031402674 | +| time-step | 667 | +| y_out | -0.0581 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031179061 | +| time-step | 668 | +| y_out | 0.0113 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03079604 | +| time-step | 669 | +| y_out | -0.00028 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031088773 | +| time-step | 670 | +| y_out | 0.0094 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030224254 | +| time-step | 671 | +| y_out | -0.0298 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029808868 | +| time-step | 672 | +| y_out | -0.0773 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02891534 | +| time-step | 673 | +| y_out | -0.0166 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.028422376 | +| time-step | 674 | +| y_out | -0.127 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030108148 | +| time-step | 675 | +| y_out | 0.0629 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0293192 | +| time-step | 676 | +| y_out | -0.0498 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.029605547 | +| time-step | 677 | +| y_out | 0.0293 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02997067 | +| time-step | 678 | +| y_out | -0.0469 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.030485094 | +| time-step | 679 | +| y_out | -0.012 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030837243 | +| time-step | 680 | +| y_out | 0.0721 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0318379 | +| time-step | 681 | +| y_out | 0.085 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03163385 | +| time-step | 682 | +| y_out | -0.0654 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.03240539 | +| time-step | 683 | +| y_out | -0.0353 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031963926 | +| time-step | 684 | +| y_out | -0.0702 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03049387 | +| time-step | 685 | +| y_out | -0.0258 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031243065 | +| time-step | 686 | +| y_out | 0.0972 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031507593 | +| time-step | 687 | +| y_out | -0.0353 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031517994 | +| time-step | 688 | +| y_out | 0.121 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030255804 | +| time-step | 689 | +| y_out | 0.042 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030702427 | +| time-step | 690 | +| y_out | 0.0404 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029409861 | +| time-step | 691 | +| y_out | -0.0584 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029511292 | +| time-step | 692 | +| y_out | -0.035 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029403899 | +| time-step | 693 | +| y_out | 0.0333 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029586393 | +| time-step | 694 | +| y_out | 0.0622 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029786084 | +| time-step | 695 | +| y_out | -0.00758 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028874695 | +| time-step | 696 | +| y_out | -0.0866 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029097546 | +| time-step | 697 | +| y_out | 0.021 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028396994 | +| time-step | 698 | +| y_out | 0.077 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028549176 | +| time-step | 699 | +| y_out | -0.00077 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028347254 | +| time-step | 700 | +| y_out | 0.000271 | +------------------------------------------------------------ +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint 700 +------------------------------------------------------------ +| perf/mse | 0.028963346 | +| time-step | 701 | +| y_out | 0.0125 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029113691 | +| time-step | 702 | +| y_out | -0.0219 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028970605 | +| time-step | 703 | +| y_out | -0.0588 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029578626 | +| time-step | 704 | +| y_out | 0.0224 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029758623 | +| time-step | 705 | +| y_out | -0.0247 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029879963 | +| time-step | 706 | +| y_out | 0.0702 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029372385 | +| time-step | 707 | +| y_out | -3.46e-06 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029560158 | +| time-step | 708 | +| y_out | -0.0569 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030831715 | +| time-step | 709 | +| y_out | -0.122 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030472606 | +| time-step | 710 | +| y_out | -0.0808 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030901596 | +| time-step | 711 | +| y_out | -0.0476 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030884814 | +| time-step | 712 | +| y_out | -0.0847 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030973446 | +| time-step | 713 | +| y_out | -0.0202 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030331686 | +| time-step | 714 | +| y_out | -0.0307 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030228352 | +| time-step | 715 | +| y_out | 0.00411 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030201033 | +| time-step | 716 | +| y_out | -0.0111 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.030105922 | +| time-step | 717 | +| y_out | 0.151 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029680336 | +| time-step | 718 | +| y_out | -0.0437 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.029252997 | +| time-step | 719 | +| y_out | 0.119 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028861081 | +| time-step | 720 | +| y_out | 0.0444 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028029975 | +| time-step | 721 | +| y_out | 0.00957 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027789643 | +| time-step | 722 | +| y_out | 0.0701 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02665713 | +| time-step | 723 | +| y_out | 0.0123 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.027247768 | +| time-step | 724 | +| y_out | -0.00649 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027117502 | +| time-step | 725 | +| y_out | -0.0738 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026762832 | +| time-step | 726 | +| y_out | 0.0303 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026845485 | +| time-step | 727 | +| y_out | -0.0165 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027942032 | +| time-step | 728 | +| y_out | 0.00801 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027209243 | +| time-step | 729 | +| y_out | 0.0709 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028276464 | +| time-step | 730 | +| y_out | 0.0901 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02874479 | +| time-step | 731 | +| y_out | -0.0892 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.028927535 | +| time-step | 732 | +| y_out | 0.00363 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02926426 | +| time-step | 733 | +| y_out | -0.032 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.028208151 | +| time-step | 734 | +| y_out | -0.036 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028037066 | +| time-step | 735 | +| y_out | 0.146 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027652774 | +| time-step | 736 | +| y_out | -0.00189 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027336884 | +| time-step | 737 | +| y_out | -0.0274 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027784968 | +| time-step | 738 | +| y_out | 0.11 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027967233 | +| time-step | 739 | +| y_out | -0.0183 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02673966 | +| time-step | 740 | +| y_out | -0.00979 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026887584 | +| time-step | 741 | +| y_out | -0.0746 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02652139 | +| time-step | 742 | +| y_out | -0.023 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.027052816 | +| time-step | 743 | +| y_out | -0.103 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026686698 | +| time-step | 744 | +| y_out | -0.104 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026838785 | +| time-step | 745 | +| y_out | 0.00821 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02759608 | +| time-step | 746 | +| y_out | -0.0784 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.027862066 | +| time-step | 747 | +| y_out | -0.00514 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026777467 | +| time-step | 748 | +| y_out | 0.00837 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02664693 | +| time-step | 749 | +| y_out | -0.0664 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026810069 | +| time-step | 750 | +| y_out | -0.118 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026764642 | +| time-step | 751 | +| y_out | -0.0163 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02680698 | +| time-step | 752 | +| y_out | 0.0245 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.027694654 | +| time-step | 753 | +| y_out | -0.0394 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028346315 | +| time-step | 754 | +| y_out | 0.0515 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028019572 | +| time-step | 755 | +| y_out | -0.101 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027854213 | +| time-step | 756 | +| y_out | -0.0151 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027867887 | +| time-step | 757 | +| y_out | 0.0641 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027472273 | +| time-step | 758 | +| y_out | 0.0381 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028287416 | +| time-step | 759 | +| y_out | -0.0893 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028847864 | +| time-step | 760 | +| y_out | 0.181 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027838284 | +| time-step | 761 | +| y_out | -0.0781 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028204313 | +| time-step | 762 | +| y_out | 0.127 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027740236 | +| time-step | 763 | +| y_out | 0.0608 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027531907 | +| time-step | 764 | +| y_out | 0.00487 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.028134564 | +| time-step | 765 | +| y_out | -0.0234 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02755475 | +| time-step | 766 | +| y_out | -0.0358 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026865993 | +| time-step | 767 | +| y_out | -0.0822 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0271254 | +| time-step | 768 | +| y_out | 0.115 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026092941 | +| time-step | 769 | +| y_out | 0.0899 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025609557 | +| time-step | 770 | +| y_out | 0.0323 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025536533 | +| time-step | 771 | +| y_out | -0.0574 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024458077 | +| time-step | 772 | +| y_out | -0.0745 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023764443 | +| time-step | 773 | +| y_out | -0.0457 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025078932 | +| time-step | 774 | +| y_out | 0.0521 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023830721 | +| time-step | 775 | +| y_out | -0.017 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024070293 | +| time-step | 776 | +| y_out | 0.0863 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023845429 | +| time-step | 777 | +| y_out | -0.0738 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023561928 | +| time-step | 778 | +| y_out | -0.0779 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023658082 | +| time-step | 779 | +| y_out | -0.0212 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023351675 | +| time-step | 780 | +| y_out | -0.0476 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02370647 | +| time-step | 781 | +| y_out | 0.0912 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.023887781 | +| time-step | 782 | +| y_out | -0.0959 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024240369 | +| time-step | 783 | +| y_out | -0.0279 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02382132 | +| time-step | 784 | +| y_out | -0.0924 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.024463639 | +| time-step | 785 | +| y_out | 0.0294 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024821848 | +| time-step | 786 | +| y_out | 0.0571 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0258226 | +| time-step | 787 | +| y_out | -0.0561 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.025840987 | +| time-step | 788 | +| y_out | -0.0536 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026194667 | +| time-step | 789 | +| y_out | 0.0338 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02627787 | +| time-step | 790 | +| y_out | 0.107 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026274914 | +| time-step | 791 | +| y_out | 0.104 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026150813 | +| time-step | 792 | +| y_out | -0.119 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026745448 | +| time-step | 793 | +| y_out | 0.061 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02623796 | +| time-step | 794 | +| y_out | 0.0852 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026055738 | +| time-step | 795 | +| y_out | -0.0557 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025376296 | +| time-step | 796 | +| y_out | 0.0213 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024506446 | +| time-step | 797 | +| y_out | 0.0349 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024920318 | +| time-step | 798 | +| y_out | -0.0408 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024427403 | +| time-step | 799 | +| y_out | -0.0512 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025273364 | +| time-step | 800 | +| y_out | -0.149 | +------------------------------------------------------------ +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/checkpoint 800 +------------------------------------------------------------ +| perf/mse | 0.025099674 | +| time-step | 801 | +| y_out | 0.0211 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026260367 | +| time-step | 802 | +| y_out | 0.141 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024992594 | +| time-step | 803 | +| y_out | 0.0534 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02446195 | +| time-step | 804 | +| y_out | -0.0295 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.024987685 | +| time-step | 805 | +| y_out | 0.0492 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024890166 | +| time-step | 806 | +| y_out | -0.022 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024760298 | +| time-step | 807 | +| y_out | -0.0161 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025128577 | +| time-step | 808 | +| y_out | 0.0741 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024979237 | +| time-step | 809 | +| y_out | 0.0119 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02427019 | +| time-step | 810 | +| y_out | 0.113 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.024389988 | +| time-step | 811 | +| y_out | -0.0555 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023572337 | +| time-step | 812 | +| y_out | -0.0075 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02399315 | +| time-step | 813 | +| y_out | -0.0834 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.023871252 | +| time-step | 814 | +| y_out | -0.0452 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02419267 | +| time-step | 815 | +| y_out | 0.0504 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.025749292 | +| time-step | 816 | +| y_out | -0.0135 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02573188 | +| time-step | 817 | +| y_out | 0.0101 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02514931 | +| time-step | 818 | +| y_out | -0.00627 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026384655 | +| time-step | 819 | +| y_out | -0.00669 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02601029 | +| time-step | 820 | +| y_out | 0.0411 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02662946 | +| time-step | 821 | +| y_out | -0.188 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026088092 | +| time-step | 822 | +| y_out | -0.0312 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026078641 | +| time-step | 823 | +| y_out | -0.0212 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026248181 | +| time-step | 824 | +| y_out | 0.0828 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025508676 | +| time-step | 825 | +| y_out | -0.0308 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023745066 | +| time-step | 826 | +| y_out | -0.00913 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023781452 | +| time-step | 827 | +| y_out | -0.0153 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024763431 | +| time-step | 828 | +| y_out | 0.0659 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023531226 | +| time-step | 829 | +| y_out | 0.0554 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023835564 | +| time-step | 830 | +| y_out | -0.0662 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022762444 | +| time-step | 831 | +| y_out | -0.0359 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022678234 | +| time-step | 832 | +| y_out | -0.025 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023148514 | +| time-step | 833 | +| y_out | -0.0478 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02327455 | +| time-step | 834 | +| y_out | 0.0129 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.023080409 | +| time-step | 835 | +| y_out | -0.0691 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023373868 | +| time-step | 836 | +| y_out | -0.0119 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023609951 | +| time-step | 837 | +| y_out | -0.0611 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022976378 | +| time-step | 838 | +| y_out | -0.106 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023436032 | +| time-step | 839 | +| y_out | -0.0775 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022931974 | +| time-step | 840 | +| y_out | -0.00599 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022877287 | +| time-step | 841 | +| y_out | 0.0898 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022882814 | +| time-step | 842 | +| y_out | 0.0251 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022571886 | +| time-step | 843 | +| y_out | 0.0798 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022833318 | +| time-step | 844 | +| y_out | -0.145 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02334775 | +| time-step | 845 | +| y_out | 0.112 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.024182564 | +| time-step | 846 | +| y_out | 0.139 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024317006 | +| time-step | 847 | +| y_out | -0.0481 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025027264 | +| time-step | 848 | +| y_out | 0.12 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025446761 | +| time-step | 849 | +| y_out | 0.064 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02643904 | +| time-step | 850 | +| y_out | 0.0479 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026990298 | +| time-step | 851 | +| y_out | -0.00371 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02730025 | +| time-step | 852 | +| y_out | 0.0267 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.027157072 | +| time-step | 853 | +| y_out | 0.0913 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027636636 | +| time-step | 854 | +| y_out | 0.0445 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026894446 | +| time-step | 855 | +| y_out | 0.104 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026994431 | +| time-step | 856 | +| y_out | -0.0141 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027878568 | +| time-step | 857 | +| y_out | -0.0884 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02699315 | +| time-step | 858 | +| y_out | -0.213 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.027207363 | +| time-step | 859 | +| y_out | 0.0645 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02662946 | +| time-step | 860 | +| y_out | 0.0625 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026158016 | +| time-step | 861 | +| y_out | -0.086 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0265468 | +| time-step | 862 | +| y_out | -0.0648 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02697922 | +| time-step | 863 | +| y_out | -0.0319 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026413212 | +| time-step | 864 | +| y_out | -0.0252 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02746493 | +| time-step | 865 | +| y_out | 0.0365 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026794966 | +| time-step | 866 | +| y_out | -0.0217 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025881669 | +| time-step | 867 | +| y_out | -0.0429 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026460737 | +| time-step | 868 | +| y_out | 0.132 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026582247 | +| time-step | 869 | +| y_out | -0.0204 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026968986 | +| time-step | 870 | +| y_out | -0.0666 | +------------------------------------------------------------ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..d4026b0 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/progress.csv @@ -0,0 +1,1742 @@ +time-step,y_out,perf/mse +0,-0.05822651431783689, +,, +1,-0.049475695468595135, +,, +2,0.09719816774487937, +,, +3,-0.05772656639529002, +,, +4,0.0455144719443762, +,, +5,0.024696018790302574, +,, +6,0.11692841448476228, +,, +7,-0.012614945226556463, +,, +8,0.06744397470069698, +,, +9,0.08917084665934465,0.49030668 +,, +10,-0.1096910959673277,0.46725398 +,, +11,-0.07704224844645165,0.44722 +,, +12,0.020260018711128914,0.4356205 +,, +13,0.014094818484569503,0.40128922 +,, +14,-0.05088092717512334,0.40109587 +,, +15,0.06486464927783905,0.39908072 +,, +16,0.02199302086176373,0.40538663 +,, +17,-0.08181595181726035,0.4022921 +,, +18,0.010400370095106078,0.40471846 +,, +19,-0.06469914272436295,0.41447744 +,, +20,0.03164617759999992,0.4064266 +,, +21,0.013647868901571733,0.394135 +,, +22,0.059040381513660554,0.38421816 +,, +23,0.07292809765811574,0.38059896 +,, +24,0.02965757406161727,0.375098 +,, +25,0.039408359405948105,0.35202464 +,, +26,0.07715479556241465,0.3352399 +,, +27,-0.06579425803479504,0.32589594 +,, +28,0.09697041405546114,0.30648553 +,, +29,-0.05506000816357904,0.2859203 +,, +30,0.09230191494876269,0.27834338 +,, +31,-0.003420850372352749,0.27918825 +,, +32,-0.06123738187375632,0.2702306 +,, +33,-0.015665033484520544,0.27846462 +,, +34,-0.01793943870673976,0.27542943 +,, +35,-0.0572800881226546,0.2760417 +,, +36,0.003775550960399804,0.27595618 +,, +37,-0.08605593894008037,0.2824224 +,, +38,-0.03395586114695682,0.27706552 +,, +39,-0.02883038758797562,0.2727928 +,, +40,-0.1428969361641263,0.26850787 +,, +41,0.030507326699337714,0.2573467 +,, +42,-0.06469152036155551,0.25539646 +,, +43,-0.1940582524450526,0.22965717 +,, +44,-0.05165254280146107,0.22312912 +,, +45,-0.005032566136971894,0.21917558 +,, +46,0.012768284628668622,0.21286908 +,, +47,-0.14690323271502115,0.1969879 +,, +48,-0.0633912273928432,0.19592378 +,, +49,-0.0077337880909400785,0.19245319 +,, +50,0.010055808519305744,0.1892899 +,, +51,0.05565528811671851,0.19675265 +,, +52,-0.01893804793796406,0.19165997 +,, +53,-0.02471728430264604,0.1926342 +,, +54,0.001688472100386508,0.18765154 +,, +55,-0.06750642904291106,0.18326017 +,, +56,-0.07213729588116477,0.1734732 +,, +57,0.06864192059651181,0.17428835 +,, +58,-0.03413859823879467,0.17213002 +,, +59,0.055889483565035675,0.16819453 +,, +60,-0.01208415379468323,0.16590077 +,, +61,0.04484613610435702,0.15662189 +,, +62,0.003790318910753099,0.15810056 +,, +63,-0.037780757253236916,0.15849526 +,, +64,0.058186433585903086,0.15460253 +,, +65,0.07722056862787358,0.1517772 +,, +66,-0.037000832938155766,0.15379944 +,, +67,0.16489113543165612,0.14935191 +,, +68,-0.009836479529017091,0.14908016 +,, +69,-0.04792057793475726,0.15192051 +,, +70,0.031020922552631502,0.14853875 +,, +71,-0.021810534104607655,0.14685132 +,, +72,-0.01870776434370288,0.13775438 +,, +73,-0.016606723033320683,0.13657515 +,, +74,-0.01261841761228609,0.14103243 +,, +75,-0.02834921980990256,0.13629177 +,, +76,-0.0167268610784938,0.13484542 +,, +77,-0.15424866286864775,0.13554354 +,, +78,0.07864053306685811,0.13096239 +,, +79,0.003804060205201021,0.12819044 +,, +80,0.019703697347858776,0.12955162 +,, +81,0.0901114196169969,0.12832956 +,, +82,-0.05294927024401945,0.13284071 +,, +83,-0.08143218153631776,0.12788132 +,, +84,2.4524154211214705e-05,0.12010696 +,, +85,-0.00419798423752385,0.12400609 +,, +86,0.05760512098521858,0.12114714 +,, +87,-0.06924358382876558,0.12049351 +,, +88,0.013180055790021506,0.117591545 +,, +89,0.05264955467594111,0.11618533 +,, +90,0.05954265914591055,0.11202963 +,, +91,0.06736014433497006,0.10749795 +,, +92,0.040127437209722006,0.10089743 +,, +93,0.0005411513239353266,0.10151825 +,, +94,-0.06440268338061331,0.10420946 +,, +95,-0.061186654307334186,0.10103506 +,, +96,-0.03769767735959606,0.097031645 +,, +97,-0.013734128944895244,0.09652333 +,, +98,0.025391299970801376,0.09672431 +,, +99,-0.0012018688506828974,0.09413188 +,, +100,0.031246165889084195,0.09722036 +,, +101,0.05606371247770469,0.09866486 +,, +102,-0.0052248589265011525,0.098303795 +,, +103,-0.09008899098591133,0.09725959 +,, +104,0.06047559295347735,0.098537505 +,, +105,0.10004876480265036,0.09504741 +,, +106,-0.011696765667644667,0.098326646 +,, +107,0.019053545041955486,0.09678003 +,, +108,-0.016937232170507584,0.09677333 +,, +109,-0.10840627040984145,0.09431489 +,, +110,-0.004478232734813799,0.09145598 +,, +111,-0.05447126763366586,0.08987512 +,, +112,0.04047592417948111,0.09513543 +,, +113,0.040198262844531006,0.093599126 +,, +114,0.06358026679901653,0.08917842 +,, +115,-0.0027592020601337336,0.09043958 +,, +116,-0.038898052308561616,0.08764857 +,, +117,0.029223615746544848,0.08793067 +,, +118,-0.055275073351664025,0.08886134 +,, +119,0.06282490644845938,0.08878454 +,, +120,0.009694095447380278,0.09203519 +,, +121,0.049364341670579945,0.09488541 +,, +122,0.0660552372825069,0.0933571 +,, +123,-0.018460492952859228,0.091652706 +,, +124,0.00668692545916201,0.09163402 +,, +125,0.05366099966163326,0.09070408 +,, +126,0.027803273087286653,0.089621276 +,, +127,-0.10188633192399879,0.08641612 +,, +128,-0.04319237798558195,0.082999505 +,, +129,0.03287738112570959,0.08350495 +,, +130,-0.04676306105062465,0.081158616 +,, +131,-0.06961205457742062,0.076140806 +,, +132,0.05746987789783435,0.07255548 +,, +133,-0.017186094701867424,0.07368334 +,, +134,0.07239957230791547,0.072576866 +,, +135,0.056827912525665346,0.07336119 +,, +136,0.007064087502813121,0.07360689 +,, +137,0.04156893201120615,0.074170314 +,, +138,-0.05955132629597856,0.07597777 +,, +139,-0.03543491318038875,0.075255744 +,, +140,-0.0007248281045855211,0.071989335 +,, +141,-0.04160826448525713,0.07520542 +,, +142,0.053043561970474995,0.0753596 +,, +143,-0.09752887885630801,0.07662775 +,, +144,-0.008927385379662027,0.077184625 +,, +145,-0.018969500485476614,0.07795949 +,, +146,0.004948923393915561,0.07859997 +,, +147,-0.03738682986296167,0.07880659 +,, +148,0.08410581416528307,0.07766412 +,, +149,-0.08427811936818935,0.07902576 +,, +150,-0.10219661459765009,0.079748586 +,, +151,-0.08538368807914044,0.07685062 +,, +152,-0.05280930822453462,0.07658921 +,, +153,-0.021494064461946016,0.07520914 +,, +154,-0.0466558873170595,0.07570366 +,, +155,0.004652346065284935,0.07410152 +,, +156,-0.03190235868033307,0.074178524 +,, +157,-0.12714656786776907,0.07349205 +,, +158,0.05558574145662826,0.072328135 +,, +159,-0.027602288438766484,0.07030443 +,, +160,-0.012121569335871711,0.06974628 +,, +161,0.0042170225291003754,0.07045316 +,, +162,0.054518602989257016,0.070341855 +,, +163,0.008505103272480781,0.0749472 +,, +164,-0.07517348734663583,0.07200081 +,, +165,0.0015118290275069508,0.072234765 +,, +166,-0.0048632041819149235,0.06968574 +,, +167,-0.027617993210140135,0.06747711 +,, +168,0.041219293846628674,0.068632185 +,, +169,-0.1688001164780486,0.07016902 +,, +170,0.0011579060756107817,0.06920503 +,, +171,0.09534801329969689,0.06865578 +,, +172,0.0036058325779500452,0.068018794 +,, +173,-0.055577207082622704,0.060454153 +,, +174,-0.08509984435095894,0.060338758 +,, +175,0.021846122508595876,0.05821512 +,, +176,0.0062784257440649666,0.061771907 +,, +177,-0.029561994789425998,0.061037354 +,, +178,0.03371372236153858,0.05939 +,, +179,-0.07375925131055158,0.058682185 +,, +180,0.019471140583854817,0.061186206 +,, +181,-0.039128905129354866,0.06249378 +,, +182,0.007995417852655444,0.062954776 +,, +183,0.022997506605241483,0.063530326 +,, +184,-0.01616277020560963,0.06510935 +,, +185,-0.03516412584325813,0.066021495 +,, +186,0.026610439312628506,0.06407362 +,, +187,0.03584030384902505,0.06525252 +,, +188,-0.013402224719497495,0.06584628 +,, +189,-0.058468256958206545,0.06453097 +,, +190,-0.15287485915176013,0.06360158 +,, +191,0.02499894795450157,0.06385478 +,, +192,-0.03602347423396706,0.06277536 +,, +193,0.0822957316807156,0.06564377 +,, +194,0.09537306455917288,0.0660685 +,, +195,-0.04264542439253931,0.06663888 +,, +196,-0.04903094675518305,0.06857444 +,, +197,-0.008097104413352728,0.06884728 +,, +198,0.005208407341452663,0.06818736 +,, +199,-0.034129050760656865,0.06983349 +,, +200,0.004138726373828668,0.06811339 +,, +201,-0.1658210799424223,0.06616482 +,, +202,0.011928661449821347,0.06590567 +,, +203,0.06671088516088758,0.06592958 +,, +204,-0.05315543957183376,0.06354184 +,, +205,0.07260513057644993,0.06171415 +,, +206,0.06264038305732117,0.061320703 +,, +207,-0.014083263371369545,0.059749436 +,, +208,-0.052356860052652276,0.059748657 +,, +209,0.03516964983737101,0.05967269 +,, +210,0.03483020609640737,0.0627072 +,, +211,-0.05064365550615956,0.06190454 +,, +212,0.09926846613070783,0.06425017 +,, +213,0.21675546571671328,0.06392668 +,, +214,-0.0006629370602219374,0.06618197 +,, +215,0.019300774866338882,0.06672396 +,, +216,-0.0029949572807723597,0.06532984 +,, +217,0.009022160633697318,0.066146486 +,, +218,0.021424672332681027,0.064975806 +,, +219,-0.1370428320358387,0.0630003 +,, +220,-0.1263073526674081,0.060314745 +,, +221,-0.007199659708938079,0.0624517 +,, +222,-0.04606431709937521,0.060216933 +,, +223,0.030528031003868694,0.05960244 +,, +224,0.11642228444352737,0.05884903 +,, +225,0.08798382414965182,0.05948279 +,, +226,0.12510608317916605,0.059296004 +,, +227,0.005247978410988889,0.057963468 +,, +228,-0.12011074459974681,0.05948673 +,, +229,0.02305070741536739,0.06030799 +,, +230,-0.06919136145874824,0.06217482 +,, +231,-0.04248519682159654,0.060006768 +,, +232,0.027413897342889394,0.059678555 +,, +233,0.06480566892402631,0.056896836 +,, +234,0.011794332489718888,0.05519135 +,, +235,-0.033414976961672775,0.05357951 +,, +236,0.004370188018816366,0.053739198 +,, +237,0.01266243714334778,0.054819513 +,, +238,0.03534773500446851,0.054516714 +,, +239,-0.00941368730392153,0.055505436 +,, +240,-0.09624601027960789,0.05397337 +,, +241,-0.03564599107309141,0.053612806 +,, +242,-0.07033128027438884,0.056304086 +,, +243,0.008763489192106948,0.05672614 +,, +244,-0.09224802504461628,0.058642082 +,, +245,0.09192606928438854,0.060372073 +,, +246,-0.0780569087214561,0.06131935 +,, +247,-0.05294502399429479,0.06267763 +,, +248,-0.02513963675836025,0.06262267 +,, +249,0.025386489168892308,0.06004439 +,, +250,-0.07812552989332283,0.059957266 +,, +251,-0.027817110439582036,0.062695615 +,, +252,-0.018372920996314726,0.06092366 +,, +253,-0.03179238497792719,0.062162317 +,, +254,0.07988412339447279,0.061132085 +,, +255,0.065270064161671,0.05924613 +,, +256,-0.07879394139616555,0.060434055 +,, +257,-0.05240179818220318,0.057571102 +,, +258,0.0021650575916509138,0.05639541 +,, +259,-0.028930455150298656,0.057101797 +,, +260,-0.10790236355795878,0.05618251 +,, +261,-0.11608161750438739,0.05464252 +,, +262,0.033710663713154954,0.05428974 +,, +263,-0.010297134897722077,0.052216798 +,, +264,0.01654125583279644,0.051262338 +,, +265,0.10387555429001331,0.050855733 +,, +266,-0.057599723180217485,0.04840196 +,, +267,-0.13116547790804461,0.049175605 +,, +268,-0.0024357738893189505,0.049470197 +,, +269,0.08299521792435781,0.050518066 +,, +270,0.05921280483151353,0.051476307 +,, +271,-0.057348693632200756,0.051011473 +,, +272,0.04285267330270162,0.049953796 +,, +273,0.056708596936533184,0.05097891 +,, +274,-0.21568673622071247,0.05294041 +,, +275,-0.037294484006957826,0.05349181 +,, +276,0.003508923521395972,0.052047722 +,, +277,-0.14655161557613863,0.051791944 +,, +278,0.06815068599007254,0.051755946 +,, +279,0.09343233210295808,0.04898694 +,, +280,-0.05036639797795866,0.048101082 +,, +281,0.03075262104989421,0.048442706 +,, +282,0.02399870179510219,0.04843736 +,, +283,0.06886523825947885,0.04744278 +,, +284,-0.029914984200146728,0.046123512 +,, +285,0.010781599723364128,0.044650167 +,, +286,0.03432330145707096,0.045727085 +,, +287,-0.048517462265914066,0.046573404 +,, +288,-0.12668029905964656,0.045426007 +,, +289,-0.03421671925951346,0.046911374 +,, +290,-0.1029958779906015,0.04829799 +,, +291,-0.0443435579362626,0.047202215 +,, +292,-0.04644432266900804,0.047759354 +,, +293,-0.020234740319118958,0.04901324 +,, +294,0.08049549760178046,0.049171332 +,, +295,-0.021445890259067412,0.050798703 +,, +296,-0.08838715768270844,0.050071336 +,, +297,0.07010227237412164,0.04819747 +,, +298,-0.0204844508561459,0.051176287 +,, +299,-0.01257314758957086,0.050809048 +,, +300,0.11599132797706084,0.050406896 +,, +301,0.02395883382159309,0.05174283 +,, +302,-0.03031908651229813,0.05258121 +,, +303,-0.038869070131559866,0.0546092 +,, +304,0.0065911585234046804,0.054850496 +,, +305,-0.0544071025166122,0.05508005 +,, +306,-0.02181883142842557,0.05548368 +,, +307,0.016700614826639253,0.057017952 +,, +308,-0.0446918544671713,0.05396073 +,, +309,-0.007393282661759509,0.053436358 +,, +310,0.05098361025603943,0.052189868 +,, +311,-0.04478487521908052,0.051170953 +,, +312,-0.019279673611017935,0.051373493 +,, +313,-0.016196522711188793,0.051005155 +,, +314,-0.07224166257727319,0.050715476 +,, +315,0.06664824100436731,0.048216157 +,, +316,0.013927946653608352,0.046970457 +,, +317,-0.12265744462351086,0.04634898 +,, +318,-0.008024444785160479,0.047595352 +,, +319,0.004078601506568115,0.04812552 +,, +320,0.025341261508276553,0.048778407 +,, +321,0.08137562196855097,0.048348833 +,, +322,-0.0665820686592837,0.048585653 +,, +323,0.02339502339993557,0.047750764 +,, +324,0.013413110200652691,0.047169484 +,, +325,-0.06970379634403774,0.051051043 +,, +326,-0.11309850516640384,0.050783254 +,, +327,-0.036919492719215324,0.05024145 +,, +328,0.05000344923525762,0.049518358 +,, +329,-0.022853386512643896,0.050671153 +,, +330,0.01911601613565034,0.04976202 +,, +331,0.014857812782539628,0.04918482 +,, +332,0.06105787879744988,0.046014633 +,, +333,0.22453708866006714,0.04446416 +,, +334,0.13925662145720288,0.047265183 +,, +335,-0.2103927577469103,0.045637976 +,, +336,-0.057360026705789026,0.04610682 +,, +337,0.0034143644456179224,0.04625579 +,, +338,-0.030975848316924355,0.045840107 +,, +339,0.0898576458993762,0.04537605 +,, +340,0.12293292138168338,0.044669002 +,, +341,-0.04315433361867953,0.045253754 +,, +342,-0.07272856149162166,0.045383714 +,, +343,0.042887047856543126,0.044924565 +,, +344,0.040104046282334674,0.043362886 +,, +345,-0.15292654885786883,0.041840345 +,, +346,-0.012110621252721561,0.043310747 +,, +347,-0.13673453756038825,0.044173524 +,, +348,0.04966012013578201,0.045624156 +,, +349,-0.12840230070084718,0.047848817 +,, +350,0.1166549375343821,0.047799133 +,, +351,0.03889928684335889,0.047366858 +,, +352,0.07132443939554158,0.04888399 +,, +353,0.05865793107960791,0.049352866 +,, +354,0.0555963164208824,0.051599108 +,, +355,-0.09318727071480905,0.05342742 +,, +356,0.12055142703281158,0.05273967 +,, +357,0.02384343308025396,0.051974278 +,, +358,0.04471017163455158,0.05059583 +,, +359,-0.018399897858626668,0.04586927 +,, +360,0.17059230480407195,0.047620047 +,, +361,-0.0801441033311628,0.047107298 +,, +362,0.08782818858488664,0.047237623 +,, +363,0.07596505355339213,0.048508685 +,, +364,-0.05321806996856428,0.045510255 +,, +365,0.019261136257807582,0.043865245 +,, +366,0.07363721466205507,0.041885465 +,, +367,-0.021372672473465585,0.04296519 +,, +368,-0.03431474146836825,0.04382933 +,, +369,0.1173269168486109,0.046098553 +,, +370,0.1170920428662896,0.04480189 +,, +371,0.13842539455085232,0.044245582 +,, +372,0.06679305615080297,0.0439245 +,, +373,-0.012333344417111152,0.043942112 +,, +374,-0.11492222263854454,0.043682896 +,, +375,0.11365827792301203,0.043958686 +,, +376,-0.06141648949398026,0.04454767 +,, +377,0.009343273502095021,0.04306534 +,, +378,-0.15127462502797992,0.041446973 +,, +379,0.0239656146624456,0.04100363 +,, +380,-0.05990836282917339,0.04180368 +,, +381,-0.054752004010401506,0.042992603 +,, +382,-0.011603265397390896,0.043098643 +,, +383,0.032732712448305785,0.043514136 +,, +384,0.062280070262957135,0.04369066 +,, +385,-0.09601287277973038,0.04326322 +,, +386,0.02773072018571547,0.044685632 +,, +387,-0.06550580605847622,0.04526978 +,, +388,-0.037628225052896085,0.04619179 +,, +389,-0.02069732754075837,0.04565365 +,, +390,-0.054137075487572316,0.0453593 +,, +391,-0.09881835683809098,0.044717014 +,, +392,-0.06777688904389677,0.04368487 +,, +393,0.042862412032772135,0.04057418 +,, +394,0.015446714988495147,0.039496467 +,, +395,-0.03178419374265995,0.041491378 +,, +396,0.05627347854064862,0.040550705 +,, +397,-0.1260960695182908,0.040151957 +,, +398,-0.07821315979364724,0.040751856 +,, +399,-0.11337399517450185,0.041047078 +,, +400,0.06827274215360495,0.040643338 +,, +401,0.057662284692915115,0.040522076 +,, +402,-0.05155093261179021,0.040857714 +,, +403,0.04326938328995245,0.041983295 +,, +404,-0.07850610982450874,0.041991167 +,, +405,0.10278079539358675,0.04240365 +,, +406,-0.004367711559915943,0.042375665 +,, +407,-0.019400600597429936,0.043141805 +,, +408,-0.021239545572485558,0.041378472 +,, +409,0.017973485045575853,0.04113335 +,, +410,-0.07370250211793461,0.040811963 +,, +411,0.11753762199998344,0.041282825 +,, +412,-0.0028869583846700183,0.042308565 +,, +413,-0.02983163776885533,0.041298993 +,, +414,-0.10015628929965796,0.042077266 +,, +415,0.07150590247660701,0.039507 +,, +416,0.08932562691517001,0.039639987 +,, +417,-0.03946813667592485,0.03933642 +,, +418,-0.05568322631267038,0.04217129 +,, +419,0.11088748528979547,0.043428592 +,, +420,0.01782134561217862,0.044488728 +,, +421,-0.06701933308319144,0.044093788 +,, +422,0.05042472174772286,0.043048836 +,, +423,0.016187716005821296,0.04314921 +,, +424,0.00999933311845496,0.04349237 +,, +425,0.007867606440707454,0.04452821 +,, +426,0.048701053268916765,0.04426225 +,, +427,0.003196312336404543,0.04360787 +,, +428,-0.060794856982666214,0.043667957 +,, +429,-0.056114934883239556,0.042218983 +,, +430,-0.028371609597057305,0.0419866 +,, +431,0.04573134144434944,0.041578658 +,, +432,0.0002625523604083205,0.04186579 +,, +433,-0.032081557705101224,0.04387967 +,, +434,-0.01356557941669478,0.04383936 +,, +435,0.02281165898907131,0.044992246 +,, +436,0.03474179506410603,0.044400357 +,, +437,0.031547577699458096,0.045319177 +,, +438,-0.10544162191078811,0.043344233 +,, +439,-0.11929373963731557,0.04432697 +,, +440,0.006624434763871482,0.04481327 +,, +441,-0.10421267303724685,0.045533992 +,, +442,0.008433987291757036,0.043996777 +,, +443,-0.08330572270329298,0.0417896 +,, +444,-0.07139467413110184,0.04127677 +,, +445,0.03622306338833857,0.038586713 +,, +446,-0.09080534548230873,0.039206453 +,, +447,0.035762538058633025,0.038004704 +,, +448,0.06156516054057509,0.03785272 +,, +449,0.004228018769508148,0.036497425 +,, +450,-0.028561102900857848,0.034876965 +,, +451,-0.004914384072864993,0.034173798 +,, +452,-0.03236972736684532,0.03518618 +,, +453,0.008477517632583205,0.035749175 +,, +454,-0.03529919030510192,0.03567919 +,, +455,0.11109532891271774,0.036438446 +,, +456,-0.0036328618264120267,0.03529737 +,, +457,0.03142214703052339,0.035979748 +,, +458,-0.012038646237300818,0.036433093 +,, +459,0.005871122349447297,0.03787488 +,, +460,-0.04516870008491149,0.038683094 +,, +461,-0.007511527207690827,0.039051373 +,, +462,0.018872282062163237,0.039357126 +,, +463,0.07382025720325511,0.03825305 +,, +464,0.02599702204997792,0.03832134 +,, +465,0.1313430749818451,0.03921164 +,, +466,-0.1173466998352873,0.039929666 +,, +467,0.11847919926469064,0.039560802 +,, +468,-0.1166690768544679,0.03878637 +,, +469,-0.07654653455116621,0.03827966 +,, +470,-0.023018588139784003,0.037641738 +,, +471,-0.0721957842580236,0.038357873 +,, +472,0.10855328065986136,0.038132764 +,, +473,-0.07029985443957411,0.03891701 +,, +474,0.06923139816387038,0.038103554 +,, +475,-0.000647073527499242,0.03621999 +,, +476,-0.01336498599030679,0.036580242 +,, +477,-0.023770764871031726,0.036139347 +,, +478,0.00929820981708901,0.03563816 +,, +479,2.332703619548765e-05,0.035266772 +,, +480,-0.056603153756934164,0.035108875 +,, +481,0.012717908499704132,0.03506776 +,, +482,0.12410701398898877,0.034106456 +,, +483,0.046843922186421055,0.033619884 +,, +484,0.06301424405041971,0.034672335 +,, +485,0.008271173066154103,0.03652858 +,, +486,-0.18220638895533697,0.037528615 +,, +487,0.035576742627483664,0.038261674 +,, +488,0.02381576182652656,0.039350253 +,, +489,0.1265066263936208,0.0382124 +,, +490,-0.061997916018150856,0.03865268 +,, +491,0.04727840062558221,0.037496835 +,, +492,0.04986683264972511,0.03886371 +,, +493,-0.09289849553017246,0.038803898 +,, +494,0.09936259990220889,0.03859285 +,, +495,0.02343644713421349,0.037241153 +,, +496,-0.06349028997224966,0.036005683 +,, +497,0.006394597611667711,0.035168167 +,, +498,-0.03249578677926246,0.034892336 +,, +499,0.05198304429127918,0.035247844 +,, +500,0.006460415405970135,0.03583549 +,, +501,-0.030181908384525134,0.03733476 +,, +502,0.0845450294185937,0.037066884 +,, +503,0.037608671109949345,0.036854826 +,, +504,0.01720498207975473,0.037260495 +,, +505,-0.020293895800996515,0.037195526 +,, +506,0.09517694143100805,0.03681703 +,, +507,0.14364173622160842,0.03714765 +,, +508,-0.04507513374980392,0.03735614 +,, +509,-0.08394670251038402,0.03867663 +,, +510,0.004838658910816767,0.037212465 +,, +511,0.007740972723720034,0.03521788 +,, +512,0.012222860424261392,0.036547348 +,, +513,0.09563446795144154,0.037850987 +,, +514,0.019400189083648427,0.03790846 +,, +515,0.11029755716929993,0.037776686 +,, +516,-0.05266411363650682,0.038909797 +,, +517,0.05736749730031106,0.038011245 +,, +518,-0.022142734783182235,0.038414802 +,, +519,-0.0002193025229693217,0.038682684 +,, +520,0.07547008009594963,0.03936618 +,, +521,-0.05105243492813531,0.0401329 +,, +522,-0.07758443942658044,0.037935577 +,, +523,-0.02484362463280405,0.037657436 +,, +524,-0.11883907846805768,0.036557578 +,, +525,-0.09097922070509731,0.036983322 +,, +526,0.025527686427087023,0.035910983 +,, +527,-0.030787815106179464,0.036941655 +,, +528,-0.05581011196803854,0.036313415 +,, +529,-0.013569574713874807,0.034566753 +,, +530,-0.08464393762064697,0.03446619 +,, +531,0.012856636181466327,0.034713157 +,, +532,0.027214212285688696,0.036472194 +,, +533,-0.040592284980554866,0.035231292 +,, +534,-0.09322066466002149,0.035995197 +,, +535,0.1076498119335065,0.03676777 +,, +536,-0.03641205927627093,0.037174717 +,, +537,0.0196526525118127,0.03749975 +,, +538,-0.018763231715306056,0.037383832 +,, +539,0.023001855665461257,0.03777265 +,, +540,0.027882860750632135,0.03784097 +,, +541,0.07807192990198497,0.036639057 +,, +542,-0.11680976604223625,0.035638865 +,, +543,-0.09320486764887041,0.036030825 +,, +544,-0.024795307921371076,0.035704833 +,, +545,0.003167770200000336,0.034461215 +,, +546,0.02683017106660849,0.034431677 +,, +547,0.09184725920905142,0.033069186 +,, +548,-0.17047707070523382,0.032823406 +,, +549,-0.0024359272831675494,0.03383097 +,, +550,-0.016004866353544082,0.03324308 +,, +551,0.03626060200266385,0.03337992 +,, +552,-0.04613009030409869,0.03336678 +,, +553,0.10207899842116565,0.033796065 +,, +554,-0.02560059289199476,0.033875298 +,, +555,-0.0253674926077913,0.033707503 +,, +556,0.06734350320155977,0.03477437 +,, +557,0.09611706322632466,0.037721146 +,, +558,0.08628917603971367,0.037171803 +,, +559,0.029938300366680937,0.03746583 +,, +560,-0.06515347041416136,0.03680097 +,, +561,0.03335623194496582,0.037690498 +,, +562,0.07068229645362764,0.037210356 +,, +563,-0.015434192410486228,0.036322925 +,, +564,-0.07566881345071604,0.037201725 +,, +565,-0.10598260879634634,0.037067797 +,, +566,0.043676812105548274,0.0362378 +,, +567,-0.05023694877108777,0.034831397 +,, +568,0.03592433754886816,0.035759993 +,, +569,-0.0245868819030899,0.034532867 +,, +570,0.023704964917549066,0.03503443 +,, +571,0.005449678296624377,0.03428251 +,, +572,0.01629996746515936,0.03483584 +,, +573,-0.08647437863148622,0.03531785 +,, +574,-0.031730259680607865,0.0360641 +,, +575,-0.009243581835534607,0.036605097 +,, +576,0.0012869715364923068,0.03552351 +,, +577,0.00987247283414922,0.034539882 +,, +578,-0.04580446945918369,0.033754088 +,, +579,-0.05248845185989502,0.034340445 +,, +580,0.01910563274043569,0.034343418 +,, +581,-0.029732200429404977,0.033559937 +,, +582,0.02805633587415016,0.032644056 +,, +583,0.018230683033252384,0.03298333 +,, +584,-0.06913484157785232,0.03146042 +,, +585,0.07750478433975486,0.032784816 +,, +586,-0.10409145300026085,0.033799257 +,, +587,0.015028003952802411,0.034174956 +,, +588,-0.0016627018922751036,0.034603573 +,, +589,0.039379272665793094,0.03349266 +,, +590,-0.03717608971353893,0.034142423 +,, +591,-0.013253493391982521,0.03479029 +,, +592,0.050557053263539944,0.03450986 +,, +593,0.009656270242760528,0.034693528 +,, +594,0.03595681308249018,0.033304214 +,, +595,0.1118361045258099,0.032109775 +,, +596,-0.0726463966323607,0.031864252 +,, +597,-0.0907415363722686,0.030815398 +,, +598,0.01545456018043593,0.029445121 +,, +599,0.04739099372139693,0.030023491 +,, +600,-0.09954346985279808,0.029509742 +,, +601,-0.046591721441171324,0.02955753 +,, +602,-0.033183474799419216,0.029665494 +,, +603,-0.03525015429875161,0.029646825 +,, +604,0.040861121213991894,0.031129738 +,, +605,-0.05550719449587084,0.030378044 +,, +606,0.08100339420483918,0.02960462 +,, +607,0.18290521189881034,0.030322623 +,, +608,-0.003561141056043639,0.032099858 +,, +609,0.04421590573442166,0.031497665 +,, +610,-0.027022049024704765,0.03245721 +,, +611,-0.014129160197525158,0.03226036 +,, +612,0.050237160547091375,0.033365626 +,, +613,0.03411046396527229,0.032781415 +,, +614,-0.03150562974154454,0.032474138 +,, +615,0.020289487616959548,0.033486746 +,, +616,0.14298674357603108,0.0338382 +,, +617,0.06333724023236299,0.033649676 +,, +618,-0.09876518790301571,0.032934792 +,, +619,-0.017787238413447537,0.03315308 +,, +620,-0.06113129641018884,0.03229132 +,, +621,0.0004097465586997001,0.0327541 +,, +622,0.0748677231998898,0.031698115 +,, +623,-0.06304196670897853,0.032262318 +,, +624,0.02290951419717857,0.03194316 +,, +625,-0.13509725543648005,0.031548526 +,, +626,0.1642476253358116,0.03101631 +,, +627,0.0475621724818929,0.031343438 +,, +628,-0.0989451136808458,0.031631738 +,, +629,0.001806136989124161,0.031573154 +,, +630,0.03575076472730558,0.031537663 +,, +631,-0.015713176986567438,0.03145404 +,, +632,-0.011412783318460948,0.032795534 +,, +633,-0.1573590043188093,0.033159014 +,, +634,0.051197260935997704,0.03244157 +,, +635,-0.015648741723209715,0.03138875 +,, +636,0.04539720546226326,0.03282702 +,, +637,0.055997019572825664,0.033254016 +,, +638,0.050046560679039745,0.032730367 +,, +639,0.059690832142508206,0.032393552 +,, +640,-0.13408434274285247,0.032702588 +,, +641,-0.04737578711607202,0.032438923 +,, +642,-0.0011484368374115074,0.03167278 +,, +643,-0.042956188888454566,0.03203782 +,, +644,0.0672840507391829,0.033848215 +,, +645,0.04193511818755946,0.03518135 +,, +646,-0.13224261649336505,0.034817737 +,, +647,0.03615962842830506,0.03450574 +,, +648,-0.05921118245988921,0.034160025 +,, +649,0.034585429013968355,0.033882897 +,, +650,0.13821800531783746,0.0326714 +,, +651,-0.02574127578721507,0.032752864 +,, +652,-0.07554246095238479,0.032670703 +,, +653,-0.01171158791788188,0.03110286 +,, +654,0.054895815022166894,0.030341158 +,, +655,-0.09182230439481992,0.029916978 +,, +656,-0.07706702001142912,0.02941716 +,, +657,0.0031212262423835208,0.02865209 +,, +658,0.0536866261749909,0.02901752 +,, +659,-0.12673550359961858,0.029792726 +,, +660,0.0514536401379779,0.029873054 +,, +661,0.06388010585588144,0.030676743 +,, +662,0.029850061448858038,0.031062389 +,, +663,0.059091177465446364,0.03166271 +,, +664,-0.03726164500466428,0.031490974 +,, +665,0.0016654909347958782,0.03088668 +,, +666,-0.10919767307186776,0.03148003 +,, +667,-0.058070577585933175,0.031402674 +,, +668,0.011298704896576334,0.031179061 +,, +669,-0.0002795900974394139,0.03079604 +,, +670,0.00939797034660398,0.031088773 +,, +671,-0.02983927711443467,0.030224254 +,, +672,-0.07726254299889007,0.029808868 +,, +673,-0.016619004715299632,0.02891534 +,, +674,-0.12712117295078212,0.028422376 +,, +675,0.062930245443211,0.030108148 +,, +676,-0.04975221038144957,0.0293192 +,, +677,0.029347609512849992,0.029605547 +,, +678,-0.046860613862309636,0.02997067 +,, +679,-0.011988990937485199,0.030485094 +,, +680,0.07209969893845634,0.030837243 +,, +681,0.08502712501921023,0.0318379 +,, +682,-0.06541179809452596,0.03163385 +,, +683,-0.035258948025055525,0.03240539 +,, +684,-0.07022477873032902,0.031963926 +,, +685,-0.025770698614884978,0.03049387 +,, +686,0.0971951395827489,0.031243065 +,, +687,-0.0353179773312908,0.031507593 +,, +688,0.1208553150620856,0.031517994 +,, +689,0.041973201014161535,0.030255804 +,, +690,0.040432237402029766,0.030702427 +,, +691,-0.05841687822909725,0.029409861 +,, +692,-0.03497125972916265,0.029511292 +,, +693,0.03332747929062348,0.029403899 +,, +694,0.06220410954898399,0.029586393 +,, +695,-0.007582682832171034,0.029786084 +,, +696,-0.08657803619102726,0.028874695 +,, +697,0.020954513609343563,0.029097546 +,, +698,0.07697545804924258,0.028396994 +,, +699,-0.0007701601593987847,0.028549176 +,, +700,0.00027138771984826573,0.028347254 +,, +701,0.012501580542189746,0.028963346 +,, +702,-0.021933678820436824,0.029113691 +,, +703,-0.05876425792161384,0.028970605 +,, +704,0.022448689186512383,0.029578626 +,, +705,-0.024741171502913183,0.029758623 +,, +706,0.07024592182670505,0.029879963 +,, +707,-3.455392412546332e-06,0.029372385 +,, +708,-0.05692812598655701,0.029560158 +,, +709,-0.12189871425744864,0.030831715 +,, +710,-0.08082443231798665,0.030472606 +,, +711,-0.04761197247352367,0.030901596 +,, +712,-0.08465813838160577,0.030884814 +,, +713,-0.02015685160253866,0.030973446 +,, +714,-0.030653807270762903,0.030331686 +,, +715,0.004109101786782587,0.030228352 +,, +716,-0.011134673929485556,0.030201033 +,, +717,0.15070211073931433,0.030105922 +,, +718,-0.04373906949288411,0.029680336 +,, +719,0.11944460370126599,0.029252997 +,, +720,0.04443246717607573,0.028861081 +,, +721,0.009566175440735788,0.028029975 +,, +722,0.07005646727014335,0.027789643 +,, +723,0.012317549237806064,0.02665713 +,, +724,-0.006486950070711222,0.027247768 +,, +725,-0.07380999126739299,0.027117502 +,, +726,0.030342666870275148,0.026762832 +,, +727,-0.01646316476661627,0.026845485 +,, +728,0.00800633437367465,0.027942032 +,, +729,0.07093880497083052,0.027209243 +,, +730,0.0900558550533383,0.028276464 +,, +731,-0.08915191668993697,0.02874479 +,, +732,0.0036300029176953574,0.028927535 +,, +733,-0.0319514550089354,0.02926426 +,, +734,-0.03601785124591049,0.028208151 +,, +735,0.14630098463622337,0.028037066 +,, +736,-0.0018882070571262302,0.027652774 +,, +737,-0.02740176995754582,0.027336884 +,, +738,0.10986174291184236,0.027784968 +,, +739,-0.018303710459934702,0.027967233 +,, +740,-0.009786952813137823,0.02673966 +,, +741,-0.07459215443300289,0.026887584 +,, +742,-0.023013715274154876,0.02652139 +,, +743,-0.10348277931698703,0.027052816 +,, +744,-0.10420797690940951,0.026686698 +,, +745,0.00821303708397901,0.026838785 +,, +746,-0.07839719118859417,0.02759608 +,, +747,-0.005139845407545789,0.027862066 +,, +748,0.008371755637638784,0.026777467 +,, +749,-0.06636817688700758,0.02664693 +,, +750,-0.11754860888254626,0.026810069 +,, +751,-0.016327197665331594,0.026764642 +,, +752,0.024506696503908416,0.02680698 +,, +753,-0.039434903905060305,0.027694654 +,, +754,0.05146500352225794,0.028346315 +,, +755,-0.10144270481234732,0.028019572 +,, +756,-0.015084426753249863,0.027854213 +,, +757,0.0640763769835465,0.027867887 +,, +758,0.038104977587021784,0.027472273 +,, +759,-0.08928318430398884,0.028287416 +,, +760,0.1805142529330903,0.028847864 +,, +761,-0.07805219970649725,0.027838284 +,, +762,0.12699728619163758,0.028204313 +,, +763,0.060825178751074106,0.027740236 +,, +764,0.004867684260977556,0.027531907 +,, +765,-0.023389298700690914,0.028134564 +,, +766,-0.03580443203285445,0.02755475 +,, +767,-0.08222018344449834,0.026865993 +,, +768,0.11542710929305214,0.0271254 +,, +769,0.08992539336589037,0.026092941 +,, +770,0.03231789145660453,0.025609557 +,, +771,-0.05738506192141485,0.025536533 +,, +772,-0.07447349789109228,0.024458077 +,, +773,-0.045653709592654246,0.023764443 +,, +774,0.05205884650857957,0.025078932 +,, +775,-0.01701128853319798,0.023830721 +,, +776,0.08629269797012382,0.024070293 +,, +777,-0.07378017318196545,0.023845429 +,, +778,-0.07792514504499928,0.023561928 +,, +779,-0.021223462501376703,0.023658082 +,, +780,-0.04760226750991786,0.023351675 +,, +781,0.0912143460258645,0.02370647 +,, +782,-0.09593218586203359,0.023887781 +,, +783,-0.02788061562632701,0.024240369 +,, +784,-0.09235205489874013,0.02382132 +,, +785,0.029444197889289918,0.024463639 +,, +786,0.0571288190113028,0.024821848 +,, +787,-0.05610403840701647,0.0258226 +,, +788,-0.053571496249626205,0.025840987 +,, +789,0.03377078082378606,0.026194667 +,, +790,0.10738088507515255,0.02627787 +,, +791,0.10421766319141124,0.026274914 +,, +792,-0.11873745035899476,0.026150813 +,, +793,0.06095415771722785,0.026745448 +,, +794,0.08523628219367027,0.02623796 +,, +795,-0.05565709333883802,0.026055738 +,, +796,0.02125109303651687,0.025376296 +,, +797,0.034924686348874974,0.024506446 +,, +798,-0.040761955210247,0.024920318 +,, +799,-0.05121172638688788,0.024427403 +,, +800,-0.14900834286076256,0.025273364 +,, +801,0.02109191322770041,0.025099674 +,, +802,0.1405624748074223,0.026260367 +,, +803,0.05341200185578178,0.024992594 +,, +804,-0.029451996099921968,0.02446195 +,, +805,0.0491676263030149,0.024987685 +,, +806,-0.022027739107058963,0.024890166 +,, +807,-0.0160956618171642,0.024760298 +,, +808,0.07406526853443068,0.025128577 +,, +809,0.011941545229955886,0.024979237 +,, +810,0.11274759741925777,0.02427019 +,, +811,-0.055531855776553916,0.024389988 +,, +812,-0.007501855720477568,0.023572337 +,, +813,-0.08340992612933582,0.02399315 +,, +814,-0.045177163811944886,0.023871252 +,, +815,0.050371917551004675,0.02419267 +,, +816,-0.013534532630644854,0.025749292 +,, +817,0.010093102874769215,0.02573188 +,, +818,-0.006272677641079957,0.02514931 +,, +819,-0.006689090598728027,0.026384655 +,, +820,0.041117730166802854,0.02601029 +,, +821,-0.18814716536493814,0.02662946 +,, +822,-0.03122172841563448,0.026088092 +,, +823,-0.021249387043751646,0.026078641 +,, +824,0.08277077685035894,0.026248181 +,, +825,-0.030765579157205097,0.025508676 +,, +826,-0.009125636718105568,0.023745066 +,, +827,-0.01531215559945484,0.023781452 +,, +828,0.06592080686385068,0.024763431 +,, +829,0.055423023668450914,0.023531226 +,, +830,-0.06622571927412718,0.023835564 +,, +831,-0.03585846189180787,0.022762444 +,, +832,-0.024951987329348804,0.022678234 +,, +833,-0.04780805101497673,0.023148514 +,, +834,0.01287797511230631,0.02327455 +,, +835,-0.06908229806783743,0.023080409 +,, +836,-0.011855847456924633,0.023373868 +,, +837,-0.06109808322485194,0.023609951 +,, +838,-0.10614128953336568,0.022976378 +,, +839,-0.07750750336131747,0.023436032 +,, +840,-0.005991046878729173,0.022931974 +,, +841,0.08984652573670898,0.022877287 +,, +842,0.02506566584403991,0.022882814 +,, +843,0.07978228963300274,0.022571886 +,, +844,-0.1446622078931024,0.022833318 +,, +845,0.11165285835790419,0.02334775 +,, +846,0.1393219598824,0.024182564 +,, +847,-0.048110702099592194,0.024317006 +,, +848,0.12005697477839622,0.025027264 +,, +849,0.0640159637286133,0.025446761 +,, +850,0.04785410684709619,0.02643904 +,, +851,-0.0037107986455784912,0.026990298 +,, +852,0.026720908759390385,0.02730025 +,, +853,0.0913217171551643,0.027157072 +,, +854,0.04445809178155394,0.027636636 +,, +855,0.10382672004858326,0.026894446 +,, +856,-0.014116977156187094,0.026994431 +,, +857,-0.08840403149486936,0.027878568 +,, +858,-0.21329052366790494,0.02699315 +,, +859,0.0644754103913681,0.027207363 +,, +860,0.0625104504638896,0.02662946 +,, +861,-0.08601138512476683,0.026158016 +,, +862,-0.0647960191019084,0.0265468 +,, +863,-0.03194167144333088,0.02697922 +,, +864,-0.025239962384479512,0.026413212 +,, +865,0.03654688338195988,0.02746493 +,, +866,-0.02166294023879143,0.026794966 +,, +867,-0.04287720955505773,0.025881669 +,, +868,0.13186773169991473,0.026460737 +,, +869,-0.020439692159634378,0.026582247 +,, +870,-0.06661888932637122,0.026968986 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655791889.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655791889.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..935ce22 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655791889.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..6892dcf --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,530 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.0366 | +--------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint 0 +--------------------------------------------------------- +| time-step | 1 | +| y_out | -0.0197 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 2 | +| y_out | 0.107 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 3 | +| y_out | -0.0614 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 4 | +| y_out | 0.115 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 5 | +| y_out | -0.0495 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 6 | +| y_out | 0.0165 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 7 | +| y_out | 0.0121 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 8 | +| y_out | -0.0456 | +--------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.49403268 | +| time-step | 9 | +| y_out | 0.0458 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.4894978 | +| time-step | 10 | +| y_out | 0.0168 | +---------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.4968284 | +| time-step | 11 | +| y_out | 0.0233 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.48914066 | +| time-step | 12 | +| y_out | 0.058 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.48480886 | +| time-step | 13 | +| y_out | 0.0575 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.46780363 | +| time-step | 14 | +| y_out | -0.0607 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.47146302 | +| time-step | 15 | +| y_out | 0.00982 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.47941655 | +| time-step | 16 | +| y_out | -0.0123 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.4715603 | +| time-step | 17 | +| y_out | 0.023 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.46140704 | +| time-step | 18 | +| y_out | 0.109 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.44607335 | +| time-step | 19 | +| y_out | -0.146 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.41898474 | +| time-step | 20 | +| y_out | 0.0226 | +----------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint 20 +----------------------------------------------------------- +| perf/mse | 0.40553594 | +| time-step | 21 | +| y_out | -0.0446 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.38011175 | +| time-step | 22 | +| y_out | -0.0546 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.3690272 | +| time-step | 23 | +| y_out | 0.00068 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.36561403 | +| time-step | 24 | +| y_out | 0.0405 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.36073396 | +| time-step | 25 | +| y_out | 0.00284 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.34023866 | +| time-step | 26 | +| y_out | 0.00313 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.33840084 | +| time-step | 27 | +| y_out | -0.0519 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.33017984 | +| time-step | 28 | +| y_out | 0.09 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.33323592 | +| time-step | 29 | +| y_out | -0.0578 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.34132108 | +| time-step | 30 | +| y_out | 0.0563 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.33152276 | +| time-step | 31 | +| y_out | 0.0499 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.33383963 | +| time-step | 32 | +| y_out | -0.101 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.3257926 | +| time-step | 33 | +| y_out | 0.059 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.31796092 | +| time-step | 34 | +| y_out | 0.00914 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.29548356 | +| time-step | 35 | +| y_out | -0.0118 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.28696665 | +| time-step | 36 | +| y_out | 0.0368 | +----------------------------------------------------------- +--------------------------------------------------------- +| perf/mse | 0.284748 | +| time-step | 37 | +| y_out | 0.0181 | +--------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2768833 | +| time-step | 38 | +| y_out | -0.025 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26813883 | +| time-step | 39 | +| y_out | -0.0086 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2566311 | +| time-step | 40 | +| y_out | 0.0696 | +---------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint 40 +---------------------------------------------------------- +| perf/mse | 0.2552605 | +| time-step | 41 | +| y_out | 0.0604 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.24862857 | +| time-step | 42 | +| y_out | -0.00336 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.24252716 | +| time-step | 43 | +| y_out | 0.0261 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.23195381 | +| time-step | 44 | +| y_out | -0.136 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.23078997 | +| time-step | 45 | +| y_out | 0.0794 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22888204 | +| time-step | 46 | +| y_out | -0.00281 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21721879 | +| time-step | 47 | +| y_out | 0.0996 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21273318 | +| time-step | 48 | +| y_out | 0.112 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20590408 | +| time-step | 49 | +| y_out | 0.0771 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20267124 | +| time-step | 50 | +| y_out | -0.0504 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2001859 | +| time-step | 51 | +| y_out | 0.0352 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18815902 | +| time-step | 52 | +| y_out | 0.051 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18449056 | +| time-step | 53 | +| y_out | -0.0861 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18254283 | +| time-step | 54 | +| y_out | -0.0265 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17642108 | +| time-step | 55 | +| y_out | -0.0448 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1702852 | +| time-step | 56 | +| y_out | 0.104 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17152339 | +| time-step | 57 | +| y_out | 0.0475 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1694577 | +| time-step | 58 | +| y_out | -0.026 | +---------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1656811 | +| time-step | 59 | +| y_out | -0.143 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15979862 | +| time-step | 60 | +| y_out | -0.00537 | +----------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint 60 +----------------------------------------------------------- +| perf/mse | 0.16016677 | +| time-step | 61 | +| y_out | 0.00764 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16087623 | +| time-step | 62 | +| y_out | -0.0419 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15536512 | +| time-step | 63 | +| y_out | 0.0781 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15460366 | +| time-step | 64 | +| y_out | 0.0413 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1521332 | +| time-step | 65 | +| y_out | -0.0244 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14761244 | +| time-step | 66 | +| y_out | -0.00943 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14491746 | +| time-step | 67 | +| y_out | -0.0119 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1404978 | +| time-step | 68 | +| y_out | -0.00495 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13709041 | +| time-step | 69 | +| y_out | -0.0251 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1354272 | +| time-step | 70 | +| y_out | -0.00959 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13078097 | +| time-step | 71 | +| y_out | 0.04 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13269095 | +| time-step | 72 | +| y_out | -0.0806 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12975289 | +| time-step | 73 | +| y_out | -0.00659 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12594536 | +| time-step | 74 | +| y_out | 0.0398 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1251411 | +| time-step | 75 | +| y_out | 0.0266 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12612459 | +| time-step | 76 | +| y_out | -0.103 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11437243 | +| time-step | 77 | +| y_out | -0.00116 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11322918 | +| time-step | 78 | +| y_out | -0.113 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11711192 | +| time-step | 79 | +| y_out | 0.0352 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.118624486 | +| time-step | 80 | +| y_out | 0.11 | +------------------------------------------------------------ +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/checkpoint 80 +----------------------------------------------------------- +| perf/mse | 0.11390598 | +| time-step | 81 | +| y_out | 0.0285 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11026826 | +| time-step | 82 | +| y_out | -0.0274 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11003125 | +| time-step | 83 | +| y_out | -0.0324 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.106977604 | +| time-step | 84 | +| y_out | -0.0497 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.101296246 | +| time-step | 85 | +| y_out | -0.0153 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.102011845 | +| time-step | 86 | +| y_out | 0.0206 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.106472656 | +| time-step | 87 | +| y_out | -0.146 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.10791086 | +| time-step | 88 | +| y_out | 0.113 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10235711 | +| time-step | 89 | +| y_out | 0.0908 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09590799 | +| time-step | 90 | +| y_out | -0.121 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09457566 | +| time-step | 91 | +| y_out | -0.146 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.094312415 | +| time-step | 92 | +| y_out | -0.0719 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0955606 | +| time-step | 93 | +| y_out | -0.16 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.095177166 | +| time-step | 94 | +| y_out | 0.0102 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09933234 | +| time-step | 95 | +| y_out | 0.0434 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.094790295 | +| time-step | 96 | +| y_out | -0.0222 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.093192235 | +| time-step | 97 | +| y_out | -0.181 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.090805866 | +| time-step | 98 | +| y_out | -0.0191 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09010676 | +| time-step | 99 | +| y_out | -0.0501 | +----------------------------------------------------------- diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..9d10036 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/progress.csv @@ -0,0 +1,201 @@ +time-step,y_out,perf/mse +0,0.03656695574585246, +,, +1,-0.019714698501005656, +,, +2,0.10702081610002187, +,, +3,-0.061384978813282795, +,, +4,0.11528127744643371, +,, +5,-0.049524580679825445, +,, +6,0.01652392205563127, +,, +7,0.012070247300602726, +,, +8,-0.04561364450103935, +,, +9,0.04578537954977016,0.49403268 +,, +10,0.016839957046116724,0.4894978 +,, +11,0.0232862195317507,0.4968284 +,, +12,0.05802378563123929,0.48914066 +,, +13,0.057488708313026285,0.48480886 +,, +14,-0.060702555069057765,0.46780363 +,, +15,0.009821610215708078,0.47146302 +,, +16,-0.01226110208825917,0.47941655 +,, +17,0.023004508426482308,0.4715603 +,, +18,0.10907648594917099,0.46140704 +,, +19,-0.1456986098759031,0.44607335 +,, +20,0.022584616960151065,0.41898474 +,, +21,-0.044582568924485116,0.40553594 +,, +22,-0.054638422481081445,0.38011175 +,, +23,0.0006799183271496839,0.3690272 +,, +24,0.040477677508215466,0.36561403 +,, +25,0.002842646792489495,0.36073396 +,, +26,0.0031268858810587843,0.34023866 +,, +27,-0.051911665513455475,0.33840084 +,, +28,0.08997988599296136,0.33017984 +,, +29,-0.05776926297637804,0.33323592 +,, +30,0.05632781337764865,0.34132108 +,, +31,0.04988957642193807,0.33152276 +,, +32,-0.10117627461806677,0.33383963 +,, +33,0.05903397125003846,0.3257926 +,, +34,0.00914010996197158,0.31796092 +,, +35,-0.011807668095631737,0.29548356 +,, +36,0.03678725771681395,0.28696665 +,, +37,0.018140315547273335,0.284748 +,, +38,-0.02504691810276227,0.2768833 +,, +39,-0.008595225517670349,0.26813883 +,, +40,0.06963505716980833,0.2566311 +,, +41,0.060368672207621384,0.2552605 +,, +42,-0.0033582738732596887,0.24862857 +,, +43,0.026113342359978604,0.24252716 +,, +44,-0.13583175193939162,0.23195381 +,, +45,0.07944406953427818,0.23078997 +,, +46,-0.002814887943368198,0.22888204 +,, +47,0.09959033001095485,0.21721879 +,, +48,0.11195289905672486,0.21273318 +,, +49,0.07708218363565764,0.20590408 +,, +50,-0.05041216372594183,0.20267124 +,, +51,0.03522168706702564,0.2001859 +,, +52,0.05099106903847396,0.18815902 +,, +53,-0.08608255997531016,0.18449056 +,, +54,-0.0264578108139399,0.18254283 +,, +55,-0.04480644772422567,0.17642108 +,, +56,0.10442896947138369,0.1702852 +,, +57,0.0475379511849472,0.17152339 +,, +58,-0.026033901435577593,0.1694577 +,, +59,-0.14285353155613,0.1656811 +,, +60,-0.005365950500552642,0.15979862 +,, +61,0.007635781889885621,0.16016677 +,, +62,-0.04185982419629443,0.16087623 +,, +63,0.07814002899505774,0.15536512 +,, +64,0.041281285055415125,0.15460366 +,, +65,-0.024391924697896653,0.1521332 +,, +66,-0.009425586963822268,0.14761244 +,, +67,-0.011888095679036481,0.14491746 +,, +68,-0.004954688919478839,0.1404978 +,, +69,-0.02508520071776485,0.13709041 +,, +70,-0.009588025860947078,0.1354272 +,, +71,0.040015902529912675,0.13078097 +,, +72,-0.08056645360387317,0.13269095 +,, +73,-0.006585891302688232,0.12975289 +,, +74,0.039753060299124676,0.12594536 +,, +75,0.026621059054339508,0.1251411 +,, +76,-0.10300337427238039,0.12612459 +,, +77,-0.0011610462646045039,0.11437243 +,, +78,-0.11316751221426785,0.11322918 +,, +79,0.03521222578397911,0.11711192 +,, +80,0.10978944355668677,0.118624486 +,, +81,0.028476647363383175,0.11390598 +,, +82,-0.027444612738397864,0.11026826 +,, +83,-0.03240957659481122,0.11003125 +,, +84,-0.04972198658195126,0.106977604 +,, +85,-0.01532520718421159,0.101296246 +,, +86,0.020626153884205564,0.102011845 +,, +87,-0.14558334357310174,0.106472656 +,, +88,0.11272887758916868,0.10791086 +,, +89,0.09076189848780976,0.10235711 +,, +90,-0.12116422299556259,0.09590799 +,, +91,-0.1457587344430062,0.09457566 +,, +92,-0.07191974268008708,0.094312415 +,, +93,-0.16035901589766036,0.0955606 +,, +94,0.010227581546443858,0.095177166 +,, +95,0.04340612803595145,0.09933234 +,, +96,-0.022164892164216365,0.094790295 +,, +97,-0.18123847770427395,0.093192235 +,, +98,-0.0191330459765178,0.090805866 +,, +99,-0.05006405601589894,0.09010676 +,, diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655791940.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655791940.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..421cd61 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655791940.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..219e9e8 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,7 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655887762.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655887762.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..98f5633 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655887762.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-49-22-503248 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..05df47f --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,7 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655887984.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655887984.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..f7e3819 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655887984.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-04-365976 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..964eecf --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,7 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888016.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888016.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..0dc7df8 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888016.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-53-36-896124 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..df45e41 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,7 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888066.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888066.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..e3f62c2 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888066.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-54-26-397068 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..1d80563 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,7 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888111.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888111.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..fce08bd Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888111.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-55-09-724998 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..de07490 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,7 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888235.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888235.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..fac9fa9 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888235.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-15-617475 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..3c83f73 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,498 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +-------------------------------------------------------------- +| time-step | 0 | +| y_out | -0.0064428225 | +-------------------------------------------------------------- +----------------------------------------------------------- +| time-step | 1 | +| y_out | 0.04930454 | +----------------------------------------------------------- +------------------------------------------------------------- +| time-step | 2 | +| y_out | -0.048635148 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 3 | +| y_out | -0.06222611 | +------------------------------------------------------------ +----------------------------------------------------------- +| time-step | 4 | +| y_out | 0.04662519 | +----------------------------------------------------------- +------------------------------------------------------------- +| time-step | 5 | +| y_out | -0.084921524 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 6 | +| y_out | 0.014047012 | +------------------------------------------------------------ +----------------------------------------------------------- +| time-step | 7 | +| y_out | 0.08320155 | +----------------------------------------------------------- +----------------------------------------------------------- +| time-step | 8 | +| y_out | -0.0630525 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.29133323 | +| time-step | 9 | +| y_out | 0.0035740389 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.27894574 | +| time-step | 10 | +| y_out | -0.007007368 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2813764 | +| time-step | 11 | +| y_out | -0.11833355 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.26360077 | +| time-step | 12 | +| y_out | -0.12807743 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.25464076 | +| time-step | 13 | +| y_out | -0.028712781 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24274907 | +| time-step | 14 | +| y_out | 0.058383036 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.22590907 | +| time-step | 15 | +| y_out | 0.025737397 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.21498057 | +| time-step | 16 | +| y_out | 0.05553948 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21055989 | +| time-step | 17 | +| y_out | 0.09865355 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.2046382 | +| time-step | 18 | +| y_out | -0.056044675 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19731417 | +| time-step | 19 | +| y_out | -0.06431604 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.18899626 | +| time-step | 20 | +| y_out | 0.00017598644 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.17280959 | +| time-step | 21 | +| y_out | -0.015044624 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.17008579 | +| time-step | 22 | +| y_out | -0.120227665 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15447819 | +| time-step | 23 | +| y_out | 0.045261197 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.14958924 | +| time-step | 24 | +| y_out | -0.1116478 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14299273 | +| time-step | 25 | +| y_out | -0.06657992 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.13934568 | +| time-step | 26 | +| y_out | 0.0758459 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13117568 | +| time-step | 27 | +| y_out | 0.03616636 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12322526 | +| time-step | 28 | +| y_out | -0.12514639 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11577682 | +| time-step | 29 | +| y_out | 0.013798259 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.11055682 | +| time-step | 30 | +| y_out | -0.006620895 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.105241254 | +| time-step | 31 | +| y_out | 0.032227896 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.09665185 | +| time-step | 32 | +| y_out | -0.12665775 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09769772 | +| time-step | 33 | +| y_out | 0.09552529 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.09115288 | +| time-step | 34 | +| y_out | -0.011207107 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08656562 | +| time-step | 35 | +| y_out | 0.11896068 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.080835894 | +| time-step | 36 | +| y_out | -0.02810283 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.077515565 | +| time-step | 37 | +| y_out | 0.027897896 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07102182 | +| time-step | 38 | +| y_out | 0.03881716 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06643866 | +| time-step | 39 | +| y_out | 0.18280944 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.06325918 | +| time-step | 40 | +| y_out | -0.104515135 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.058979046 | +| time-step | 41 | +| y_out | 0.07623912 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.054667987 | +| time-step | 42 | +| y_out | -0.024063682 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0485512 | +| time-step | 43 | +| y_out | -0.010029323 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.044089053 | +| time-step | 44 | +| y_out | -0.052924 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041207846 | +| time-step | 45 | +| y_out | 0.024971895 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.038332544 | +| time-step | 46 | +| y_out | 0.041212946 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034918096 | +| time-step | 47 | +| y_out | 0.027984723 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.03451334 | +| time-step | 48 | +| y_out | -0.09394095 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034174122 | +| time-step | 49 | +| y_out | -0.10102393 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.031722546 | +| time-step | 50 | +| y_out | 0.031330526 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.030013701 | +| time-step | 51 | +| y_out | -0.019851547 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.028856004 | +| time-step | 52 | +| y_out | 0.04313557 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.028829789 | +| time-step | 53 | +| y_out | 0.0014160275 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.027576694 | +| time-step | 54 | +| y_out | -0.026711214 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.026937027 | +| time-step | 55 | +| y_out | -0.034319915 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.027412336 | +| time-step | 56 | +| y_out | 0.1675624 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.02752158 | +| time-step | 57 | +| y_out | -0.057806626 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.026498616 | +| time-step | 58 | +| y_out | -0.05137684 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026166972 | +| time-step | 59 | +| y_out | 0.032132994 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025562996 | +| time-step | 60 | +| y_out | -0.14915752 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025676519 | +| time-step | 61 | +| y_out | 0.025327248 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0259326 | +| time-step | 62 | +| y_out | -0.113018334 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.02654914 | +| time-step | 63 | +| y_out | 0.021685034 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.027167043 | +| time-step | 64 | +| y_out | -0.013650859 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.026266694 | +| time-step | 65 | +| y_out | -0.026286652 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.025439609 | +| time-step | 66 | +| y_out | -0.054252688 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.024236321 | +| time-step | 67 | +| y_out | 0.059082113 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.02555487 | +| time-step | 68 | +| y_out | -0.0026954138 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.025181275 | +| time-step | 69 | +| y_out | 0.039880753 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024809182 | +| time-step | 70 | +| y_out | 0.0552663 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024856912 | +| time-step | 71 | +| y_out | 0.02660775 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023902219 | +| time-step | 72 | +| y_out | 0.1204779 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023632662 | +| time-step | 73 | +| y_out | 0.09516594 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.023425533 | +| time-step | 74 | +| y_out | -0.016393162 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.02346071 | +| time-step | 75 | +| y_out | 0.011047229 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023574155 | +| time-step | 76 | +| y_out | 0.056450292 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023553343 | +| time-step | 77 | +| y_out | -0.06861526 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.022610638 | +| time-step | 78 | +| y_out | -0.002044309 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.022073971 | +| time-step | 79 | +| y_out | -0.07065364 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021807877 | +| time-step | 80 | +| y_out | 0.07240825 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020889336 | +| time-step | 81 | +| y_out | -0.10459086 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02054435 | +| time-step | 82 | +| y_out | 0.06702097 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.019613013 | +| time-step | 83 | +| y_out | -0.06102384 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.01904675 | +| time-step | 84 | +| y_out | -0.044619527 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.01880647 | +| time-step | 85 | +| y_out | 0.06340268 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.018841162 | +| time-step | 86 | +| y_out | 0.0633072 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018668605 | +| time-step | 87 | +| y_out | 0.05473823 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018587312 | +| time-step | 88 | +| y_out | 0.13797875 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.01905866 | +| time-step | 89 | +| y_out | -0.047649544 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.019086238 | +| time-step | 90 | +| y_out | -0.01102992 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019504623 | +| time-step | 91 | +| y_out | -0.08427615 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.020322874 | +| time-step | 92 | +| y_out | -0.014050335 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.020055218 | +| time-step | 93 | +| y_out | 0.05293078 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020239636 | +| time-step | 94 | +| y_out | 0.034203973 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.02017063 | +| time-step | 95 | +| y_out | -0.092263706 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.020424994 | +| time-step | 96 | +| y_out | -0.08548976 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020271648 | +| time-step | 97 | +| y_out | -0.09652927 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019375183 | +| time-step | 98 | +| y_out | 0.11304718 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019581884 | +| time-step | 99 | +| y_out | -0.04089286 | +------------------------------------------------------------ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..96b20a1 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,-0.0064428225, +1,0.04930454, +2,-0.048635148, +3,-0.06222611, +4,0.04662519, +5,-0.084921524, +6,0.014047012, +7,0.08320155, +8,-0.0630525, +9,0.0035740389,0.29133323 +10,-0.007007368,0.27894574 +11,-0.11833355,0.2813764 +12,-0.12807743,0.26360077 +13,-0.028712781,0.25464076 +14,0.058383036,0.24274907 +15,0.025737397,0.22590907 +16,0.05553948,0.21498057 +17,0.09865355,0.21055989 +18,-0.056044675,0.2046382 +19,-0.06431604,0.19731417 +20,0.00017598644,0.18899626 +21,-0.015044624,0.17280959 +22,-0.120227665,0.17008579 +23,0.045261197,0.15447819 +24,-0.1116478,0.14958924 +25,-0.06657992,0.14299273 +26,0.0758459,0.13934568 +27,0.03616636,0.13117568 +28,-0.12514639,0.12322526 +29,0.013798259,0.11577682 +30,-0.006620895,0.11055682 +31,0.032227896,0.105241254 +32,-0.12665775,0.09665185 +33,0.09552529,0.09769772 +34,-0.011207107,0.09115288 +35,0.11896068,0.08656562 +36,-0.02810283,0.080835894 +37,0.027897896,0.077515565 +38,0.03881716,0.07102182 +39,0.18280944,0.06643866 +40,-0.104515135,0.06325918 +41,0.07623912,0.058979046 +42,-0.024063682,0.054667987 +43,-0.010029323,0.0485512 +44,-0.052924,0.044089053 +45,0.024971895,0.041207846 +46,0.041212946,0.038332544 +47,0.027984723,0.034918096 +48,-0.09394095,0.03451334 +49,-0.10102393,0.034174122 +50,0.031330526,0.031722546 +51,-0.019851547,0.030013701 +52,0.04313557,0.028856004 +53,0.0014160275,0.028829789 +54,-0.026711214,0.027576694 +55,-0.034319915,0.026937027 +56,0.1675624,0.027412336 +57,-0.057806626,0.02752158 +58,-0.05137684,0.026498616 +59,0.032132994,0.026166972 +60,-0.14915752,0.025562996 +61,0.025327248,0.025676519 +62,-0.113018334,0.0259326 +63,0.021685034,0.02654914 +64,-0.013650859,0.027167043 +65,-0.026286652,0.026266694 +66,-0.054252688,0.025439609 +67,0.059082113,0.024236321 +68,-0.0026954138,0.02555487 +69,0.039880753,0.025181275 +70,0.0552663,0.024809182 +71,0.02660775,0.024856912 +72,0.1204779,0.023902219 +73,0.09516594,0.023632662 +74,-0.016393162,0.023425533 +75,0.011047229,0.02346071 +76,0.056450292,0.023574155 +77,-0.06861526,0.023553343 +78,-0.002044309,0.022610638 +79,-0.07065364,0.022073971 +80,0.07240825,0.021807877 +81,-0.10459086,0.020889336 +82,0.06702097,0.02054435 +83,-0.06102384,0.019613013 +84,-0.044619527,0.01904675 +85,0.06340268,0.01880647 +86,0.0633072,0.018841162 +87,0.05473823,0.018668605 +88,0.13797875,0.018587312 +89,-0.047649544,0.01905866 +90,-0.01102992,0.019086238 +91,-0.08427615,0.019504623 +92,-0.014050335,0.020322874 +93,0.05293078,0.020055218 +94,0.034203973,0.020239636 +95,-0.092263706,0.02017063 +96,-0.08548976,0.020424994 +97,-0.09652927,0.020271648 +98,0.11304718,0.019375183 +99,-0.04089286,0.019581884 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888275.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888275.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..b64c3be Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888275.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-57-55-580105 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..e6a736b --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,7 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888324.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888324.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..287e5e9 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888324.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-58-44-981476 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..5af34bb --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,498 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +------------------------------------------------------------- +| time-step | 0 | +| y_out | -0.005473565 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 1 | +| y_out | 0.037161335 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 2 | +| y_out | -0.06501998 | +------------------------------------------------------------ +----------------------------------------------------------- +| time-step | 3 | +| y_out | 0.02455449 | +----------------------------------------------------------- +------------------------------------------------------------ +| time-step | 4 | +| y_out | 0.016860068 | +------------------------------------------------------------ +-------------------------------------------------------------- +| time-step | 5 | +| y_out | -0.0013134629 | +-------------------------------------------------------------- +----------------------------------------------------------- +| time-step | 6 | +| y_out | 0.07593635 | +----------------------------------------------------------- +------------------------------------------------------------- +| time-step | 7 | +| y_out | -0.047730934 | +------------------------------------------------------------- +------------------------------------------------------------- +| time-step | 8 | +| y_out | -0.017584614 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.20596051 | +| time-step | 9 | +| y_out | -0.016245855 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1983426 | +| time-step | 10 | +| y_out | -0.02822299 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19022427 | +| time-step | 11 | +| y_out | 0.038943972 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17713091 | +| time-step | 12 | +| y_out | 0.013786145 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.16516349 | +| time-step | 13 | +| y_out | -0.022224277 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.15760548 | +| time-step | 14 | +| y_out | -0.061533578 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14492801 | +| time-step | 15 | +| y_out | 0.015459763 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.13808446 | +| time-step | 16 | +| y_out | -0.05239613 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.12876703 | +| time-step | 17 | +| y_out | -0.1377917 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.118549004 | +| time-step | 18 | +| y_out | -0.013552089 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.10873952 | +| time-step | 19 | +| y_out | -0.020164963 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.099672124 | +| time-step | 20 | +| y_out | 0.15565994 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.09186481 | +| time-step | 21 | +| y_out | -0.0012581944 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08677749 | +| time-step | 22 | +| y_out | 0.08709692 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.08198102 | +| time-step | 23 | +| y_out | 0.0042557605 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.07401527 | +| time-step | 24 | +| y_out | -0.08879388 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07035558 | +| time-step | 25 | +| y_out | -0.10587391 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.06332065 | +| time-step | 26 | +| y_out | -0.06505518 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.057802893 | +| time-step | 27 | +| y_out | 0.06938778 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05258289 | +| time-step | 28 | +| y_out | 0.03206784 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.048649915 | +| time-step | 29 | +| y_out | 0.00843237 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.044406664 | +| time-step | 30 | +| y_out | -0.012660939 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.039477445 | +| time-step | 31 | +| y_out | -0.03434177 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03696218 | +| time-step | 32 | +| y_out | 0.18581337 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.03362057 | +| time-step | 33 | +| y_out | 0.015094504 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03253196 | +| time-step | 34 | +| y_out | 0.06294083 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.030211482 | +| time-step | 35 | +| y_out | 0.06399681 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027539875 | +| time-step | 36 | +| y_out | -0.11869191 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.026552344 | +| time-step | 37 | +| y_out | 0.071648516 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.025075441 | +| time-step | 38 | +| y_out | 0.008632027 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.024470594 | +| time-step | 39 | +| y_out | 0.008459779 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023603637 | +| time-step | 40 | +| y_out | 0.043336518 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023671884 | +| time-step | 41 | +| y_out | 0.025458638 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022012163 | +| time-step | 42 | +| y_out | 0.033911526 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.02118719 | +| time-step | 43 | +| y_out | -0.050353497 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02015956 | +| time-step | 44 | +| y_out | 0.06563209 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.01974195 | +| time-step | 45 | +| y_out | -0.008575788 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.01976085 | +| time-step | 46 | +| y_out | -0.11232753 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019648965 | +| time-step | 47 | +| y_out | 0.07302568 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020105738 | +| time-step | 48 | +| y_out | -0.09043187 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.01956648 | +| time-step | 49 | +| y_out | -0.15734011 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.01925085 | +| time-step | 50 | +| y_out | 0.023605345 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018437555 | +| time-step | 51 | +| y_out | 0.09408584 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018691478 | +| time-step | 52 | +| y_out | 0.004220199 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018367965 | +| time-step | 53 | +| y_out | 0.072774686 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.01875906 | +| time-step | 54 | +| y_out | -0.0072975922 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.018593822 | +| time-step | 55 | +| y_out | -0.16808549 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018000465 | +| time-step | 56 | +| y_out | 0.0628224 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017623067 | +| time-step | 57 | +| y_out | 0.02042722 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017264683 | +| time-step | 58 | +| y_out | 0.010324523 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017649133 | +| time-step | 59 | +| y_out | -0.06365155 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.017347679 | +| time-step | 60 | +| y_out | -0.043357205 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.017707491 | +| time-step | 61 | +| y_out | 0.08306569 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017761473 | +| time-step | 62 | +| y_out | 0.04287427 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018195068 | +| time-step | 63 | +| y_out | 0.005065769 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.017402736 | +| time-step | 64 | +| y_out | 0.0020838492 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.01723497 | +| time-step | 65 | +| y_out | 0.024589136 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017324278 | +| time-step | 66 | +| y_out | 0.01420309 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.017844828 | +| time-step | 67 | +| y_out | -0.020027153 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.017454367 | +| time-step | 68 | +| y_out | 0.04631119 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017562112 | +| time-step | 69 | +| y_out | 0.07272993 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017063253 | +| time-step | 70 | +| y_out | 0.09062946 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016762652 | +| time-step | 71 | +| y_out | -0.08141197 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016286848 | +| time-step | 72 | +| y_out | 0.09429902 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.015961373 | +| time-step | 73 | +| y_out | 0.0024138968 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.0159879 | +| time-step | 74 | +| y_out | -0.03504914 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015947768 | +| time-step | 75 | +| y_out | 0.024914254 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016579084 | +| time-step | 76 | +| y_out | 0.015899505 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015885588 | +| time-step | 77 | +| y_out | 0.099190734 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.016451225 | +| time-step | 78 | +| y_out | -0.049516447 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.017161198 | +| time-step | 79 | +| y_out | -0.07021698 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.01718121 | +| time-step | 80 | +| y_out | 0.055576485 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016699292 | +| time-step | 81 | +| y_out | 0.02899292 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.016740771 | +| time-step | 82 | +| y_out | -0.027441718 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.016899575 | +| time-step | 83 | +| y_out | -0.08274985 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.017276365 | +| time-step | 84 | +| y_out | -0.004885547 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.016859176 | +| time-step | 85 | +| y_out | 0.02487176 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016363474 | +| time-step | 86 | +| y_out | 0.0667801 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017056113 | +| time-step | 87 | +| y_out | 0.12462481 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0166123 | +| time-step | 88 | +| y_out | 0.025200315 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015631525 | +| time-step | 89 | +| y_out | 0.078795835 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.01611927 | +| time-step | 90 | +| y_out | -0.025031948 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.015861897 | +| time-step | 91 | +| y_out | -0.027052294 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015694102 | +| time-step | 92 | +| y_out | 0.025734896 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.015410246 | +| time-step | 93 | +| y_out | -0.034757383 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015077102 | +| time-step | 94 | +| y_out | -0.03568291 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015482746 | +| time-step | 95 | +| y_out | -0.0721453 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015650433 | +| time-step | 96 | +| y_out | 0.1916132 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015549061 | +| time-step | 97 | +| y_out | 0.010469772 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016091758 | +| time-step | 98 | +| y_out | 0.05833529 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016369835 | +| time-step | 99 | +| y_out | 0.06953283 | +------------------------------------------------------------ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..9c593ed --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,-0.005473565, +1,0.037161335, +2,-0.06501998, +3,0.02455449, +4,0.016860068, +5,-0.0013134629, +6,0.07593635, +7,-0.047730934, +8,-0.017584614, +9,-0.016245855,0.20596051 +10,-0.02822299,0.1983426 +11,0.038943972,0.19022427 +12,0.013786145,0.17713091 +13,-0.022224277,0.16516349 +14,-0.061533578,0.15760548 +15,0.015459763,0.14492801 +16,-0.05239613,0.13808446 +17,-0.1377917,0.12876703 +18,-0.013552089,0.118549004 +19,-0.020164963,0.10873952 +20,0.15565994,0.099672124 +21,-0.0012581944,0.09186481 +22,0.08709692,0.08677749 +23,0.0042557605,0.08198102 +24,-0.08879388,0.07401527 +25,-0.10587391,0.07035558 +26,-0.06505518,0.06332065 +27,0.06938778,0.057802893 +28,0.03206784,0.05258289 +29,0.00843237,0.048649915 +30,-0.012660939,0.044406664 +31,-0.03434177,0.039477445 +32,0.18581337,0.03696218 +33,0.015094504,0.03362057 +34,0.06294083,0.03253196 +35,0.06399681,0.030211482 +36,-0.11869191,0.027539875 +37,0.071648516,0.026552344 +38,0.008632027,0.025075441 +39,0.008459779,0.024470594 +40,0.043336518,0.023603637 +41,0.025458638,0.023671884 +42,0.033911526,0.022012163 +43,-0.050353497,0.02118719 +44,0.06563209,0.02015956 +45,-0.008575788,0.01974195 +46,-0.11232753,0.01976085 +47,0.07302568,0.019648965 +48,-0.09043187,0.020105738 +49,-0.15734011,0.01956648 +50,0.023605345,0.01925085 +51,0.09408584,0.018437555 +52,0.004220199,0.018691478 +53,0.072774686,0.018367965 +54,-0.0072975922,0.01875906 +55,-0.16808549,0.018593822 +56,0.0628224,0.018000465 +57,0.02042722,0.017623067 +58,0.010324523,0.017264683 +59,-0.06365155,0.017649133 +60,-0.043357205,0.017347679 +61,0.08306569,0.017707491 +62,0.04287427,0.017761473 +63,0.005065769,0.018195068 +64,0.0020838492,0.017402736 +65,0.024589136,0.01723497 +66,0.01420309,0.017324278 +67,-0.020027153,0.017844828 +68,0.04631119,0.017454367 +69,0.07272993,0.017562112 +70,0.09062946,0.017063253 +71,-0.08141197,0.016762652 +72,0.09429902,0.016286848 +73,0.0024138968,0.015961373 +74,-0.03504914,0.0159879 +75,0.024914254,0.015947768 +76,0.015899505,0.016579084 +77,0.099190734,0.015885588 +78,-0.049516447,0.016451225 +79,-0.07021698,0.017161198 +80,0.055576485,0.01718121 +81,0.02899292,0.016699292 +82,-0.027441718,0.016740771 +83,-0.08274985,0.016899575 +84,-0.004885547,0.017276365 +85,0.02487176,0.016859176 +86,0.0667801,0.016363474 +87,0.12462481,0.017056113 +88,0.025200315,0.0166123 +89,0.078795835,0.015631525 +90,-0.025031948,0.01611927 +91,-0.027052294,0.015861897 +92,0.025734896,0.015694102 +93,-0.034757383,0.015410246 +94,-0.03568291,0.015077102 +95,-0.0721453,0.015482746 +96,0.1916132,0.015650433 +97,0.010469772,0.015549061 +98,0.05833529,0.016091758 +99,0.06953283,0.016369835 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888345.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888345.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..bb31c69 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888345.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..b33a7d3 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,502 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +----------------------------------------------------------- +| time-step | 0 | +| y_out | 0.07279381 | +----------------------------------------------------------- +------------------------------------------------------------ +| time-step | 1 | +| y_out | 0.016407933 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 2 | +| y_out | 0.030823339 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 3 | +| y_out | -0.05517689 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 4 | +| y_out | 0.021586128 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 5 | +| y_out | -0.046217807 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 6 | +| y_out | -0.12933695 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 7 | +| y_out | 0.012045614 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 8 | +| y_out | 0.013853498 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.24178982 | +| time-step | 9 | +| y_out | 0.010162152 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23038404 | +| time-step | 10 | +| y_out | 0.064647555 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.21727113 | +| time-step | 11 | +| y_out | 0.06701864 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20887287 | +| time-step | 12 | +| y_out | 0.06932201 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.20712237 | +| time-step | 13 | +| y_out | -0.11365074 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.2005409 | +| time-step | 14 | +| y_out | 0.04380514 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.190465 | +| time-step | 15 | +| y_out | -0.043151986 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18227546 | +| time-step | 16 | +| y_out | -0.02161495 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.17294268 | +| time-step | 17 | +| y_out | 0.06570023 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.16243476 | +| time-step | 18 | +| y_out | 0.016364321 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15330079 | +| time-step | 19 | +| y_out | -0.14136022 | +------------------------------------------------------------ +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/checkpoint-0.pt +----------------------------------------------------------- +| perf/mse | 0.149192 | +| time-step | 20 | +| y_out | 0.04076246 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.14368239 | +| time-step | 21 | +| y_out | -0.052496735 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.13556024 | +| time-step | 22 | +| y_out | -0.035266906 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.12911704 | +| time-step | 23 | +| y_out | -0.027849458 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12171614 | +| time-step | 24 | +| y_out | 0.004145846 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.114637315 | +| time-step | 25 | +| y_out | 0.06806973 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.10895638 | +| time-step | 26 | +| y_out | 0.008567557 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.102058515 | +| time-step | 27 | +| y_out | 0.005292589 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.09645398 | +| time-step | 28 | +| y_out | -0.031402167 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.09077955 | +| time-step | 29 | +| y_out | -0.036856443 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.08288847 | +| time-step | 30 | +| y_out | 0.025261046 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07590139 | +| time-step | 31 | +| y_out | 0.081667185 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.07156151 | +| time-step | 32 | +| y_out | -0.063061595 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.064142026 | +| time-step | 33 | +| y_out | -0.114371285 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.059245337 | +| time-step | 34 | +| y_out | 0.11874589 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.053592853 | +| time-step | 35 | +| y_out | 0.07476449 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.050328273 | +| time-step | 36 | +| y_out | -0.07528393 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04653665 | +| time-step | 37 | +| y_out | 0.07118043 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0425642 | +| time-step | 38 | +| y_out | -0.038810585 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.039804365 | +| time-step | 39 | +| y_out | 0.020143636 | +------------------------------------------------------------ +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/checkpoint-20.pt +------------------------------------------------------------- +| perf/mse | 0.03781651 | +| time-step | 40 | +| y_out | -0.037968837 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.035222754 | +| time-step | 41 | +| y_out | 0.033496387 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.03347584 | +| time-step | 42 | +| y_out | -0.08550003 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.03172861 | +| time-step | 43 | +| y_out | -0.09291358 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.029718965 | +| time-step | 44 | +| y_out | -0.041650806 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.027937254 | +| time-step | 45 | +| y_out | 0.029188737 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.02514835 | +| time-step | 46 | +| y_out | -0.017454088 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.023741255 | +| time-step | 47 | +| y_out | -0.04588217 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022447888 | +| time-step | 48 | +| y_out | 0.09554884 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022077713 | +| time-step | 49 | +| y_out | 0.07444046 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.021678055 | +| time-step | 50 | +| y_out | -0.009035926 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.020789377 | +| time-step | 51 | +| y_out | -0.11907022 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019876149 | +| time-step | 52 | +| y_out | 0.014456674 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019399725 | +| time-step | 53 | +| y_out | 0.003938131 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.019473663 | +| time-step | 54 | +| y_out | -0.031840276 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.019636925 | +| time-step | 55 | +| y_out | -0.106645085 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.020411646 | +| time-step | 56 | +| y_out | 0.03093068 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020351171 | +| time-step | 57 | +| y_out | 0.08167804 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019507673 | +| time-step | 58 | +| y_out | 0.14236084 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019191384 | +| time-step | 59 | +| y_out | 0.098991334 | +------------------------------------------------------------ +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/checkpoint-40.pt +------------------------------------------------------------ +| perf/mse | 0.019433819 | +| time-step | 60 | +| y_out | 0.003626912 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.020030247 | +| time-step | 61 | +| y_out | -0.013288043 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.019782554 | +| time-step | 62 | +| y_out | 0.00843547 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019979792 | +| time-step | 63 | +| y_out | 0.05561374 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.02011007 | +| time-step | 64 | +| y_out | 0.033915535 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020591635 | +| time-step | 65 | +| y_out | -0.11207235 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01957751 | +| time-step | 66 | +| y_out | 0.10875211 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.019132525 | +| time-step | 67 | +| y_out | 0.04658449 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019545222 | +| time-step | 68 | +| y_out | 0.13410303 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019172223 | +| time-step | 69 | +| y_out | 0.063849166 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.018842606 | +| time-step | 70 | +| y_out | -0.078800924 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.018472468 | +| time-step | 71 | +| y_out | 0.106782466 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018635945 | +| time-step | 72 | +| y_out | 0.036723495 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.01847647 | +| time-step | 73 | +| y_out | -0.0051542968 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.01780137 | +| time-step | 74 | +| y_out | -0.07984257 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.017668264 | +| time-step | 75 | +| y_out | -0.029827865 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.018351024 | +| time-step | 76 | +| y_out | 0.00810023 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.018584447 | +| time-step | 77 | +| y_out | 0.025480442 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.018464508 | +| time-step | 78 | +| y_out | -0.057140388 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.019051054 | +| time-step | 79 | +| y_out | -0.06368552 | +------------------------------------------------------------ +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/checkpoint-60.pt +------------------------------------------------------------ +| perf/mse | 0.018274114 | +| time-step | 80 | +| y_out | -0.10692927 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017903024 | +| time-step | 81 | +| y_out | -0.09355062 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.017162113 | +| time-step | 82 | +| y_out | 0.02996993 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.016157245 | +| time-step | 83 | +| y_out | -0.010486515 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.016092764 | +| time-step | 84 | +| y_out | -0.04537561 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015794305 | +| time-step | 85 | +| y_out | 0.005767662 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015520091 | +| time-step | 86 | +| y_out | -0.1132562 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015216676 | +| time-step | 87 | +| y_out | 0.04056326 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.015180096 | +| time-step | 88 | +| y_out | 0.04121325 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.014909798 | +| time-step | 89 | +| y_out | 0.01921847 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.01525404 | +| time-step | 90 | +| y_out | -0.012239035 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.015950542 | +| time-step | 91 | +| y_out | -0.003934607 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.016551826 | +| time-step | 92 | +| y_out | -0.11800195 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016773727 | +| time-step | 93 | +| y_out | -0.09133028 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.016667794 | +| time-step | 94 | +| y_out | 0.057103887 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.016231196 | +| time-step | 95 | +| y_out | -0.023417514 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.015902657 | +| time-step | 96 | +| y_out | -0.03142748 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.016366422 | +| time-step | 97 | +| y_out | -0.047940217 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.016391257 | +| time-step | 98 | +| y_out | 0.0074154343 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.01644944 | +| time-step | 99 | +| y_out | 0.048710704 | +------------------------------------------------------------ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..cd37a85 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,0.07279381, +1,0.016407933, +2,0.030823339, +3,-0.05517689, +4,0.021586128, +5,-0.046217807, +6,-0.12933695, +7,0.012045614, +8,0.013853498, +9,0.010162152,0.24178982 +10,0.064647555,0.23038404 +11,0.06701864,0.21727113 +12,0.06932201,0.20887287 +13,-0.11365074,0.20712237 +14,0.04380514,0.2005409 +15,-0.043151986,0.190465 +16,-0.02161495,0.18227546 +17,0.06570023,0.17294268 +18,0.016364321,0.16243476 +19,-0.14136022,0.15330079 +20,0.04076246,0.149192 +21,-0.052496735,0.14368239 +22,-0.035266906,0.13556024 +23,-0.027849458,0.12911704 +24,0.004145846,0.12171614 +25,0.06806973,0.114637315 +26,0.008567557,0.10895638 +27,0.005292589,0.102058515 +28,-0.031402167,0.09645398 +29,-0.036856443,0.09077955 +30,0.025261046,0.08288847 +31,0.081667185,0.07590139 +32,-0.063061595,0.07156151 +33,-0.114371285,0.064142026 +34,0.11874589,0.059245337 +35,0.07476449,0.053592853 +36,-0.07528393,0.050328273 +37,0.07118043,0.04653665 +38,-0.038810585,0.0425642 +39,0.020143636,0.039804365 +40,-0.037968837,0.03781651 +41,0.033496387,0.035222754 +42,-0.08550003,0.03347584 +43,-0.09291358,0.03172861 +44,-0.041650806,0.029718965 +45,0.029188737,0.027937254 +46,-0.017454088,0.02514835 +47,-0.04588217,0.023741255 +48,0.09554884,0.022447888 +49,0.07444046,0.022077713 +50,-0.009035926,0.021678055 +51,-0.11907022,0.020789377 +52,0.014456674,0.019876149 +53,0.003938131,0.019399725 +54,-0.031840276,0.019473663 +55,-0.106645085,0.019636925 +56,0.03093068,0.020411646 +57,0.08167804,0.020351171 +58,0.14236084,0.019507673 +59,0.098991334,0.019191384 +60,0.003626912,0.019433819 +61,-0.013288043,0.020030247 +62,0.00843547,0.019782554 +63,0.05561374,0.019979792 +64,0.033915535,0.02011007 +65,-0.11207235,0.020591635 +66,0.10875211,0.01957751 +67,0.04658449,0.019132525 +68,0.13410303,0.019545222 +69,0.063849166,0.019172223 +70,-0.078800924,0.018842606 +71,0.106782466,0.018472468 +72,0.036723495,0.018635945 +73,-0.0051542968,0.01847647 +74,-0.07984257,0.01780137 +75,-0.029827865,0.017668264 +76,0.00810023,0.018351024 +77,0.025480442,0.018584447 +78,-0.057140388,0.018464508 +79,-0.06368552,0.019051054 +80,-0.10692927,0.018274114 +81,-0.09355062,0.017903024 +82,0.02996993,0.017162113 +83,-0.010486515,0.016157245 +84,-0.04537561,0.016092764 +85,0.005767662,0.015794305 +86,-0.1132562,0.015520091 +87,0.04056326,0.015216676 +88,0.04121325,0.015180096 +89,0.01921847,0.014909798 +90,-0.012239035,0.01525404 +91,-0.003934607,0.015950542 +92,-0.11800195,0.016551826 +93,-0.09133028,0.016773727 +94,0.057103887,0.016667794 +95,-0.023417514,0.016231196 +96,-0.03142748,0.015902657 +97,-0.047940217,0.016366422 +98,0.0074154343,0.016391257 +99,0.048710704,0.01644944 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888552.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888552.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..1f909da Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888552.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..90dd79e --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,539 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint 0 +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.0557 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 1 | +| y_out | 0.00311 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 2 | +| y_out | -0.00972 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 3 | +| y_out | -0.0394 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 4 | +| y_out | 0.0799 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 5 | +| y_out | 0.0236 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 6 | +| y_out | 0.0181 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 7 | +| y_out | -0.0238 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 8 | +| y_out | 0.0564 | +--------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2824137 | +| time-step | 9 | +| y_out | -0.0636 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26877004 | +| time-step | 10 | +| y_out | 0.041 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26120767 | +| time-step | 11 | +| y_out | 0.0837 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25373966 | +| time-step | 12 | +| y_out | 0.00844 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.24007268 | +| time-step | 13 | +| y_out | 0.0228 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22862843 | +| time-step | 14 | +| y_out | 0.0461 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21315126 | +| time-step | 15 | +| y_out | -0.000337 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19482127 | +| time-step | 16 | +| y_out | 0.127 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18501805 | +| time-step | 17 | +| y_out | -0.0379 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17624693 | +| time-step | 18 | +| y_out | 0.0539 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16434239 | +| time-step | 19 | +| y_out | 0.00209 | +----------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint 20 +----------------------------------------------------------- +| perf/mse | 0.16034372 | +| time-step | 20 | +| y_out | 0.067 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15379915 | +| time-step | 21 | +| y_out | 0.00211 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15112928 | +| time-step | 22 | +| y_out | -0.0897 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15160899 | +| time-step | 23 | +| y_out | -0.0249 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15943816 | +| time-step | 24 | +| y_out | 0.0399 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15208103 | +| time-step | 25 | +| y_out | -0.0188 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1531156 | +| time-step | 26 | +| y_out | -0.0426 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15138006 | +| time-step | 27 | +| y_out | -0.114 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14564332 | +| time-step | 28 | +| y_out | 0.0787 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13915098 | +| time-step | 29 | +| y_out | 0.0277 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13891086 | +| time-step | 30 | +| y_out | -0.0153 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13712609 | +| time-step | 31 | +| y_out | 0.0084 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1331963 | +| time-step | 32 | +| y_out | 0.111 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12931305 | +| time-step | 33 | +| y_out | -0.0187 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12120056 | +| time-step | 34 | +| y_out | 0.0564 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1188722 | +| time-step | 35 | +| y_out | 0.072 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.111206576 | +| time-step | 36 | +| y_out | -0.042 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.10626761 | +| time-step | 37 | +| y_out | -0.0223 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10403565 | +| time-step | 38 | +| y_out | -0.0883 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.103952095 | +| time-step | 39 | +| y_out | -0.0187 | +------------------------------------------------------------ +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint 40 +----------------------------------------------------------- +| perf/mse | 0.09815784 | +| time-step | 40 | +| y_out | 0.0714 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09511639 | +| time-step | 41 | +| y_out | 0.049 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09398939 | +| time-step | 42 | +| y_out | -0.0433 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09029162 | +| time-step | 43 | +| y_out | -0.0766 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.084561855 | +| time-step | 44 | +| y_out | 0.101 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.0814759 | +| time-step | 45 | +| y_out | 0.0232 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08089705 | +| time-step | 46 | +| y_out | 0.0814 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.081518576 | +| time-step | 47 | +| y_out | -0.0746 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08026893 | +| time-step | 48 | +| y_out | -0.0222 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07917204 | +| time-step | 49 | +| y_out | 9.28e-05 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08026324 | +| time-step | 50 | +| y_out | 0.0327 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0819345 | +| time-step | 51 | +| y_out | -0.0615 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07790412 | +| time-step | 52 | +| y_out | 0.0811 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07704113 | +| time-step | 53 | +| y_out | 0.0199 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07529639 | +| time-step | 54 | +| y_out | 0.0364 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07730509 | +| time-step | 55 | +| y_out | 0.0567 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07693772 | +| time-step | 56 | +| y_out | -0.000945 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07645309 | +| time-step | 57 | +| y_out | 0.038 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07780546 | +| time-step | 58 | +| y_out | -0.0185 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.074930444 | +| time-step | 59 | +| y_out | -0.103 | +------------------------------------------------------------ +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint 60 +----------------------------------------------------------- +| perf/mse | 0.07481378 | +| time-step | 60 | +| y_out | 0.0543 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07123813 | +| time-step | 61 | +| y_out | -0.0412 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07271855 | +| time-step | 62 | +| y_out | -0.108 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07212392 | +| time-step | 63 | +| y_out | -0.0221 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07006066 | +| time-step | 64 | +| y_out | 0.0472 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07049903 | +| time-step | 65 | +| y_out | 0.148 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.068563774 | +| time-step | 66 | +| y_out | 0.00878 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06625454 | +| time-step | 67 | +| y_out | -0.00605 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.066488296 | +| time-step | 68 | +| y_out | 0.1 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06631883 | +| time-step | 69 | +| y_out | 0.0277 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.064507075 | +| time-step | 70 | +| y_out | 0.0558 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06513302 | +| time-step | 71 | +| y_out | -0.0665 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06433549 | +| time-step | 72 | +| y_out | 0.000885 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06534477 | +| time-step | 73 | +| y_out | 0.0669 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06580062 | +| time-step | 74 | +| y_out | -0.0925 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0654123 | +| time-step | 75 | +| y_out | 0.0607 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06752658 | +| time-step | 76 | +| y_out | -0.042 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06766648 | +| time-step | 77 | +| y_out | 0.0176 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06584333 | +| time-step | 78 | +| y_out | -0.0455 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06658207 | +| time-step | 79 | +| y_out | 0.0705 | +----------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/checkpoint 80 +----------------------------------------------------------- +| perf/mse | 0.06621905 | +| time-step | 80 | +| y_out | -0.00689 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0690847 | +| time-step | 81 | +| y_out | 0.0217 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07065071 | +| time-step | 82 | +| y_out | -0.106 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0691512 | +| time-step | 83 | +| y_out | -0.017 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06870882 | +| time-step | 84 | +| y_out | -0.000422 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06563704 | +| time-step | 85 | +| y_out | 0.0624 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06447594 | +| time-step | 86 | +| y_out | -0.0196 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.064637914 | +| time-step | 87 | +| y_out | -0.0142 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06384728 | +| time-step | 88 | +| y_out | -0.102 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.063596085 | +| time-step | 89 | +| y_out | 0.076 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.062437594 | +| time-step | 90 | +| y_out | -0.0418 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.057804354 | +| time-step | 91 | +| y_out | 0.07 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.054329365 | +| time-step | 92 | +| y_out | -0.0554 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.053510975 | +| time-step | 93 | +| y_out | -0.017 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.054172236 | +| time-step | 94 | +| y_out | -0.00754 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05565558 | +| time-step | 95 | +| y_out | 0.0206 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05405866 | +| time-step | 96 | +| y_out | 0.0516 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.054431044 | +| time-step | 97 | +| y_out | 0.0704 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05424893 | +| time-step | 98 | +| y_out | -0.000502 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.052439857 | +| time-step | 99 | +| y_out | -0.0132 | +------------------------------------------------------------ +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: False +k: REMOTE_SETTING, v: {'ftp_server': '', 'username': '', 'password': '', 'remote_data_root': '', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-06-22 17:07:08.049304 +store file ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..50f11ca --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,0.055656834057292784, +1,0.0031115505248657197, +2,-0.009722732039254084, +3,-0.03939787158852049, +4,0.07988146392315992, +5,0.02356048014805833, +6,0.018122543812364434, +7,-0.0237714449374352, +8,0.05644769823175165, +9,-0.06363541393915736,0.2824137 +10,0.04097816718679998,0.26877004 +11,0.0836653766075739,0.26120767 +12,0.008437283828451747,0.25373966 +13,0.022842505580937797,0.24007268 +14,0.046065029946116866,0.22862843 +15,-0.00033690601477359694,0.21315126 +16,0.1267874222369715,0.19482127 +17,-0.037879323337670065,0.18501805 +18,0.05385946799878483,0.17624693 +19,0.002086077172159053,0.16434239 +20,0.06696567344230459,0.16034372 +21,0.002109517186644358,0.15379915 +22,-0.08970520459592783,0.15112928 +23,-0.024931690171846963,0.15160899 +24,0.03994408719376057,0.15943816 +25,-0.0188168944628518,0.15208103 +26,-0.04260109221801141,0.1531156 +27,-0.11449525599825253,0.15138006 +28,0.07870343673795921,0.14564332 +29,0.0277125703358097,0.13915098 +30,-0.015321946856022062,0.13891086 +31,0.008404426092950303,0.13712609 +32,0.11068522812771914,0.1331963 +33,-0.01865403991953808,0.12931305 +34,0.05643018178140485,0.12120056 +35,0.07198360306097638,0.1188722 +36,-0.04195285898666968,0.111206576 +37,-0.0223301432157035,0.10626761 +38,-0.08827982527956071,0.10403565 +39,-0.01873980614801657,0.103952095 +40,0.07141501172507517,0.09815784 +41,0.0489793537158188,0.09511639 +42,-0.04330839421761589,0.09398939 +43,-0.07661236741671185,0.09029162 +44,0.10050501508323559,0.084561855 +45,0.02316105734924591,0.0814759 +46,0.08135936197474737,0.08089705 +47,-0.07456029192426691,0.081518576 +48,-0.022162224980999748,0.08026893 +49,9.276715046712541e-05,0.07917204 +50,0.03270343928884047,0.08026324 +51,-0.06154802694490732,0.0819345 +52,0.08108868811998177,0.07790412 +53,0.019909307250108272,0.07704113 +54,0.03635557920622626,0.07529639 +55,0.056652224698092606,0.07730509 +56,-0.0009448700561004234,0.07693772 +57,0.038010056271989834,0.07645309 +58,-0.01853726929877264,0.07780546 +59,-0.10286415239788715,0.074930444 +60,0.05434906354959628,0.07481378 +61,-0.04119825446352448,0.07123813 +62,-0.10825815806911436,0.07271855 +63,-0.022101310281588925,0.07212392 +64,0.04718478807902682,0.07006066 +65,0.14791695063980184,0.07049903 +66,0.008779305385893804,0.068563774 +67,-0.006047611120103817,0.06625454 +68,0.10045662832578338,0.066488296 +69,0.027749270654589597,0.06631883 +70,0.05582196517435938,0.064507075 +71,-0.06653319477863832,0.06513302 +72,0.0008847497322148068,0.06433549 +73,0.06692358438559234,0.06534477 +74,-0.0924963895909392,0.06580062 +75,0.0606575130028746,0.0654123 +76,-0.04204476927084101,0.06752658 +77,0.01755375069465833,0.06766648 +78,-0.04551493302901019,0.06584333 +79,0.07049056818355921,0.06658207 +80,-0.006890077633954109,0.06621905 +81,0.021745874687800766,0.0690847 +82,-0.10622731251138984,0.07065071 +83,-0.017016093134943774,0.0691512 +84,-0.0004215635315197516,0.06870882 +85,0.06244310226656889,0.06563704 +86,-0.01964617563745082,0.06447594 +87,-0.014194490638374186,0.064637914 +88,-0.10234014356390322,0.06384728 +89,0.07597867697569567,0.063596085 +90,-0.041802594253357445,0.062437594 +91,0.07003583846804937,0.057804354 +92,-0.0554057999036348,0.054329365 +93,-0.01703987144837913,0.053510975 +94,-0.0075392844750989535,0.054172236 +95,0.02055403178792403,0.05565558 +96,0.051555529518656225,0.05405866 +97,0.07040316867371435,0.054431044 +98,-0.0005023526449071045,0.05424893 +99,-0.01324407370724084,0.052439857 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888825.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888825.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..82de279 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655888825.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..844e362 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..d122118 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/log.txt @@ -0,0 +1,511 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 +------------------------------------------------------------ +| perf/mse | 0.082159676 | +| time-step | 0 | +| y_out | -0.03930173 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.10689151 | +| time-step | 1 | +| y_out | 0.02850845 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13199139 | +| time-step | 2 | +| y_out | 0.021799369 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.15028876 | +| time-step | 3 | +| y_out | 0.06596703 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1723384 | +| time-step | 4 | +| y_out | -0.024830323 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19386157 | +| time-step | 5 | +| y_out | 0.0264886 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.21414629 | +| time-step | 6 | +| y_out | 0.032664597 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.23261961 | +| time-step | 7 | +| y_out | -0.015842723 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.2511875 | +| time-step | 8 | +| y_out | -0.025599772 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2701317 | +| time-step | 9 | +| y_out | -0.06609582 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.25786114 | +| time-step | 10 | +| y_out | 0.02130657 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2460159 | +| time-step | 11 | +| y_out | 0.015463426 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2368942 | +| time-step | 12 | +| y_out | 0.067268506 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.23354551 | +| time-step | 13 | +| y_out | -0.0446322 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.22740078 | +| time-step | 14 | +| y_out | 0.028773785 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.21880226 | +| time-step | 15 | +| y_out | 0.020305729 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.20967004 | +| time-step | 16 | +| y_out | 0.06252025 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.20231946 | +| time-step | 17 | +| y_out | -0.051750395 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.19456811 | +| time-step | 18 | +| y_out | -0.058056142 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.1851129 | +| time-step | 19 | +| y_out | 0.09042649 | +----------------------------------------------------------- +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/checkpoint-0.pt +------------------------------------------------------------ +| perf/mse | 0.18099524 | +| time-step | 20 | +| y_out | -0.08248055 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.18066162 | +| time-step | 21 | +| y_out | -0.06541039 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.17478596 | +| time-step | 22 | +| y_out | -0.0108490605 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.17030677 | +| time-step | 23 | +| y_out | 0.026811648 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15957513 | +| time-step | 24 | +| y_out | 0.102516875 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.15299655 | +| time-step | 25 | +| y_out | -0.0004074918 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14584634 | +| time-step | 26 | +| y_out | -0.13715005 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.13843277 | +| time-step | 27 | +| y_out | -0.044480074 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13337915 | +| time-step | 28 | +| y_out | 0.032456663 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.13008326 | +| time-step | 29 | +| y_out | 0.03787488 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12148585 | +| time-step | 30 | +| y_out | -0.06639095 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.11285533 | +| time-step | 31 | +| y_out | -0.043552965 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.102641724 | +| time-step | 32 | +| y_out | 0.021582067 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09392013 | +| time-step | 33 | +| y_out | 0.09746757 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.087975316 | +| time-step | 34 | +| y_out | 0.14024463 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08144392 | +| time-step | 35 | +| y_out | 0.1354674 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.079324216 | +| time-step | 36 | +| y_out | -0.036317833 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.076084815 | +| time-step | 37 | +| y_out | 0.022237705 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07042156 | +| time-step | 38 | +| y_out | 0.109902345 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.06364162 | +| time-step | 39 | +| y_out | 0.0052000284 | +------------------------------------------------------------- +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/checkpoint-20.pt +------------------------------------------------------------ +| perf/mse | 0.057735633 | +| time-step | 40 | +| y_out | 0.09849411 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0540107 | +| time-step | 41 | +| y_out | -0.032637317 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.052619852 | +| time-step | 42 | +| y_out | 0.0101779625 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.050582606 | +| time-step | 43 | +| y_out | -0.0856691 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.049143482 | +| time-step | 44 | +| y_out | 0.0050652325 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.046722174 | +| time-step | 45 | +| y_out | -0.07875314 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.043319725 | +| time-step | 46 | +| y_out | 0.08581701 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.040866245 | +| time-step | 47 | +| y_out | -0.13341105 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.03938549 | +| time-step | 48 | +| y_out | 0.07693946 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.038137376 | +| time-step | 49 | +| y_out | 0.06260439 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.037482426 | +| time-step | 50 | +| y_out | 0.01828127 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.034452222 | +| time-step | 51 | +| y_out | 0.050183885 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0340418 | +| time-step | 52 | +| y_out | -0.016950876 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.032532267 | +| time-step | 53 | +| y_out | -0.059085928 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.03138741 | +| time-step | 54 | +| y_out | -0.035430178 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.031528994 | +| time-step | 55 | +| y_out | 0.01941596 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.030791204 | +| time-step | 56 | +| y_out | -0.0015537776 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.02904976 | +| time-step | 57 | +| y_out | -0.055623204 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.027501712 | +| time-step | 58 | +| y_out | 0.039701626 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.027352462 | +| time-step | 59 | +| y_out | 0.004891701 | +------------------------------------------------------------ +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/checkpoint-40.pt +------------------------------------------------------------ +| perf/mse | 0.027269706 | +| time-step | 60 | +| y_out | -0.07709161 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.02755053 | +| time-step | 61 | +| y_out | -0.04931378 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.026377078 | +| time-step | 62 | +| y_out | -0.022023788 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.026741069 | +| time-step | 63 | +| y_out | -0.014538588 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.0260139 | +| time-step | 64 | +| y_out | 0.02340484 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.02451438 | +| time-step | 65 | +| y_out | 0.010321413 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.02392684 | +| time-step | 66 | +| y_out | 0.01862641 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.024274122 | +| time-step | 67 | +| y_out | -0.0616763 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.023776192 | +| time-step | 68 | +| y_out | 0.028239498 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.023010768 | +| time-step | 69 | +| y_out | 0.0131763965 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.021358164 | +| time-step | 70 | +| y_out | 0.06939075 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021077689 | +| time-step | 71 | +| y_out | 0.06996262 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.021447627 | +| time-step | 72 | +| y_out | -0.026706778 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.020928541 | +| time-step | 73 | +| y_out | -0.054852653 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.021486502 | +| time-step | 74 | +| y_out | 0.0470647 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.021607533 | +| time-step | 75 | +| y_out | -0.037036818 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.021896724 | +| time-step | 76 | +| y_out | 0.14692566 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021102814 | +| time-step | 77 | +| y_out | 0.052704632 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021197226 | +| time-step | 78 | +| y_out | 0.050001167 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022202285 | +| time-step | 79 | +| y_out | 0.023533972 | +------------------------------------------------------------ +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/checkpoint-60.pt +-------------------------------------------------------------- +| perf/mse | 0.022815336 | +| time-step | 80 | +| y_out | -0.0052834023 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.022917341 | +| time-step | 81 | +| y_out | -0.11241844 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022611864 | +| time-step | 82 | +| y_out | 0.07016237 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.022152316 | +| time-step | 83 | +| y_out | 0.028525785 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.021349275 | +| time-step | 84 | +| y_out | 0.00071961805 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.020752352 | +| time-step | 85 | +| y_out | 0.10788396 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.020431867 | +| time-step | 86 | +| y_out | 0.04132746 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.020160146 | +| time-step | 87 | +| y_out | -0.006474506 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.02040934 | +| time-step | 88 | +| y_out | -0.06577372 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.01908116 | +| time-step | 89 | +| y_out | 0.010509009 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.019838309 | +| time-step | 90 | +| y_out | 0.13234864 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.01960422 | +| time-step | 91 | +| y_out | 0.02000757 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.019332642 | +| time-step | 92 | +| y_out | 0.05553767 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.019244079 | +| time-step | 93 | +| y_out | -0.058784105 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02050903 | +| time-step | 94 | +| y_out | 0.13793725 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.02093038 | +| time-step | 95 | +| y_out | 0.09889053 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.020613886 | +| time-step | 96 | +| y_out | 0.005451856 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.021272965 | +| time-step | 97 | +| y_out | -0.018620625 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.021137979 | +| time-step | 98 | +| y_out | 0.042610936 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.021202374 | +| time-step | 99 | +| y_out | 0.087554194 | +------------------------------------------------------------ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..72356b0 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +perf/mse,time-step,y_out +0.082159676,0,-0.03930173 +0.10689151,1,0.02850845 +0.13199139,2,0.021799369 +0.15028876,3,0.06596703 +0.1723384,4,-0.024830323 +0.19386157,5,0.0264886 +0.21414629,6,0.032664597 +0.23261961,7,-0.015842723 +0.2511875,8,-0.025599772 +0.2701317,9,-0.06609582 +0.25786114,10,0.02130657 +0.2460159,11,0.015463426 +0.2368942,12,0.067268506 +0.23354551,13,-0.0446322 +0.22740078,14,0.028773785 +0.21880226,15,0.020305729 +0.20967004,16,0.06252025 +0.20231946,17,-0.051750395 +0.19456811,18,-0.058056142 +0.1851129,19,0.09042649 +0.18099524,20,-0.08248055 +0.18066162,21,-0.06541039 +0.17478596,22,-0.0108490605 +0.17030677,23,0.026811648 +0.15957513,24,0.102516875 +0.15299655,25,-0.0004074918 +0.14584634,26,-0.13715005 +0.13843277,27,-0.044480074 +0.13337915,28,0.032456663 +0.13008326,29,0.03787488 +0.12148585,30,-0.06639095 +0.11285533,31,-0.043552965 +0.102641724,32,0.021582067 +0.09392013,33,0.09746757 +0.087975316,34,0.14024463 +0.08144392,35,0.1354674 +0.079324216,36,-0.036317833 +0.076084815,37,0.022237705 +0.07042156,38,0.109902345 +0.06364162,39,0.0052000284 +0.057735633,40,0.09849411 +0.0540107,41,-0.032637317 +0.052619852,42,0.0101779625 +0.050582606,43,-0.0856691 +0.049143482,44,0.0050652325 +0.046722174,45,-0.07875314 +0.043319725,46,0.08581701 +0.040866245,47,-0.13341105 +0.03938549,48,0.07693946 +0.038137376,49,0.06260439 +0.037482426,50,0.01828127 +0.034452222,51,0.050183885 +0.0340418,52,-0.016950876 +0.032532267,53,-0.059085928 +0.03138741,54,-0.035430178 +0.031528994,55,0.01941596 +0.030791204,56,-0.0015537776 +0.02904976,57,-0.055623204 +0.027501712,58,0.039701626 +0.027352462,59,0.004891701 +0.027269706,60,-0.07709161 +0.02755053,61,-0.04931378 +0.026377078,62,-0.022023788 +0.026741069,63,-0.014538588 +0.0260139,64,0.02340484 +0.02451438,65,0.010321413 +0.02392684,66,0.01862641 +0.024274122,67,-0.0616763 +0.023776192,68,0.028239498 +0.023010768,69,0.0131763965 +0.021358164,70,0.06939075 +0.021077689,71,0.06996262 +0.021447627,72,-0.026706778 +0.020928541,73,-0.054852653 +0.021486502,74,0.0470647 +0.021607533,75,-0.037036818 +0.021896724,76,0.14692566 +0.021102814,77,0.052704632 +0.021197226,78,0.050001167 +0.022202285,79,0.023533972 +0.022815336,80,-0.0052834023 +0.022917341,81,-0.11241844 +0.022611864,82,0.07016237 +0.022152316,83,0.028525785 +0.021349275,84,0.00071961805 +0.020752352,85,0.10788396 +0.020431867,86,0.04132746 +0.020160146,87,-0.006474506 +0.02040934,88,-0.06577372 +0.01908116,89,0.010509009 +0.019838309,90,0.13234864 +0.01960422,91,0.02000757 +0.019332642,92,0.05553767 +0.019244079,93,-0.058784105 +0.02050903,94,0.13793725 +0.02093038,95,0.09889053 +0.020613886,96,0.005451856 +0.021272965,97,-0.018620625 +0.021137979,98,0.042610936 +0.021202374,99,0.087554194 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/tb/events/events.out.tfevents.1655888828.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/tb/events/events.out.tfevents.1655888828.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..9ac69c9 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/tb/events/events.out.tfevents.1655888828.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-04-34-774593 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-04-34-774593 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-04-34-774593 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-04-34-774593 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..345a3e1 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-04-34-774593 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-04-34-774593 172.16.0.65 &input_size=16/ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-04-34-774593 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-04-34-774593 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-04-34-774593 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-04-34-774593 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..84432bf --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,530 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint 0 +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.108 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 1 | +| y_out | -0.0147 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 2 | +| y_out | 0.0381 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 3 | +| y_out | -0.0489 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 4 | +| y_out | -0.0896 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 5 | +| y_out | -0.0162 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 6 | +| y_out | 0.0542 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 7 | +| y_out | -0.0206 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 8 | +| y_out | 0.0213 | +--------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.30273467 | +| time-step | 9 | +| y_out | -0.0584 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.29395097 | +| time-step | 10 | +| y_out | 0.0835 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.28379613 | +| time-step | 11 | +| y_out | 0.0127 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26060906 | +| time-step | 12 | +| y_out | 0.118 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2584651 | +| time-step | 13 | +| y_out | -0.0503 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25242004 | +| time-step | 14 | +| y_out | -0.0232 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2450529 | +| time-step | 15 | +| y_out | -0.00894 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.24903274 | +| time-step | 16 | +| y_out | -0.0515 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.23804064 | +| time-step | 17 | +| y_out | 0.109 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.23448983 | +| time-step | 18 | +| y_out | 0.0322 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22650237 | +| time-step | 19 | +| y_out | 0.0717 | +----------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint 20 +----------------------------------------------------------- +| perf/mse | 0.21686974 | +| time-step | 20 | +| y_out | 0.163 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21804841 | +| time-step | 21 | +| y_out | 0.00912 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21945918 | +| time-step | 22 | +| y_out | -0.046 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21528201 | +| time-step | 23 | +| y_out | 0.01 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21390674 | +| time-step | 24 | +| y_out | 0.119 | +----------------------------------------------------------- +--------------------------------------------------------- +| perf/mse | 0.216054 | +| time-step | 25 | +| y_out | -0.0208 | +--------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20613983 | +| time-step | 26 | +| y_out | 0.0161 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20138116 | +| time-step | 27 | +| y_out | -0.0355 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18833065 | +| time-step | 28 | +| y_out | 0.0153 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18197061 | +| time-step | 29 | +| y_out | 0.0958 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1798878 | +| time-step | 30 | +| y_out | -0.0278 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16699718 | +| time-step | 31 | +| y_out | 0.0376 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16408846 | +| time-step | 32 | +| y_out | -0.109 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15847173 | +| time-step | 33 | +| y_out | 0.0521 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1485928 | +| time-step | 34 | +| y_out | -0.0453 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14102644 | +| time-step | 35 | +| y_out | 0.0529 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13664679 | +| time-step | 36 | +| y_out | 0.11 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13304253 | +| time-step | 37 | +| y_out | 0.106 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13372514 | +| time-step | 38 | +| y_out | -0.0275 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1332607 | +| time-step | 39 | +| y_out | -0.0972 | +---------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint 40 +----------------------------------------------------------- +| perf/mse | 0.12668276 | +| time-step | 40 | +| y_out | -0.0269 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12279805 | +| time-step | 41 | +| y_out | -0.015 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11927837 | +| time-step | 42 | +| y_out | -0.056 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.113582656 | +| time-step | 43 | +| y_out | 0.0199 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.114148185 | +| time-step | 44 | +| y_out | -0.00523 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.10925172 | +| time-step | 45 | +| y_out | 0.0751 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10821352 | +| time-step | 46 | +| y_out | 0.0601 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10465683 | +| time-step | 47 | +| y_out | 0.0435 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1008785 | +| time-step | 48 | +| y_out | -0.0471 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09697681 | +| time-step | 49 | +| y_out | 0.0595 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09803487 | +| time-step | 50 | +| y_out | -0.142 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09458891 | +| time-step | 51 | +| y_out | 0.0985 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09257735 | +| time-step | 52 | +| y_out | 0.0021 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09081245 | +| time-step | 53 | +| y_out | 0.105 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08732409 | +| time-step | 54 | +| y_out | 0.034 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08890988 | +| time-step | 55 | +| y_out | 0.0313 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08871621 | +| time-step | 56 | +| y_out | -0.034 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08833708 | +| time-step | 57 | +| y_out | 0.0858 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08842267 | +| time-step | 58 | +| y_out | -0.00997 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0872462 | +| time-step | 59 | +| y_out | -0.023 | +---------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint 60 +----------------------------------------------------------- +| perf/mse | 0.08724648 | +| time-step | 60 | +| y_out | 0.0399 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.087065704 | +| time-step | 61 | +| y_out | -0.0167 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08669339 | +| time-step | 62 | +| y_out | -0.0436 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08804892 | +| time-step | 63 | +| y_out | 0.0547 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08981638 | +| time-step | 64 | +| y_out | -0.0284 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.088622496 | +| time-step | 65 | +| y_out | 0.147 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.085340336 | +| time-step | 66 | +| y_out | -0.0631 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08349003 | +| time-step | 67 | +| y_out | 0.0849 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08125773 | +| time-step | 68 | +| y_out | -0.0313 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.080278784 | +| time-step | 69 | +| y_out | -0.0328 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07805972 | +| time-step | 70 | +| y_out | 0.0409 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.078861475 | +| time-step | 71 | +| y_out | 0.0539 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07670812 | +| time-step | 72 | +| y_out | -0.0277 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07492339 | +| time-step | 73 | +| y_out | 0.0642 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07439189 | +| time-step | 74 | +| y_out | 0.0544 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0738857 | +| time-step | 75 | +| y_out | 0.0156 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07357922 | +| time-step | 76 | +| y_out | -0.0456 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07582971 | +| time-step | 77 | +| y_out | 0.00065 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.075532004 | +| time-step | 78 | +| y_out | -0.0245 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07724197 | +| time-step | 79 | +| y_out | 0.0331 | +----------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/checkpoint 80 +----------------------------------------------------------- +| perf/mse | 0.07677734 | +| time-step | 80 | +| y_out | -0.0835 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.076740704 | +| time-step | 81 | +| y_out | 0.0747 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07642641 | +| time-step | 82 | +| y_out | 0.0745 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07350165 | +| time-step | 83 | +| y_out | -0.0941 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07353509 | +| time-step | 84 | +| y_out | 0.042 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07226142 | +| time-step | 85 | +| y_out | 0.16 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07140441 | +| time-step | 86 | +| y_out | -0.0781 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06855675 | +| time-step | 87 | +| y_out | -0.0993 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06724599 | +| time-step | 88 | +| y_out | -0.0557 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06538289 | +| time-step | 89 | +| y_out | 0.00633 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.063114144 | +| time-step | 90 | +| y_out | -0.0257 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.064367115 | +| time-step | 91 | +| y_out | -0.0769 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06278794 | +| time-step | 92 | +| y_out | -0.079 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06280473 | +| time-step | 93 | +| y_out | 0.0729 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06374542 | +| time-step | 94 | +| y_out | 0.152 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.063437276 | +| time-step | 95 | +| y_out | -0.135 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06374855 | +| time-step | 96 | +| y_out | -0.0204 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06362433 | +| time-step | 97 | +| y_out | 0.0678 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06546237 | +| time-step | 98 | +| y_out | -0.0841 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.062775396 | +| time-step | 99 | +| y_out | -0.115 | +------------------------------------------------------------ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..bdddc68 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,0.10775431381292629, +1,-0.014720171157014392, +2,0.03805587706623476, +3,-0.04891250267535311, +4,-0.0896011417666765, +5,-0.01622033766470228, +6,0.0541820801420893, +7,-0.02063612525280167, +8,0.021272112110803126, +9,-0.058414658122819096,0.30273467 +10,0.08346528829652466,0.29395097 +11,0.012658422836423162,0.28379613 +12,0.11818190852589436,0.26060906 +13,-0.05029244024821523,0.2584651 +14,-0.023153534129284746,0.25242004 +15,-0.008937158069936554,0.2450529 +16,-0.05152099188234352,0.24903274 +17,0.1089015565030652,0.23804064 +18,0.032167045035181724,0.23448983 +19,0.07171092477229775,0.22650237 +20,0.16335009526269278,0.21686974 +21,0.009121474744090072,0.21804841 +22,-0.04599262521944904,0.21945918 +23,0.010010899317757782,0.21528201 +24,0.11890353591808489,0.21390674 +25,-0.020840035088989378,0.216054 +26,0.016060723044267696,0.20613983 +27,-0.03554418676603201,0.20138116 +28,0.015283931911718063,0.18833065 +29,0.09576179523705457,0.18197061 +30,-0.027821156354281423,0.1798878 +31,0.037614207102449906,0.16699718 +32,-0.10861250874719988,0.16408846 +33,0.05207323896984306,0.15847173 +34,-0.04529824567562297,0.1485928 +35,0.052933397068330806,0.14102644 +36,0.10975255549274486,0.13664679 +37,0.1062800814554009,0.13304253 +38,-0.027515612603477443,0.13372514 +39,-0.09721342264713044,0.1332607 +40,-0.026910496526855752,0.12668276 +41,-0.015026600354921989,0.12279805 +42,-0.05595340037468307,0.11927837 +43,0.019871658646808982,0.113582656 +44,-0.00523034833566946,0.114148185 +45,0.0751319143721801,0.10925172 +46,0.06012226816391995,0.10821352 +47,0.043477583401189006,0.10465683 +48,-0.047058925745744815,0.1008785 +49,0.05952993389975773,0.09697681 +50,-0.14167939692104298,0.09803487 +51,0.09847800058878117,0.09458891 +52,0.002102237763736487,0.09257735 +53,0.10530190502209316,0.09081245 +54,0.03396726003448641,0.08732409 +55,0.0313459450124998,0.08890988 +56,-0.0339687703848445,0.08871621 +57,0.08579586069571848,0.08833708 +58,-0.009971522715366367,0.08842267 +59,-0.023025696193383707,0.0872462 +60,0.039948509208708724,0.08724648 +61,-0.016693778912172982,0.087065704 +62,-0.043560971223036545,0.08669339 +63,0.05474050139634182,0.08804892 +64,-0.028385894949200356,0.08981638 +65,0.14708360911452362,0.088622496 +66,-0.06305691408076133,0.085340336 +67,0.084872123853311,0.08349003 +68,-0.03133009881188274,0.08125773 +69,-0.03276168208164502,0.080278784 +70,0.04085710485987563,0.07805972 +71,0.05394010708329673,0.078861475 +72,-0.027734959010956094,0.07670812 +73,0.06419585487200402,0.07492339 +74,0.05442465440734939,0.07439189 +75,0.015635334005411873,0.0738857 +76,-0.04564841387471549,0.07357922 +77,0.0006503201270925407,0.07582971 +78,-0.024495478854910005,0.075532004 +79,0.03305667057425596,0.07724197 +80,-0.08352000726292184,0.07677734 +81,0.07469623490579087,0.076740704 +82,0.07446815562569298,0.07642641 +83,-0.09413817463364679,0.07350165 +84,0.04204289425609159,0.07353509 +85,0.1597306495032856,0.07226142 +86,-0.0780817069168917,0.07140441 +87,-0.09927042150907667,0.06855675 +88,-0.05573818835764203,0.06724599 +89,0.006333610514288209,0.06538289 +90,-0.025672000032792863,0.063114144 +91,-0.07686491203335455,0.064367115 +92,-0.07902120904706886,0.06278794 +93,0.07294393116205997,0.06280473 +94,0.15194045371052597,0.06374542 +95,-0.13544070974578107,0.063437276 +96,-0.02036858490174139,0.06374855 +97,0.06779532310043974,0.06362433 +98,-0.08408826310874837,0.06546237 +99,-0.11501820015918421,0.062775396 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655892349.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655892349.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..1246623 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655892349.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..3c007ba --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,502 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +----------------------------------------------------------- +| time-step | 0 | +| y_out | 0.02543969 | +----------------------------------------------------------- +------------------------------------------------------------- +| time-step | 1 | +| y_out | -0.083156124 | +------------------------------------------------------------- +----------------------------------------------------------- +| time-step | 2 | +| y_out | 0.03420055 | +----------------------------------------------------------- +----------------------------------------------------------- +| time-step | 3 | +| y_out | 0.04972852 | +----------------------------------------------------------- +----------------------------------------------------------- +| time-step | 4 | +| y_out | 0.07526794 | +----------------------------------------------------------- +------------------------------------------------------------ +| time-step | 5 | +| y_out | 0.009961855 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 6 | +| y_out | -0.033058282 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 7 | +| y_out | -0.06825027 | +------------------------------------------------------------ +-------------------------------------------------------------- +| time-step | 8 | +| y_out | -0.0013000146 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.27382952 | +| time-step | 9 | +| y_out | 0.034190312 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2729284 | +| time-step | 10 | +| y_out | 0.092157975 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.26507714 | +| time-step | 11 | +| y_out | -0.08565105 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.26247218 | +| time-step | 12 | +| y_out | -0.11915968 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.25251848 | +| time-step | 13 | +| y_out | -0.038766995 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.25614166 | +| time-step | 14 | +| y_out | -0.12407726 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.25389183 | +| time-step | 15 | +| y_out | 0.022983458 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.2577769 | +| time-step | 16 | +| y_out | -0.0105117755 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26272285 | +| time-step | 17 | +| y_out | 0.03392309 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.25935462 | +| time-step | 18 | +| y_out | -0.10291268 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2546948 | +| time-step | 19 | +| y_out | -0.10690492 | +------------------------------------------------------------ +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/checkpoint-0.pt +------------------------------------------------------------ +| perf/mse | 0.2576353 | +| time-step | 20 | +| y_out | 0.024831727 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2595777 | +| time-step | 21 | +| y_out | 0.0025707819 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.25984186 | +| time-step | 22 | +| y_out | 0.0033757165 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.25955763 | +| time-step | 23 | +| y_out | -0.018356264 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.252552 | +| time-step | 24 | +| y_out | -0.10053063 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.24597804 | +| time-step | 25 | +| y_out | 0.0016568508 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.23575306 | +| time-step | 26 | +| y_out | -0.04441566 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.22787392 | +| time-step | 27 | +| y_out | -0.06055769 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2271574 | +| time-step | 28 | +| y_out | 0.045346983 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2238466 | +| time-step | 29 | +| y_out | 0.010689497 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.21453214 | +| time-step | 30 | +| y_out | -0.044969164 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20582466 | +| time-step | 31 | +| y_out | 0.01673904 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20355399 | +| time-step | 32 | +| y_out | 0.07496953 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.20363176 | +| time-step | 33 | +| y_out | 0.080068186 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.20447294 | +| time-step | 34 | +| y_out | 0.108327955 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.20085938 | +| time-step | 35 | +| y_out | 0.1127682 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19800802 | +| time-step | 36 | +| y_out | 0.06506223 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1952958 | +| time-step | 37 | +| y_out | -0.06782767 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.1970061 | +| time-step | 38 | +| y_out | -0.021291915 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19322568 | +| time-step | 39 | +| y_out | 0.06708385 | +----------------------------------------------------------- +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/checkpoint-20.pt +------------------------------------------------------------ +| perf/mse | 0.19063005 | +| time-step | 40 | +| y_out | 0.043319844 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19219904 | +| time-step | 41 | +| y_out | 0.115307316 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.18779841 | +| time-step | 42 | +| y_out | 0.034356117 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.18291819 | +| time-step | 43 | +| y_out | -0.04928518 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.17355475 | +| time-step | 44 | +| y_out | 0.093631 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.16952237 | +| time-step | 45 | +| y_out | -0.011238851 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.16762704 | +| time-step | 46 | +| y_out | -0.09669346 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.16526394 | +| time-step | 47 | +| y_out | 0.08606402 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15910259 | +| time-step | 48 | +| y_out | -0.05098465 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.15864669 | +| time-step | 49 | +| y_out | -0.027917232 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15668479 | +| time-step | 50 | +| y_out | 0.08319316 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15292951 | +| time-step | 51 | +| y_out | 0.042520244 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.14714378 | +| time-step | 52 | +| y_out | -0.12763633 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.14700839 | +| time-step | 53 | +| y_out | 0.012783881 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.14750826 | +| time-step | 54 | +| y_out | 0.10585403 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.14890778 | +| time-step | 55 | +| y_out | -0.009761127 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1456365 | +| time-step | 56 | +| y_out | -0.004182103 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1402092 | +| time-step | 57 | +| y_out | -0.018213697 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.13912843 | +| time-step | 58 | +| y_out | -0.046308033 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13373114 | +| time-step | 59 | +| y_out | 0.048111834 | +------------------------------------------------------------ +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/checkpoint-40.pt +------------------------------------------------------------ +| perf/mse | 0.13297889 | +| time-step | 60 | +| y_out | -0.04215897 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.13264537 | +| time-step | 61 | +| y_out | -0.104556434 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1329548 | +| time-step | 62 | +| y_out | -0.078657895 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1275852 | +| time-step | 63 | +| y_out | -0.027588226 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1285917 | +| time-step | 64 | +| y_out | 0.021769771 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.12751028 | +| time-step | 65 | +| y_out | -0.091332346 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.12586856 | +| time-step | 66 | +| y_out | -0.0025204439 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12516212 | +| time-step | 67 | +| y_out | 0.043982074 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.119775236 | +| time-step | 68 | +| y_out | 0.093740515 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11929594 | +| time-step | 69 | +| y_out | 0.0866701 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.116655156 | +| time-step | 70 | +| y_out | 0.02714248 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11493404 | +| time-step | 71 | +| y_out | 0.09758279 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.11613421 | +| time-step | 72 | +| y_out | -0.13671179 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11574344 | +| time-step | 73 | +| y_out | 0.020447982 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.11047717 | +| time-step | 74 | +| y_out | -0.005614616 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.10763832 | +| time-step | 75 | +| y_out | 0.0036862139 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.108061016 | +| time-step | 76 | +| y_out | -0.008496618 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1072425 | +| time-step | 77 | +| y_out | 0.021117546 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.10854429 | +| time-step | 78 | +| y_out | 0.001479405 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.106473565 | +| time-step | 79 | +| y_out | 0.07581104 | +------------------------------------------------------------ +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/checkpoint-60.pt +------------------------------------------------------------ +| perf/mse | 0.10553888 | +| time-step | 80 | +| y_out | -0.06063995 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.103933826 | +| time-step | 81 | +| y_out | -0.0016014669 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.10093144 | +| time-step | 82 | +| y_out | -0.06682074 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09985522 | +| time-step | 83 | +| y_out | -0.0502005 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.100739755 | +| time-step | 84 | +| y_out | -0.023290092 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.098885074 | +| time-step | 85 | +| y_out | -0.055518515 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.0943647 | +| time-step | 86 | +| y_out | 0.05756878 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.09271155 | +| time-step | 87 | +| y_out | -0.028779313 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.090505436 | +| time-step | 88 | +| y_out | -0.011349151 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.089886 | +| time-step | 89 | +| y_out | -0.036808457 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.08787341 | +| time-step | 90 | +| y_out | -0.0058836862 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.085306264 | +| time-step | 91 | +| y_out | 0.024026938 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.08266204 | +| time-step | 92 | +| y_out | -0.027944604 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.080433235 | +| time-step | 93 | +| y_out | 0.08344623 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.07664002 | +| time-step | 94 | +| y_out | -0.031623993 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.073959455 | +| time-step | 95 | +| y_out | 0.04589785 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.0735512 | +| time-step | 96 | +| y_out | 0.08757552 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07293037 | +| time-step | 97 | +| y_out | 0.10187426 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.072427385 | +| time-step | 98 | +| y_out | 0.00885449 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.070463374 | +| time-step | 99 | +| y_out | 0.05307331 | +------------------------------------------------------------ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..dd171f7 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,0.02543969, +1,-0.083156124, +2,0.03420055, +3,0.04972852, +4,0.07526794, +5,0.009961855, +6,-0.033058282, +7,-0.06825027, +8,-0.0013000146, +9,0.034190312,0.27382952 +10,0.092157975,0.2729284 +11,-0.08565105,0.26507714 +12,-0.11915968,0.26247218 +13,-0.038766995,0.25251848 +14,-0.12407726,0.25614166 +15,0.022983458,0.25389183 +16,-0.0105117755,0.2577769 +17,0.03392309,0.26272285 +18,-0.10291268,0.25935462 +19,-0.10690492,0.2546948 +20,0.024831727,0.2576353 +21,0.0025707819,0.2595777 +22,0.0033757165,0.25984186 +23,-0.018356264,0.25955763 +24,-0.10053063,0.252552 +25,0.0016568508,0.24597804 +26,-0.04441566,0.23575306 +27,-0.06055769,0.22787392 +28,0.045346983,0.2271574 +29,0.010689497,0.2238466 +30,-0.044969164,0.21453214 +31,0.01673904,0.20582466 +32,0.07496953,0.20355399 +33,0.080068186,0.20363176 +34,0.108327955,0.20447294 +35,0.1127682,0.20085938 +36,0.06506223,0.19800802 +37,-0.06782767,0.1952958 +38,-0.021291915,0.1970061 +39,0.06708385,0.19322568 +40,0.043319844,0.19063005 +41,0.115307316,0.19219904 +42,0.034356117,0.18779841 +43,-0.04928518,0.18291819 +44,0.093631,0.17355475 +45,-0.011238851,0.16952237 +46,-0.09669346,0.16762704 +47,0.08606402,0.16526394 +48,-0.05098465,0.15910259 +49,-0.027917232,0.15864669 +50,0.08319316,0.15668479 +51,0.042520244,0.15292951 +52,-0.12763633,0.14714378 +53,0.012783881,0.14700839 +54,0.10585403,0.14750826 +55,-0.009761127,0.14890778 +56,-0.004182103,0.1456365 +57,-0.018213697,0.1402092 +58,-0.046308033,0.13912843 +59,0.048111834,0.13373114 +60,-0.04215897,0.13297889 +61,-0.104556434,0.13264537 +62,-0.078657895,0.1329548 +63,-0.027588226,0.1275852 +64,0.021769771,0.1285917 +65,-0.091332346,0.12751028 +66,-0.0025204439,0.12586856 +67,0.043982074,0.12516212 +68,0.093740515,0.119775236 +69,0.0866701,0.11929594 +70,0.02714248,0.116655156 +71,0.09758279,0.11493404 +72,-0.13671179,0.11613421 +73,0.020447982,0.11574344 +74,-0.005614616,0.11047717 +75,0.0036862139,0.10763832 +76,-0.008496618,0.108061016 +77,0.021117546,0.1072425 +78,0.001479405,0.10854429 +79,0.07581104,0.106473565 +80,-0.06063995,0.10553888 +81,-0.0016014669,0.103933826 +82,-0.06682074,0.10093144 +83,-0.0502005,0.09985522 +84,-0.023290092,0.100739755 +85,-0.055518515,0.098885074 +86,0.05756878,0.0943647 +87,-0.028779313,0.09271155 +88,-0.011349151,0.090505436 +89,-0.036808457,0.089886 +90,-0.0058836862,0.08787341 +91,0.024026938,0.085306264 +92,-0.027944604,0.08266204 +93,0.08344623,0.080433235 +94,-0.031623993,0.07664002 +95,0.04589785,0.073959455 +96,0.08757552,0.0735512 +97,0.10187426,0.07293037 +98,0.00885449,0.072427385 +99,0.05307331,0.070463374 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655892385.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655892385.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..14ee9f6 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655892385.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..de028fa --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,12 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +-------------------------------------------------- +| i | 0 | +| time-step | 0 | +-------------------------------------------------- +[WARN] 0 : sync: start diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..16ef5df --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/progress.csv @@ -0,0 +1,2 @@ +i,time-step +0,0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655892957.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655892957.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..9513f17 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655892957.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..1f18179 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-15-57-636377 172.16.0.65 &input_size=16/warn.txt @@ -0,0 +1 @@ +[WARN] 0 : sync: start diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..f40deb9 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,12 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +-------------------------------------------------- +| i | 0 | +| time-step | 0 | +-------------------------------------------------- +[WARN] 0 : sync: start diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..16ef5df --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/progress.csv @@ -0,0 +1,2 @@ +i,time-step +0,0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655892966.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655892966.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..36a664e Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655892966.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..1f18179 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-16-06-904673 172.16.0.65 &input_size=16/warn.txt @@ -0,0 +1 @@ +[WARN] 0 : sync: start diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..6723e85 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,12 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +-------------------------------------------------- +| i | 0 | +| time-step | 0 | +-------------------------------------------------- +[WARN] 0 : sync: start diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..16ef5df --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/progress.csv @@ -0,0 +1,2 @@ +i,time-step +0,0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655893157.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655893157.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..dfe1b4a Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655893157.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..1f18179 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-19-17-522841 172.16.0.65 &input_size=16/warn.txt @@ -0,0 +1 @@ +[WARN] 0 : sync: start diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..6cd45d2 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,12 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +-------------------------------------------------- +| i | 0 | +| time-step | 0 | +-------------------------------------------------- +[WARN] 0 : sync: start diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..16ef5df --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/progress.csv @@ -0,0 +1,2 @@ +i,time-step +0,0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655893501.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655893501.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..3bcd498 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655893501.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..1f18179 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-25-01-451923 172.16.0.65 &input_size=16/warn.txt @@ -0,0 +1 @@ +[WARN] 0 : sync: start diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/log.txt new file mode 100644 index 0000000..009152b --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/log.txt @@ -0,0 +1,12 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +-------------------------------------------------- +| i | 0 | +| time-step | 0 | +-------------------------------------------------- +[WARN] 0 : sync: start diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/progress.csv new file mode 100644 index 0000000..16ef5df --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/progress.csv @@ -0,0 +1,2 @@ +i,time-step +0,0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655893651.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655893651.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..2480abd Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/tb/events/events.out.tfevents.1655893651.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/warn.txt new file mode 100644 index 0000000..1f18179 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/18-27-31-330327 172.16.0.65 &input_size=16/warn.txt @@ -0,0 +1 @@ +[WARN] 0 : sync: start diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/log.txt new file mode 100644 index 0000000..e288008 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/log.txt @@ -0,0 +1,530 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint 0 +--------------------------------------------------------- +| time-step | 0 | +| y_out | -0.0426 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 1 | +| y_out | -0.136 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 2 | +| y_out | 0.042 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 3 | +| y_out | -0.053 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 4 | +| y_out | 0.11 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 5 | +| y_out | 0.0432 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 6 | +| y_out | 0.153 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 7 | +| y_out | -0.061 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 8 | +| y_out | -0.0457 | +--------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.47477263 | +| time-step | 9 | +| y_out | 0.0632 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.46034032 | +| time-step | 10 | +| y_out | -0.0555 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.4469831 | +| time-step | 11 | +| y_out | 0.0276 | +---------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.4499182 | +| time-step | 12 | +| y_out | -0.0611 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.43114018 | +| time-step | 13 | +| y_out | -0.0573 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.42561874 | +| time-step | 14 | +| y_out | -0.0623 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.4123823 | +| time-step | 15 | +| y_out | -0.0437 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.41393858 | +| time-step | 16 | +| y_out | -0.0507 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.40838248 | +| time-step | 17 | +| y_out | -0.114 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.39053327 | +| time-step | 18 | +| y_out | 0.0427 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.38163424 | +| time-step | 19 | +| y_out | 0.0313 | +----------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint 20 +----------------------------------------------------------- +| perf/mse | 0.38190514 | +| time-step | 20 | +| y_out | 0.02 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.36398634 | +| time-step | 21 | +| y_out | 0.0423 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.35278568 | +| time-step | 22 | +| y_out | 0.123 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.35168636 | +| time-step | 23 | +| y_out | 0.111 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.33598837 | +| time-step | 24 | +| y_out | 0.0468 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.31792706 | +| time-step | 25 | +| y_out | -0.037 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.30697304 | +| time-step | 26 | +| y_out | -0.0581 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.29171485 | +| time-step | 27 | +| y_out | 0.0902 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.29094085 | +| time-step | 28 | +| y_out | 0.0852 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.27945215 | +| time-step | 29 | +| y_out | 0.063 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.27446556 | +| time-step | 30 | +| y_out | -0.0777 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.27430564 | +| time-step | 31 | +| y_out | 0.159 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2673028 | +| time-step | 32 | +| y_out | 0.0657 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25983655 | +| time-step | 33 | +| y_out | 0.0482 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25814977 | +| time-step | 34 | +| y_out | -0.0711 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2645093 | +| time-step | 35 | +| y_out | 0.0489 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25751668 | +| time-step | 36 | +| y_out | 0.0856 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25217295 | +| time-step | 37 | +| y_out | 0.09 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.24525543 | +| time-step | 38 | +| y_out | 0.0475 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.23599634 | +| time-step | 39 | +| y_out | 0.0469 | +----------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint 40 +----------------------------------------------------------- +| perf/mse | 0.22994074 | +| time-step | 40 | +| y_out | -0.0452 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22271113 | +| time-step | 41 | +| y_out | 0.0525 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21314354 | +| time-step | 42 | +| y_out | -0.0414 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21123913 | +| time-step | 43 | +| y_out | -0.073 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20096512 | +| time-step | 44 | +| y_out | -0.0477 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19233385 | +| time-step | 45 | +| y_out | 0.0364 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1896142 | +| time-step | 46 | +| y_out | 0.0637 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19023702 | +| time-step | 47 | +| y_out | 0.102 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18690595 | +| time-step | 48 | +| y_out | 0.0722 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18166336 | +| time-step | 49 | +| y_out | 0.0122 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17107615 | +| time-step | 50 | +| y_out | 0.0455 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1711011 | +| time-step | 51 | +| y_out | 0.13 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17241149 | +| time-step | 52 | +| y_out | 0.0373 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16246584 | +| time-step | 53 | +| y_out | 0.086 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16844432 | +| time-step | 54 | +| y_out | 0.0906 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16454713 | +| time-step | 55 | +| y_out | 0.104 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15855086 | +| time-step | 56 | +| y_out | -0.0461 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15971772 | +| time-step | 57 | +| y_out | -0.000737 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16151166 | +| time-step | 58 | +| y_out | 0.0436 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16324154 | +| time-step | 59 | +| y_out | -0.0676 | +----------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint 60 +----------------------------------------------------------- +| perf/mse | 0.17227364 | +| time-step | 60 | +| y_out | -0.141 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16597103 | +| time-step | 61 | +| y_out | 0.0897 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15995072 | +| time-step | 62 | +| y_out | 0.0748 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16068172 | +| time-step | 63 | +| y_out | -0.0467 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15676652 | +| time-step | 64 | +| y_out | 0.0949 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15169835 | +| time-step | 65 | +| y_out | -0.000441 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15456648 | +| time-step | 66 | +| y_out | 0.0306 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15129139 | +| time-step | 67 | +| y_out | 0.0788 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14592138 | +| time-step | 68 | +| y_out | -0.0254 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14131382 | +| time-step | 69 | +| y_out | -0.0318 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13168713 | +| time-step | 70 | +| y_out | 0.00188 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13277394 | +| time-step | 71 | +| y_out | 0.0349 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13121217 | +| time-step | 72 | +| y_out | 0.00193 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12806149 | +| time-step | 73 | +| y_out | 0.00503 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12577616 | +| time-step | 74 | +| y_out | 0.00166 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12997623 | +| time-step | 75 | +| y_out | -0.0776 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12527299 | +| time-step | 76 | +| y_out | 0.121 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.121158935 | +| time-step | 77 | +| y_out | -0.0168 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.12085513 | +| time-step | 78 | +| y_out | 0.00893 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11750875 | +| time-step | 79 | +| y_out | -0.0219 | +----------------------------------------------------------- +save checkpoint to ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/checkpoint 80 +------------------------------------------------------------ +| perf/mse | 0.119886376 | +| time-step | 80 | +| y_out | 0.0832 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11578877 | +| time-step | 81 | +| y_out | 0.0612 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11291431 | +| time-step | 82 | +| y_out | -0.107 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11140708 | +| time-step | 83 | +| y_out | 0.149 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10805426 | +| time-step | 84 | +| y_out | 0.0316 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10308941 | +| time-step | 85 | +| y_out | 0.0146 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09938879 | +| time-step | 86 | +| y_out | 0.0442 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09633983 | +| time-step | 87 | +| y_out | 0.043 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09636699 | +| time-step | 88 | +| y_out | 0.0303 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10237183 | +| time-step | 89 | +| y_out | -0.00178 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10292266 | +| time-step | 90 | +| y_out | -0.0718 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10133407 | +| time-step | 91 | +| y_out | 0.0412 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10371248 | +| time-step | 92 | +| y_out | 0.0781 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10306176 | +| time-step | 93 | +| y_out | -0.0071 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.103057325 | +| time-step | 94 | +| y_out | -0.0368 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.10298441 | +| time-step | 95 | +| y_out | -0.0482 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10385045 | +| time-step | 96 | +| y_out | -0.0303 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10305275 | +| time-step | 97 | +| y_out | 0.00739 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10142896 | +| time-step | 98 | +| y_out | 0.0643 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09574478 | +| time-step | 99 | +| y_out | -0.126 | +----------------------------------------------------------- diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/progress.csv new file mode 100644 index 0000000..a4af214 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,-0.042631271423554745, +1,-0.1364577378250604, +2,0.04198128418419079, +3,-0.053031219974647076, +4,0.10986333102152725, +5,0.04319570484279357, +6,0.15277026946608957, +7,-0.0609535839197955, +8,-0.04574209316470208, +9,0.063186428458699,0.47477263 +10,-0.05554488367605713,0.46034032 +11,0.02756561150692672,0.4469831 +12,-0.06113632560184065,0.4499182 +13,-0.05729650991076221,0.43114018 +14,-0.062309845867246055,0.42561874 +15,-0.043654565851137576,0.4123823 +16,-0.05072726876438004,0.41393858 +17,-0.11433706858627866,0.40838248 +18,0.04267083387841171,0.39053327 +19,0.03129262730613754,0.38163424 +20,0.020000225243933675,0.38190514 +21,0.04232643502757644,0.36398634 +22,0.12298814077975216,0.35278568 +23,0.111410478692031,0.35168636 +24,0.04682092756163404,0.33598837 +25,-0.03696535453502283,0.31792706 +26,-0.058079743052951126,0.30697304 +27,0.09020313765264647,0.29171485 +28,0.08518773595731752,0.29094085 +29,0.06296484121332212,0.27945215 +30,-0.07766215510184268,0.27446556 +31,0.15882206846774163,0.27430564 +32,0.06571076119802181,0.2673028 +33,0.048242107895439826,0.25983655 +34,-0.0710608022828835,0.25814977 +35,0.04892767704953277,0.2645093 +36,0.08559267987223602,0.25751668 +37,0.0900296802926724,0.25217295 +38,0.04752147300027438,0.24525543 +39,0.046938368904262937,0.23599634 +40,-0.04516591672680345,0.22994074 +41,0.05245693081707962,0.22271113 +42,-0.041420042763322826,0.21314354 +43,-0.07299275028763716,0.21123913 +44,-0.04766585268683507,0.20096512 +45,0.03637569865308578,0.19233385 +46,0.0637071270661469,0.1896142 +47,0.10204727867831738,0.19023702 +48,0.07223274286792665,0.18690595 +49,0.012167403930337856,0.18166336 +50,0.0455250323451869,0.17107615 +51,0.13020727516322136,0.1711011 +52,0.03728443214535279,0.17241149 +53,0.08598865141306922,0.16246584 +54,0.09059997601458468,0.16844432 +55,0.10362298854273516,0.16454713 +56,-0.046148565305826506,0.15855086 +57,-0.0007371559929619728,0.15971772 +58,0.04355007722731204,0.16151166 +59,-0.0675993631025078,0.16324154 +60,-0.14134361223313935,0.17227364 +61,0.08972106952525882,0.16597103 +62,0.07477679886000704,0.15995072 +63,-0.046673323898731585,0.16068172 +64,0.09488665999349899,0.15676652 +65,-0.0004408401752546004,0.15169835 +66,0.030614541903657866,0.15456648 +67,0.07881371180388491,0.15129139 +68,-0.025439739065993325,0.14592138 +69,-0.03179671608415017,0.14131382 +70,0.0018838800273953404,0.13168713 +71,0.034870502936778125,0.13277394 +72,0.0019287353279891437,0.13121217 +73,0.005034622220455923,0.12806149 +74,0.0016589237180910238,0.12577616 +75,-0.07759810164841838,0.12997623 +76,0.1209364046736768,0.12527299 +77,-0.016765273728278483,0.121158935 +78,0.008927658688678633,0.12085513 +79,-0.021862040647540742,0.11750875 +80,0.08320333174207678,0.119886376 +81,0.0612469508308494,0.11578877 +82,-0.10654244626513842,0.11291431 +83,0.14852336417899037,0.11140708 +84,0.031596637016616844,0.10805426 +85,0.014572984750017288,0.10308941 +86,0.04420749244054982,0.09938879 +87,0.04304140152758908,0.09633983 +88,0.030311581878936317,0.09636699 +89,-0.001784753966748584,0.10237183 +90,-0.0718014084765413,0.10292266 +91,0.04117315613523217,0.10133407 +92,0.07811842064961792,0.10371248 +93,-0.0070966943351091424,0.10306176 +94,-0.0367675484330903,0.103057325 +95,-0.048194440660051255,0.10298441 +96,-0.030317725866074716,0.10385045 +97,0.007392883315061896,0.10305275 +98,0.0643474426384391,0.10142896 +99,-0.12583916345318902,0.09574478 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/tb/events/events.out.tfevents.1655899799.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/tb/events/events.out.tfevents.1655899799.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..16988c8 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/tb/events/events.out.tfevents.1655899799.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/log.txt new file mode 100644 index 0000000..0d4754e --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/log.txt @@ -0,0 +1,502 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +---------------------------------------------------------- +| time-step | 0 | +| y_out | 0.1270025 | +---------------------------------------------------------- +------------------------------------------------------------- +| time-step | 1 | +| y_out | -0.033143442 | +------------------------------------------------------------- +----------------------------------------------------------- +| time-step | 2 | +| y_out | 0.04316023 | +----------------------------------------------------------- +------------------------------------------------------------- +| time-step | 3 | +| y_out | 0.0074920505 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 4 | +| y_out | -0.07922106 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 5 | +| y_out | -0.06868453 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 6 | +| y_out | 0.056429192 | +------------------------------------------------------------ +----------------------------------------------------------- +| time-step | 7 | +| y_out | 0.03839404 | +----------------------------------------------------------- +----------------------------------------------------------- +| time-step | 8 | +| y_out | 0.08945827 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24455085 | +| time-step | 9 | +| y_out | -0.07164294 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23955028 | +| time-step | 10 | +| y_out | -0.11064705 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.23086555 | +| time-step | 11 | +| y_out | -0.059792 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.22925691 | +| time-step | 12 | +| y_out | -0.035293307 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.22662637 | +| time-step | 13 | +| y_out | 0.088819206 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.22157809 | +| time-step | 14 | +| y_out | -0.09565427 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.20833018 | +| time-step | 15 | +| y_out | -0.09092255 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.20849486 | +| time-step | 16 | +| y_out | 0.021676589 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.20898747 | +| time-step | 17 | +| y_out | 0.0142172985 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.20411983 | +| time-step | 18 | +| y_out | -0.03821886 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.20476095 | +| time-step | 19 | +| y_out | -0.0538266 | +----------------------------------------------------------- +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/checkpoint-0.pt +------------------------------------------------------------ +| perf/mse | 0.19967778 | +| time-step | 20 | +| y_out | 0.060248084 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.20475204 | +| time-step | 21 | +| y_out | -0.06632933 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.19850641 | +| time-step | 22 | +| y_out | -0.032221988 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19360936 | +| time-step | 23 | +| y_out | -0.17311391 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19145238 | +| time-step | 24 | +| y_out | -0.03579962 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.19604379 | +| time-step | 25 | +| y_out | 0.06489918 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19490609 | +| time-step | 26 | +| y_out | 0.09866177 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19261387 | +| time-step | 27 | +| y_out | 0.10104892 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18767723 | +| time-step | 28 | +| y_out | -0.10728069 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.18340199 | +| time-step | 29 | +| y_out | 0.1305145 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.18586314 | +| time-step | 30 | +| y_out | -0.024374193 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.18150596 | +| time-step | 31 | +| y_out | 0.0003626207 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.17714699 | +| time-step | 32 | +| y_out | -0.038588032 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1739293 | +| time-step | 33 | +| y_out | 0.017144665 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17054138 | +| time-step | 34 | +| y_out | -0.05243077 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16789882 | +| time-step | 35 | +| y_out | -0.12129211 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.162882 | +| time-step | 36 | +| y_out | -0.02741717 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.16063163 | +| time-step | 37 | +| y_out | -0.038193766 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1594989 | +| time-step | 38 | +| y_out | 0.0040047728 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.15355758 | +| time-step | 39 | +| y_out | -0.027278213 | +------------------------------------------------------------- +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/checkpoint-20.pt +----------------------------------------------------------- +| perf/mse | 0.14723027 | +| time-step | 40 | +| y_out | 0.05641021 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1416758 | +| time-step | 41 | +| y_out | 0.012135993 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.13919118 | +| time-step | 42 | +| y_out | 0.080893956 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.14177832 | +| time-step | 43 | +| y_out | -0.051185153 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.13908552 | +| time-step | 44 | +| y_out | -0.117702864 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1300364 | +| time-step | 45 | +| y_out | -0.04133995 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.1272886 | +| time-step | 46 | +| y_out | 0.008002132 | +------------------------------------------------------------ +--------------------------------------------------------------- +| perf/mse | 0.124234155 | +| time-step | 47 | +| y_out | -0.00082183536 | +--------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.12085317 | +| time-step | 48 | +| y_out | -0.020323765 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.11976151 | +| time-step | 49 | +| y_out | -0.07246548 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11697744 | +| time-step | 50 | +| y_out | -0.04953236 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11347904 | +| time-step | 51 | +| y_out | 0.06752398 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.11415629 | +| time-step | 52 | +| y_out | -0.06853134 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.1067762 | +| time-step | 53 | +| y_out | 0.012878716 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.10410388 | +| time-step | 54 | +| y_out | -0.038085572 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1046227 | +| time-step | 55 | +| y_out | 0.045601353 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.10415797 | +| time-step | 56 | +| y_out | 0.037767366 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.10001101 | +| time-step | 57 | +| y_out | 0.05764051 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09861631 | +| time-step | 58 | +| y_out | -0.1096278 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0992529 | +| time-step | 59 | +| y_out | -0.012828685 | +------------------------------------------------------------- +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/checkpoint-40.pt +------------------------------------------------------------ +| perf/mse | 0.09712757 | +| time-step | 60 | +| y_out | 0.122913696 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.09613137 | +| time-step | 61 | +| y_out | -0.067309484 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.09078523 | +| time-step | 62 | +| y_out | 0.034743674 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.09090859 | +| time-step | 63 | +| y_out | -0.017664798 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08863268 | +| time-step | 64 | +| y_out | 0.04270229 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.086019516 | +| time-step | 65 | +| y_out | -0.0034357123 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.081322595 | +| time-step | 66 | +| y_out | 0.06502881 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08055607 | +| time-step | 67 | +| y_out | 0.03288244 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.08155529 | +| time-step | 68 | +| y_out | -0.04664415 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07779691 | +| time-step | 69 | +| y_out | 0.008411724 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0756353 | +| time-step | 70 | +| y_out | 0.031317182 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07521866 | +| time-step | 71 | +| y_out | -0.05401724 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.07443766 | +| time-step | 72 | +| y_out | -0.040979695 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.07535409 | +| time-step | 73 | +| y_out | -0.08224071 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07581641 | +| time-step | 74 | +| y_out | 0.01346373 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.074816994 | +| time-step | 75 | +| y_out | -0.07526079 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07569193 | +| time-step | 76 | +| y_out | 0.04082101 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.07390078 | +| time-step | 77 | +| y_out | -0.05559425 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.069573805 | +| time-step | 78 | +| y_out | -0.018094297 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.068470836 | +| time-step | 79 | +| y_out | 0.11093522 | +------------------------------------------------------------ +rm the older checkpoint ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/checkpoint-60.pt +------------------------------------------------------------ +| perf/mse | 0.06682734 | +| time-step | 80 | +| y_out | 0.024800558 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.064113766 | +| time-step | 81 | +| y_out | -0.059818994 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.06313278 | +| time-step | 82 | +| y_out | -0.030326419 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.056976516 | +| time-step | 83 | +| y_out | 0.05496442 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.053131253 | +| time-step | 84 | +| y_out | -0.19041705 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.052117765 | +| time-step | 85 | +| y_out | 0.093179375 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.04999153 | +| time-step | 86 | +| y_out | 0.074907884 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.049099077 | +| time-step | 87 | +| y_out | -0.05020786 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.048349667 | +| time-step | 88 | +| y_out | -0.06092811 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.047243617 | +| time-step | 89 | +| y_out | -0.03692233 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04564277 | +| time-step | 90 | +| y_out | 0.1223818 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.044437572 | +| time-step | 91 | +| y_out | 0.08561091 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.04359993 | +| time-step | 92 | +| y_out | -0.044740327 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.043888208 | +| time-step | 93 | +| y_out | -0.059321 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.044506133 | +| time-step | 94 | +| y_out | -0.06644118 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.04357945 | +| time-step | 95 | +| y_out | -0.04814718 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.042611774 | +| time-step | 96 | +| y_out | -0.03791592 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.041191537 | +| time-step | 97 | +| y_out | 0.08317861 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.039872684 | +| time-step | 98 | +| y_out | 0.0685949 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.038431402 | +| time-step | 99 | +| y_out | -0.032349944 | +------------------------------------------------------------- diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/progress.csv new file mode 100644 index 0000000..ca4aa87 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,0.1270025, +1,-0.033143442, +2,0.04316023, +3,0.0074920505, +4,-0.07922106, +5,-0.06868453, +6,0.056429192, +7,0.03839404, +8,0.08945827, +9,-0.07164294,0.24455085 +10,-0.11064705,0.23955028 +11,-0.059792,0.23086555 +12,-0.035293307,0.22925691 +13,0.088819206,0.22662637 +14,-0.09565427,0.22157809 +15,-0.09092255,0.20833018 +16,0.021676589,0.20849486 +17,0.0142172985,0.20898747 +18,-0.03821886,0.20411983 +19,-0.0538266,0.20476095 +20,0.060248084,0.19967778 +21,-0.06632933,0.20475204 +22,-0.032221988,0.19850641 +23,-0.17311391,0.19360936 +24,-0.03579962,0.19145238 +25,0.06489918,0.19604379 +26,0.09866177,0.19490609 +27,0.10104892,0.19261387 +28,-0.10728069,0.18767723 +29,0.1305145,0.18340199 +30,-0.024374193,0.18586314 +31,0.0003626207,0.18150596 +32,-0.038588032,0.17714699 +33,0.017144665,0.1739293 +34,-0.05243077,0.17054138 +35,-0.12129211,0.16789882 +36,-0.02741717,0.162882 +37,-0.038193766,0.16063163 +38,0.0040047728,0.1594989 +39,-0.027278213,0.15355758 +40,0.05641021,0.14723027 +41,0.012135993,0.1416758 +42,0.080893956,0.13919118 +43,-0.051185153,0.14177832 +44,-0.117702864,0.13908552 +45,-0.04133995,0.1300364 +46,0.008002132,0.1272886 +47,-0.00082183536,0.124234155 +48,-0.020323765,0.12085317 +49,-0.07246548,0.11976151 +50,-0.04953236,0.11697744 +51,0.06752398,0.11347904 +52,-0.06853134,0.11415629 +53,0.012878716,0.1067762 +54,-0.038085572,0.10410388 +55,0.045601353,0.1046227 +56,0.037767366,0.10415797 +57,0.05764051,0.10001101 +58,-0.1096278,0.09861631 +59,-0.012828685,0.0992529 +60,0.122913696,0.09712757 +61,-0.067309484,0.09613137 +62,0.034743674,0.09078523 +63,-0.017664798,0.09090859 +64,0.04270229,0.08863268 +65,-0.0034357123,0.086019516 +66,0.06502881,0.081322595 +67,0.03288244,0.08055607 +68,-0.04664415,0.08155529 +69,0.008411724,0.07779691 +70,0.031317182,0.0756353 +71,-0.05401724,0.07521866 +72,-0.040979695,0.07443766 +73,-0.08224071,0.07535409 +74,0.01346373,0.07581641 +75,-0.07526079,0.074816994 +76,0.04082101,0.07569193 +77,-0.05559425,0.07390078 +78,-0.018094297,0.069573805 +79,0.11093522,0.068470836 +80,0.024800558,0.06682734 +81,-0.059818994,0.064113766 +82,-0.030326419,0.06313278 +83,0.05496442,0.056976516 +84,-0.19041705,0.053131253 +85,0.093179375,0.052117765 +86,0.074907884,0.04999153 +87,-0.05020786,0.049099077 +88,-0.06092811,0.048349667 +89,-0.03692233,0.047243617 +90,0.1223818,0.04564277 +91,0.08561091,0.044437572 +92,-0.044740327,0.04359993 +93,-0.059321,0.043888208 +94,-0.06644118,0.044506133 +95,-0.04814718,0.04357945 +96,-0.03791592,0.042611774 +97,0.08317861,0.041191537 +98,0.0685949,0.039872684 +99,-0.032349944,0.038431402 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/tb/events/events.out.tfevents.1655899885.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/tb/events/events.out.tfevents.1655899885.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..f83e76b Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/tb/events/events.out.tfevents.1655899885.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/log.txt new file mode 100644 index 0000000..9635ecb --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/log.txt @@ -0,0 +1,12 @@ +Logging to ../../test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/ +log dir: ../../test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/ +pkl_file: ../../test_data_root/archive_tester/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16.pkl +checkpoint_dir: ../../test_data_root/checkpoint/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/ +results_dir: ../../test_data_root/results/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +-------------------------------------------------- +| i | 0 | +| time-step | 0 | +-------------------------------------------------- +[WARN] 0 : sync: start diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/progress.csv new file mode 100644 index 0000000..16ef5df --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/progress.csv @@ -0,0 +1,2 @@ +i,time-step +0,0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/tb/events/events.out.tfevents.1655899958.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/tb/events/events.out.tfevents.1655899958.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..42df690 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/tb/events/events.out.tfevents.1655899958.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/warn.txt new file mode 100644 index 0000000..1f18179 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/22/20-12-38-834938_172.16.0.65_&input_size=16/warn.txt @@ -0,0 +1 @@ +[WARN] 0 : sync: start diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/log.txt new file mode 100644 index 0000000..ba3ef3a --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/log.txt @@ -0,0 +1,539 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +save checkpoint to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint 0 +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.0145 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 1 | +| y_out | 0.0012 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 2 | +| y_out | 0.0199 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 3 | +| y_out | -0.124 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 4 | +| y_out | -0.034 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 5 | +| y_out | -0.0102 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 6 | +| y_out | 0.114 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 7 | +| y_out | 0.0567 | +--------------------------------------------------------- +--------------------------------------------------------- +| time-step | 8 | +| y_out | 0.0309 | +--------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.40850583 | +| time-step | 9 | +| y_out | 0.006 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.38869593 | +| time-step | 10 | +| y_out | 0.111 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.36860225 | +| time-step | 11 | +| y_out | 0.139 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.34584624 | +| time-step | 12 | +| y_out | -0.0508 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.32611674 | +| time-step | 13 | +| y_out | -0.00365 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.31833556 | +| time-step | 14 | +| y_out | -0.0405 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.32321334 | +| time-step | 15 | +| y_out | -0.0225 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.31403857 | +| time-step | 16 | +| y_out | -0.0346 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.3043001 | +| time-step | 17 | +| y_out | -0.063 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.29597905 | +| time-step | 18 | +| y_out | 0.0388 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2834611 | +| time-step | 19 | +| y_out | -0.0785 | +---------------------------------------------------------- +save checkpoint to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint 20 +----------------------------------------------------------- +| perf/mse | 0.28650934 | +| time-step | 20 | +| y_out | -0.0719 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.28245777 | +| time-step | 21 | +| y_out | 0.0275 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.27612627 | +| time-step | 22 | +| y_out | -0.0757 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.28076744 | +| time-step | 23 | +| y_out | 0.0549 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.26953632 | +| time-step | 24 | +| y_out | -0.107 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2545963 | +| time-step | 25 | +| y_out | 0.129 | +---------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2434386 | +| time-step | 26 | +| y_out | 0.00946 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.23191626 | +| time-step | 27 | +| y_out | -0.0125 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2256171 | +| time-step | 28 | +| y_out | 0.0591 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22047305 | +| time-step | 29 | +| y_out | 0.0286 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2102662 | +| time-step | 30 | +| y_out | 0.0831 | +---------------------------------------------------------- +--------------------------------------------------------- +| perf/mse | 0.20084 | +| time-step | 31 | +| y_out | 0.0852 | +--------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20053959 | +| time-step | 32 | +| y_out | -0.0129 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18661442 | +| time-step | 33 | +| y_out | -0.0325 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17677857 | +| time-step | 34 | +| y_out | 0.0221 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16968016 | +| time-step | 35 | +| y_out | -0.0597 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16578284 | +| time-step | 36 | +| y_out | 0.0974 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16460271 | +| time-step | 37 | +| y_out | 0.0889 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15855713 | +| time-step | 38 | +| y_out | 0.0347 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15664673 | +| time-step | 39 | +| y_out | -0.0312 | +----------------------------------------------------------- +save checkpoint to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint 40 +----------------------------------------------------------- +| perf/mse | 0.15285398 | +| time-step | 40 | +| y_out | 0.12 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15155785 | +| time-step | 41 | +| y_out | -0.0889 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14486167 | +| time-step | 42 | +| y_out | -0.015 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14467312 | +| time-step | 43 | +| y_out | -0.0802 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14124988 | +| time-step | 44 | +| y_out | 0.0225 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14351904 | +| time-step | 45 | +| y_out | 0.0364 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14487626 | +| time-step | 46 | +| y_out | -0.0967 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13864289 | +| time-step | 47 | +| y_out | 0.0156 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13639566 | +| time-step | 48 | +| y_out | -0.0128 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13120037 | +| time-step | 49 | +| y_out | 0.114 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12494274 | +| time-step | 50 | +| y_out | 0.0335 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.116961956 | +| time-step | 51 | +| y_out | -0.0639 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11480044 | +| time-step | 52 | +| y_out | -0.101 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10895107 | +| time-step | 53 | +| y_out | 0.109 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10444629 | +| time-step | 54 | +| y_out | 0.00276 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.100612834 | +| time-step | 55 | +| y_out | -0.0891 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09450734 | +| time-step | 56 | +| y_out | -0.0722 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09515741 | +| time-step | 57 | +| y_out | 0.054 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09247611 | +| time-step | 58 | +| y_out | -0.00453 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08946009 | +| time-step | 59 | +| y_out | -0.0326 | +----------------------------------------------------------- +save checkpoint to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint 60 +------------------------------------------------------------ +| perf/mse | 0.088738285 | +| time-step | 60 | +| y_out | -0.00738 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08860503 | +| time-step | 61 | +| y_out | -0.0433 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08847658 | +| time-step | 62 | +| y_out | 0.0395 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08541656 | +| time-step | 63 | +| y_out | 0.00289 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.085456796 | +| time-step | 64 | +| y_out | 0.0879 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.081616215 | +| time-step | 65 | +| y_out | 0.134 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.079945266 | +| time-step | 66 | +| y_out | -0.0082 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.077882424 | +| time-step | 67 | +| y_out | -0.0823 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07687993 | +| time-step | 68 | +| y_out | -0.0202 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0781029 | +| time-step | 69 | +| y_out | 0.0278 | +---------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.075885914 | +| time-step | 70 | +| y_out | -0.0509 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07484702 | +| time-step | 71 | +| y_out | -0.0861 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07238613 | +| time-step | 72 | +| y_out | 0.0176 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.071478315 | +| time-step | 73 | +| y_out | -0.0309 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07421163 | +| time-step | 74 | +| y_out | -0.00979 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07448347 | +| time-step | 75 | +| y_out | -0.0437 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07566585 | +| time-step | 76 | +| y_out | 0.102 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07207311 | +| time-step | 77 | +| y_out | 0.019 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.070764765 | +| time-step | 78 | +| y_out | -0.0243 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06846817 | +| time-step | 79 | +| y_out | -0.0623 | +----------------------------------------------------------- +save checkpoint to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/checkpoint 80 +----------------------------------------------------------- +| perf/mse | 0.06790341 | +| time-step | 80 | +| y_out | -0.061 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06685865 | +| time-step | 81 | +| y_out | -0.0404 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.067176715 | +| time-step | 82 | +| y_out | -0.11 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06843789 | +| time-step | 83 | +| y_out | 0.002 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06436247 | +| time-step | 84 | +| y_out | -0.0545 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06473513 | +| time-step | 85 | +| y_out | 0.0634 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06303136 | +| time-step | 86 | +| y_out | 0.02 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06527157 | +| time-step | 87 | +| y_out | -0.111 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.0636281 | +| time-step | 88 | +| y_out | 0.00472 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06286682 | +| time-step | 89 | +| y_out | -0.102 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06342201 | +| time-step | 90 | +| y_out | -0.000317 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.063322075 | +| time-step | 91 | +| y_out | -0.144 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06163671 | +| time-step | 92 | +| y_out | -0.0617 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.062062882 | +| time-step | 93 | +| y_out | 0.0442 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.060555946 | +| time-step | 94 | +| y_out | 0.0733 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05830128 | +| time-step | 95 | +| y_out | -0.0754 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05849896 | +| time-step | 96 | +| y_out | -0.00889 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.056794304 | +| time-step | 97 | +| y_out | 0.12 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05700473 | +| time-step | 98 | +| y_out | 0.00906 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05604604 | +| time-step | 99 | +| y_out | -0.117 | +----------------------------------------------------------- +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: False +k: REMOTE_SETTING, v: {'ftp_server': '', 'username': '', 'password': '', 'remote_data_root': '', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-06-23 00:07:41.475293 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/progress.csv new file mode 100644 index 0000000..dddbbac --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,0.014516984868387386, +1,0.001200768443765387, +2,0.019904088704367363, +3,-0.1244409553314735, +4,-0.03399638390107204, +5,-0.01024489174113958, +6,0.11402520595513661, +7,0.056666229063298254, +8,0.030934069549998618, +9,0.0060024573108029035,0.40850583 +10,0.11131553239214034,0.38869593 +11,0.13854767205035107,0.36860225 +12,-0.050842923516588846,0.34584624 +13,-0.0036519936281964108,0.32611674 +14,-0.04048790867562045,0.31833556 +15,-0.022528077108268756,0.32321334 +16,-0.03455767354912635,0.31403857 +17,-0.06302237254290749,0.3043001 +18,0.0387780127528476,0.29597905 +19,-0.07851088666213582,0.2834611 +20,-0.07188916949440026,0.28650934 +21,0.02751563640383957,0.28245777 +22,-0.07570986218767962,0.27612627 +23,0.05491786692830128,0.28076744 +24,-0.10689715807878097,0.26953632 +25,0.12931308334155892,0.2545963 +26,0.009462839594491824,0.2434386 +27,-0.01248925043218505,0.23191626 +28,0.05905840001627888,0.2256171 +29,0.028551477183890055,0.22047305 +30,0.08312054020028667,0.2102662 +31,0.08519639151444214,0.20084 +32,-0.012949449382667547,0.20053959 +33,-0.03253784079530736,0.18661442 +34,0.022076493816423577,0.17677857 +35,-0.05970928347186572,0.16968016 +36,0.09736550092752867,0.16578284 +37,0.08888240196059166,0.16460271 +38,0.034726394760546245,0.15855713 +39,-0.031182865254203933,0.15664673 +40,0.12007291063467962,0.15285398 +41,-0.08890722541303227,0.15155785 +42,-0.014950900567349198,0.14486167 +43,-0.08018106006017248,0.14467312 +44,0.022502253516368427,0.14124988 +45,0.036433926710650544,0.14351904 +46,-0.09671465781758644,0.14487626 +47,0.01557553906529487,0.13864289 +48,-0.012845898545606943,0.13639566 +49,0.11391608736453585,0.13120037 +50,0.03351451766698775,0.12494274 +51,-0.06390908356100948,0.116961956 +52,-0.10083463058259931,0.11480044 +53,0.1088586676491233,0.10895107 +54,0.002762547012451877,0.10444629 +55,-0.08908451045055697,0.100612834 +56,-0.0722197042353682,0.09450734 +57,0.053952048769356116,0.09515741 +58,-0.004526063417237339,0.09247611 +59,-0.032579032583639686,0.08946009 +60,-0.00737838516521949,0.088738285 +61,-0.04332866020229948,0.08860503 +62,0.03954952882872538,0.08847658 +63,0.00289083078117755,0.08541656 +64,0.08791084769311161,0.085456796 +65,0.13374057186275615,0.081616215 +66,-0.008198211453365738,0.079945266 +67,-0.08230176180409754,0.077882424 +68,-0.020226506668185505,0.07687993 +69,0.02776869127342136,0.0781029 +70,-0.050912635267825065,0.075885914 +71,-0.08605672051339078,0.07484702 +72,0.017561903169267933,0.07238613 +73,-0.03086651236985466,0.071478315 +74,-0.009785893743549372,0.07421163 +75,-0.04373349545668305,0.07448347 +76,0.10245942322976825,0.07566585 +77,0.019007728464554778,0.07207311 +78,-0.02433447861969805,0.070764765 +79,-0.06231032133848568,0.06846817 +80,-0.06098918783026171,0.06790341 +81,-0.04041550582608333,0.06685865 +82,-0.11030148969807471,0.067176715 +83,0.002002548341221686,0.06843789 +84,-0.05449283916632949,0.06436247 +85,0.06341712423967115,0.06473513 +86,0.020010690559770228,0.06303136 +87,-0.11080650290779885,0.06527157 +88,0.004720385869730913,0.0636281 +89,-0.10183416445155069,0.06286682 +90,-0.00031692424861426774,0.06342201 +91,-0.14428851581274033,0.063322075 +92,-0.06169796039147532,0.06163671 +93,0.044212534766641505,0.062062882 +94,0.073343662048057,0.060555946 +95,-0.07537263900766004,0.05830128 +96,-0.00889136532697584,0.05849896 +97,0.12034806687014357,0.056794304 +98,0.00905532563267037,0.05700473 +99,-0.11719936041304696,0.05604604 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/tb/events/events.out.tfevents.1655914058.MBP-C02ZL0TNLVCF-2243.lan b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/tb/events/events.out.tfevents.1655914058.MBP-C02ZL0TNLVCF-2243.lan new file mode 100644 index 0000000..47d8a4a Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/tb/events/events.out.tfevents.1655914058.MBP-C02ZL0TNLVCF-2243.lan differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..844e362 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..38e4973 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/log.txt @@ -0,0 +1,520 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 +------------------------------------------------------------- +| perf/mse | 0.08086397 | +| time-step | 0 | +| y_out | -0.060775932 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.11326595 | +| time-step | 1 | +| y_out | -0.098857775 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1440413 | +| time-step | 2 | +| y_out | -0.12534066 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.16652903 | +| time-step | 3 | +| y_out | 0.10364883 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18477741 | +| time-step | 4 | +| y_out | 0.057952125 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2126642 | +| time-step | 5 | +| y_out | 0.061784014 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23810646 | +| time-step | 6 | +| y_out | -0.00905833 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2703305 | +| time-step | 7 | +| y_out | -0.033508603 | +------------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2924213 | +| time-step | 8 | +| y_out | 0.1422859 | +---------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.3157735 | +| time-step | 9 | +| y_out | 0.0023035463 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.3109005 | +| time-step | 10 | +| y_out | -0.024482833 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.30299672 | +| time-step | 11 | +| y_out | -0.19498286 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.29535595 | +| time-step | 12 | +| y_out | -0.006084269 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.29753268 | +| time-step | 13 | +| y_out | -0.064735174 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.2941874 | +| time-step | 14 | +| y_out | 0.06912308 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.287302 | +| time-step | 15 | +| y_out | -0.08943631 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.28102845 | +| time-step | 16 | +| y_out | 0.0575895 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2689882 | +| time-step | 17 | +| y_out | 0.011021223 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.26968527 | +| time-step | 18 | +| y_out | -0.012696346 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.26560968 | +| time-step | 19 | +| y_out | 0.053878043 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/checkpoint-0.pt +-------------------------------------------------------------- +| perf/mse | 0.26472914 | +| time-step | 20 | +| y_out | -0.0045364797 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2610011 | +| time-step | 21 | +| y_out | -0.04398114 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.25779694 | +| time-step | 22 | +| y_out | -0.03241006 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2536784 | +| time-step | 23 | +| y_out | -0.17368199 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.25576162 | +| time-step | 24 | +| y_out | -0.007032506 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2545869 | +| time-step | 25 | +| y_out | -0.01269643 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2525714 | +| time-step | 26 | +| y_out | -0.025027081 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.25287986 | +| time-step | 27 | +| y_out | -0.06325437 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.24515364 | +| time-step | 28 | +| y_out | 0.002111489 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.24310362 | +| time-step | 29 | +| y_out | 0.06493594 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.23889408 | +| time-step | 30 | +| y_out | -0.0033895932 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.23463514 | +| time-step | 31 | +| y_out | 0.051739953 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23258886 | +| time-step | 32 | +| y_out | 0.053889763 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23103246 | +| time-step | 33 | +| y_out | 0.036222875 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.22865133 | +| time-step | 34 | +| y_out | 0.021899525 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.21666253 | +| time-step | 35 | +| y_out | -0.0028024297 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20886478 | +| time-step | 36 | +| y_out | 0.04389424 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19953814 | +| time-step | 37 | +| y_out | 0.14929605 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1978017 | +| time-step | 38 | +| y_out | -0.09870275 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.19450215 | +| time-step | 39 | +| y_out | 0.09254952 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/checkpoint-20.pt +------------------------------------------------------------ +| perf/mse | 0.19200218 | +| time-step | 40 | +| y_out | -0.08111617 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.1853044 | +| time-step | 41 | +| y_out | 0.10265785 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18119583 | +| time-step | 42 | +| y_out | 0.011370021 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17199756 | +| time-step | 43 | +| y_out | -0.15405786 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.16842757 | +| time-step | 44 | +| y_out | -0.0053060576 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.16981554 | +| time-step | 45 | +| y_out | -0.055502255 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.17296484 | +| time-step | 46 | +| y_out | -0.0039895475 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.17410694 | +| time-step | 47 | +| y_out | 0.045056652 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17302658 | +| time-step | 48 | +| y_out | 0.044080053 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.16895546 | +| time-step | 49 | +| y_out | 0.07082256 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.16726239 | +| time-step | 50 | +| y_out | -0.012292229 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.16608213 | +| time-step | 51 | +| y_out | -0.020920776 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.16149223 | +| time-step | 52 | +| y_out | 0.042997006 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.1612885 | +| time-step | 53 | +| y_out | 0.0936604 | +---------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1621683 | +| time-step | 54 | +| y_out | -0.025829734 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.1656476 | +| time-step | 55 | +| y_out | -0.0070162676 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16365585 | +| time-step | 56 | +| y_out | 0.06207158 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.16027749 | +| time-step | 57 | +| y_out | -0.033068907 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.15534171 | +| time-step | 58 | +| y_out | -0.017985152 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1554647 | +| time-step | 59 | +| y_out | -0.028211128 | +------------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/checkpoint-40.pt +------------------------------------------------------------ +| perf/mse | 0.15105654 | +| time-step | 60 | +| y_out | 0.048252396 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.14680314 | +| time-step | 61 | +| y_out | 0.05389127 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14446786 | +| time-step | 62 | +| y_out | 0.083108835 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.13845295 | +| time-step | 63 | +| y_out | 0.021797137 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.13519627 | +| time-step | 64 | +| y_out | -0.07907666 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.12817772 | +| time-step | 65 | +| y_out | 0.07884962 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12238495 | +| time-step | 66 | +| y_out | -0.08350316 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.12178098 | +| time-step | 67 | +| y_out | 0.05329544 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.117303595 | +| time-step | 68 | +| y_out | 0.07631386 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.11532998 | +| time-step | 69 | +| y_out | -0.035889294 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11208247 | +| time-step | 70 | +| y_out | 0.04623005 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.11237923 | +| time-step | 71 | +| y_out | 0.015025133 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11122583 | +| time-step | 72 | +| y_out | -0.08200727 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.10800805 | +| time-step | 73 | +| y_out | 0.049507555 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.103816785 | +| time-step | 74 | +| y_out | 0.08936402 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.10298413 | +| time-step | 75 | +| y_out | -0.063348114 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.10041833 | +| time-step | 76 | +| y_out | -0.035932854 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.097644985 | +| time-step | 77 | +| y_out | 0.009807184 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0961328 | +| time-step | 78 | +| y_out | 0.022201583 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.091510914 | +| time-step | 79 | +| y_out | 0.015230041 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/checkpoint-60.pt +------------------------------------------------------------ +| perf/mse | 0.09009916 | +| time-step | 80 | +| y_out | 0.019628862 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.087541334 | +| time-step | 81 | +| y_out | -0.07286345 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.085722275 | +| time-step | 82 | +| y_out | 0.061438806 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08762278 | +| time-step | 83 | +| y_out | 0.03654339 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.085277066 | +| time-step | 84 | +| y_out | 0.094111115 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.08328184 | +| time-step | 85 | +| y_out | -0.04229196 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.08116603 | +| time-step | 86 | +| y_out | -0.019397281 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.07752233 | +| time-step | 87 | +| y_out | 0.037506748 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07598601 | +| time-step | 88 | +| y_out | 0.077352926 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07466737 | +| time-step | 89 | +| y_out | 0.006841588 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07378708 | +| time-step | 90 | +| y_out | 0.047354504 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07126787 | +| time-step | 91 | +| y_out | 0.026697468 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.06749016 | +| time-step | 92 | +| y_out | -0.066405706 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.065078974 | +| time-step | 93 | +| y_out | -0.04045777 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.06379058 | +| time-step | 94 | +| y_out | 0.072029635 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.06264709 | +| time-step | 95 | +| y_out | -0.0064311735 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.062091827 | +| time-step | 96 | +| y_out | -0.036961287 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.05994628 | +| time-step | 97 | +| y_out | 0.10637689 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.05957383 | +| time-step | 98 | +| y_out | 0.025962997 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.057080995 | +| time-step | 99 | +| y_out | 0.10434675 | +------------------------------------------------------------ +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: True +k: REMOTE_SETTING, v: {'ftp_server': '127.0.0.1', 'username': 'hadoop-peisongpa', 'password': 'wangli78', 'remote_data_root': '/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root', 'file_transfer_protocol': 'ftp'} +gen log files for record date : 2022-06-23 00:07:43.969899 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..c94f7e0 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +perf/mse,time-step,y_out +0.08086397,0,-0.060775932 +0.11326595,1,-0.098857775 +0.1440413,2,-0.12534066 +0.16652903,3,0.10364883 +0.18477741,4,0.057952125 +0.2126642,5,0.061784014 +0.23810646,6,-0.00905833 +0.2703305,7,-0.033508603 +0.2924213,8,0.1422859 +0.3157735,9,0.0023035463 +0.3109005,10,-0.024482833 +0.30299672,11,-0.19498286 +0.29535595,12,-0.006084269 +0.29753268,13,-0.064735174 +0.2941874,14,0.06912308 +0.287302,15,-0.08943631 +0.28102845,16,0.0575895 +0.2689882,17,0.011021223 +0.26968527,18,-0.012696346 +0.26560968,19,0.053878043 +0.26472914,20,-0.0045364797 +0.2610011,21,-0.04398114 +0.25779694,22,-0.03241006 +0.2536784,23,-0.17368199 +0.25576162,24,-0.007032506 +0.2545869,25,-0.01269643 +0.2525714,26,-0.025027081 +0.25287986,27,-0.06325437 +0.24515364,28,0.002111489 +0.24310362,29,0.06493594 +0.23889408,30,-0.0033895932 +0.23463514,31,0.051739953 +0.23258886,32,0.053889763 +0.23103246,33,0.036222875 +0.22865133,34,0.021899525 +0.21666253,35,-0.0028024297 +0.20886478,36,0.04389424 +0.19953814,37,0.14929605 +0.1978017,38,-0.09870275 +0.19450215,39,0.09254952 +0.19200218,40,-0.08111617 +0.1853044,41,0.10265785 +0.18119583,42,0.011370021 +0.17199756,43,-0.15405786 +0.16842757,44,-0.0053060576 +0.16981554,45,-0.055502255 +0.17296484,46,-0.0039895475 +0.17410694,47,0.045056652 +0.17302658,48,0.044080053 +0.16895546,49,0.07082256 +0.16726239,50,-0.012292229 +0.16608213,51,-0.020920776 +0.16149223,52,0.042997006 +0.1612885,53,0.0936604 +0.1621683,54,-0.025829734 +0.1656476,55,-0.0070162676 +0.16365585,56,0.06207158 +0.16027749,57,-0.033068907 +0.15534171,58,-0.017985152 +0.1554647,59,-0.028211128 +0.15105654,60,0.048252396 +0.14680314,61,0.05389127 +0.14446786,62,0.083108835 +0.13845295,63,0.021797137 +0.13519627,64,-0.07907666 +0.12817772,65,0.07884962 +0.12238495,66,-0.08350316 +0.12178098,67,0.05329544 +0.117303595,68,0.07631386 +0.11532998,69,-0.035889294 +0.11208247,70,0.04623005 +0.11237923,71,0.015025133 +0.11122583,72,-0.08200727 +0.10800805,73,0.049507555 +0.103816785,74,0.08936402 +0.10298413,75,-0.063348114 +0.10041833,76,-0.035932854 +0.097644985,77,0.009807184 +0.0961328,78,0.022201583 +0.091510914,79,0.015230041 +0.09009916,80,0.019628862 +0.087541334,81,-0.07286345 +0.085722275,82,0.061438806 +0.08762278,83,0.03654339 +0.085277066,84,0.094111115 +0.08328184,85,-0.04229196 +0.08116603,86,-0.019397281 +0.07752233,87,0.037506748 +0.07598601,88,0.077352926 +0.07466737,89,0.006841588 +0.07378708,90,0.047354504 +0.07126787,91,0.026697468 +0.06749016,92,-0.066405706 +0.065078974,93,-0.04045777 +0.06379058,94,0.072029635 +0.06264709,95,-0.0064311735 +0.062091827,96,-0.036961287 +0.05994628,97,0.10637689 +0.05957383,98,0.025962997 +0.057080995,99,0.10434675 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/tb/events/events.out.tfevents.1655914061.MBP-C02ZL0TNLVCF-2243.lan b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/tb/events/events.out.tfevents.1655914061.MBP-C02ZL0TNLVCF-2243.lan new file mode 100644 index 0000000..f3ead10 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/tb/events/events.out.tfevents.1655914061.MBP-C02ZL0TNLVCF-2243.lan differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..844e362 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..5264165 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/log.txt @@ -0,0 +1,12 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 +-------------------------------------------------- +| i | 0 | +| time-step | 0 | +-------------------------------------------------- +[WARN] 0 : sync: start diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..16ef5df --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/progress.csv @@ -0,0 +1,2 @@ +i,time-step +0,0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1655914063.MBP-C02ZL0TNLVCF-2243.lan b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1655914063.MBP-C02ZL0TNLVCF-2243.lan new file mode 100644 index 0000000..38914c3 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1655914063.MBP-C02ZL0TNLVCF-2243.lan differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..1f18179 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/06/23/00-07-43-969899_192.168.0.192_&input_size=16&input_size=16&input_size=16/warn.txt @@ -0,0 +1 @@ +[WARN] 0 : sync: start diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-20-55-585209_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-20-55-585209_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..a5d91bd --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,502 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +------------------------------------------------------------ +| time-step | 0 | +| y_out | 0.030518502 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 1 | +| y_out | -0.033393197 | +------------------------------------------------------------- +------------------------------------------------------------- +| time-step | 2 | +| y_out | -0.007742934 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 3 | +| y_out | -0.01596877 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 4 | +| y_out | 0.030884877 | +------------------------------------------------------------ +-------------------------------------------------------------- +| time-step | 5 | +| y_out | -0.0045458004 | +-------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 6 | +| y_out | 0.016914047 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 7 | +| y_out | 0.058739226 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 8 | +| y_out | -0.041022867 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.29336125 | +| time-step | 9 | +| y_out | 0.060652874 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.29164058 | +| time-step | 10 | +| y_out | 0.1274339 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.29000726 | +| time-step | 11 | +| y_out | 0.08134254 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.29072076 | +| time-step | 12 | +| y_out | 0.013485372 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2932368 | +| time-step | 13 | +| y_out | 0.028466063 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.29551354 | +| time-step | 14 | +| y_out | 0.13443753 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.29252884 | +| time-step | 15 | +| y_out | -0.11275613 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.28717178 | +| time-step | 16 | +| y_out | 0.05639878 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.28659546 | +| time-step | 17 | +| y_out | -0.099924065 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.2871242 | +| time-step | 18 | +| y_out | 0.03242412 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.28402168 | +| time-step | 19 | +| y_out | -0.03110949 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +----------------------------------------------------------- +| perf/mse | 0.27066618 | +| time-step | 20 | +| y_out | 0.05875358 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.2627713 | +| time-step | 21 | +| y_out | -0.033607032 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.2584219 | +| time-step | 22 | +| y_out | -0.015130712 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25236186 | +| time-step | 23 | +| y_out | 0.06476693 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.24022844 | +| time-step | 24 | +| y_out | -0.0767336 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.23550415 | +| time-step | 25 | +| y_out | -0.020046847 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.23107167 | +| time-step | 26 | +| y_out | -0.0467745 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22907063 | +| time-step | 27 | +| y_out | -0.0748537 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.2248693 | +| time-step | 28 | +| y_out | -0.046716034 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.22197667 | +| time-step | 29 | +| y_out | -0.011378339 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21780598 | +| time-step | 30 | +| y_out | 0.01005647 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.21327953 | +| time-step | 31 | +| y_out | -0.04633833 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2074606 | +| time-step | 32 | +| y_out | -0.094527245 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.19884282 | +| time-step | 33 | +| y_out | -0.009742521 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.19805658 | +| time-step | 34 | +| y_out | -0.011344131 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19739105 | +| time-step | 35 | +| y_out | 0.112566374 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19731256 | +| time-step | 36 | +| y_out | 0.042248897 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.19531193 | +| time-step | 37 | +| y_out | 0.06522882 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19959511 | +| time-step | 38 | +| y_out | 0.07620217 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19854103 | +| time-step | 39 | +| y_out | 0.122585274 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +------------------------------------------------------------- +| perf/mse | 0.19372174 | +| time-step | 40 | +| y_out | -0.002960991 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19408385 | +| time-step | 41 | +| y_out | -0.07097729 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19348522 | +| time-step | 42 | +| y_out | -0.06189739 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.19414565 | +| time-step | 43 | +| y_out | 0.05028359 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.19138949 | +| time-step | 44 | +| y_out | -0.013175547 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18713829 | +| time-step | 45 | +| y_out | 0.005442504 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.18565945 | +| time-step | 46 | +| y_out | 0.011106882 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.1825132 | +| time-step | 47 | +| y_out | 0.07664857 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.17298117 | +| time-step | 48 | +| y_out | -0.08635352 | +------------------------------------------------------------ +--------------------------------------------------------------- +| perf/mse | 0.16509537 | +| time-step | 49 | +| y_out | -0.00039370358 | +--------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.16305159 | +| time-step | 50 | +| y_out | -0.0042265356 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16104548 | +| time-step | 51 | +| y_out | 0.0999485 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.15964627 | +| time-step | 52 | +| y_out | -0.085398875 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15983029 | +| time-step | 53 | +| y_out | 0.061859988 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.1572111 | +| time-step | 54 | +| y_out | 0.08364103 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15895776 | +| time-step | 55 | +| y_out | 0.073263586 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.15445712 | +| time-step | 56 | +| y_out | 0.08226094 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.14806417 | +| time-step | 57 | +| y_out | -0.026149854 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.14399093 | +| time-step | 58 | +| y_out | -0.021103658 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14528339 | +| time-step | 59 | +| y_out | 0.114434406 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +----------------------------------------------------------- +| perf/mse | 0.14390735 | +| time-step | 60 | +| y_out | 0.05787298 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1384615 | +| time-step | 61 | +| y_out | -0.048766248 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.13404873 | +| time-step | 62 | +| y_out | -0.025257852 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12611364 | +| time-step | 63 | +| y_out | 0.025775127 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.123898864 | +| time-step | 64 | +| y_out | -0.011621762 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.11848967 | +| time-step | 65 | +| y_out | 0.102711074 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11929195 | +| time-step | 66 | +| y_out | 0.0966217 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1183205 | +| time-step | 67 | +| y_out | -0.011137182 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.11833509 | +| time-step | 68 | +| y_out | -0.023848323 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.11444267 | +| time-step | 69 | +| y_out | 0.029762471 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.111152634 | +| time-step | 70 | +| y_out | 0.005436614 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11039521 | +| time-step | 71 | +| y_out | 0.109175235 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.10853287 | +| time-step | 72 | +| y_out | 0.053973574 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.10635086 | +| time-step | 73 | +| y_out | -0.027243197 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.104277655 | +| time-step | 74 | +| y_out | 0.08149922 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.099329695 | +| time-step | 75 | +| y_out | -0.05871947 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09659836 | +| time-step | 76 | +| y_out | 0.14336532 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0948668 | +| time-step | 77 | +| y_out | -0.064054884 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.09229497 | +| time-step | 78 | +| y_out | -0.13617772 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.09069107 | +| time-step | 79 | +| y_out | -0.08961238 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +------------------------------------------------------------- +| perf/mse | 0.08794165 | +| time-step | 80 | +| y_out | -0.106694825 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.08590981 | +| time-step | 81 | +| y_out | -0.011173539 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.08408039 | +| time-step | 82 | +| y_out | 0.011744916 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.083149396 | +| time-step | 83 | +| y_out | 0.05604577 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.08320341 | +| time-step | 84 | +| y_out | 0.031677395 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.083048105 | +| time-step | 85 | +| y_out | 0.024229718 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.07676857 | +| time-step | 86 | +| y_out | -0.107886605 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.07520245 | +| time-step | 87 | +| y_out | -0.0012855167 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.07464133 | +| time-step | 88 | +| y_out | -0.05295017 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.07394824 | +| time-step | 89 | +| y_out | -0.032654583 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.073337205 | +| time-step | 90 | +| y_out | -0.07996622 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07082166 | +| time-step | 91 | +| y_out | 0.016168121 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.06771897 | +| time-step | 92 | +| y_out | -0.0076470375 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06530517 | +| time-step | 93 | +| y_out | 0.05407875 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.061540745 | +| time-step | 94 | +| y_out | -0.025275212 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.059738267 | +| time-step | 95 | +| y_out | 0.01421193 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.058516156 | +| time-step | 96 | +| y_out | 0.0045911297 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.05771967 | +| time-step | 97 | +| y_out | -0.022478176 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.056225486 | +| time-step | 98 | +| y_out | 0.060206324 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.053921174 | +| time-step | 99 | +| y_out | -0.030874588 | +------------------------------------------------------------- diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..0577574 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,0.030518502, +1,-0.033393197, +2,-0.007742934, +3,-0.01596877, +4,0.030884877, +5,-0.0045458004, +6,0.016914047, +7,0.058739226, +8,-0.041022867, +9,0.060652874,0.29336125 +10,0.1274339,0.29164058 +11,0.08134254,0.29000726 +12,0.013485372,0.29072076 +13,0.028466063,0.2932368 +14,0.13443753,0.29551354 +15,-0.11275613,0.29252884 +16,0.05639878,0.28717178 +17,-0.099924065,0.28659546 +18,0.03242412,0.2871242 +19,-0.03110949,0.28402168 +20,0.05875358,0.27066618 +21,-0.033607032,0.2627713 +22,-0.015130712,0.2584219 +23,0.06476693,0.25236186 +24,-0.0767336,0.24022844 +25,-0.020046847,0.23550415 +26,-0.0467745,0.23107167 +27,-0.0748537,0.22907063 +28,-0.046716034,0.2248693 +29,-0.011378339,0.22197667 +30,0.01005647,0.21780598 +31,-0.04633833,0.21327953 +32,-0.094527245,0.2074606 +33,-0.009742521,0.19884282 +34,-0.011344131,0.19805658 +35,0.112566374,0.19739105 +36,0.042248897,0.19731256 +37,0.06522882,0.19531193 +38,0.07620217,0.19959511 +39,0.122585274,0.19854103 +40,-0.002960991,0.19372174 +41,-0.07097729,0.19408385 +42,-0.06189739,0.19348522 +43,0.05028359,0.19414565 +44,-0.013175547,0.19138949 +45,0.005442504,0.18713829 +46,0.011106882,0.18565945 +47,0.07664857,0.1825132 +48,-0.08635352,0.17298117 +49,-0.00039370358,0.16509537 +50,-0.0042265356,0.16305159 +51,0.0999485,0.16104548 +52,-0.085398875,0.15964627 +53,0.061859988,0.15983029 +54,0.08364103,0.1572111 +55,0.073263586,0.15895776 +56,0.08226094,0.15445712 +57,-0.026149854,0.14806417 +58,-0.021103658,0.14399093 +59,0.114434406,0.14528339 +60,0.05787298,0.14390735 +61,-0.048766248,0.1384615 +62,-0.025257852,0.13404873 +63,0.025775127,0.12611364 +64,-0.011621762,0.123898864 +65,0.102711074,0.11848967 +66,0.0966217,0.11929195 +67,-0.011137182,0.1183205 +68,-0.023848323,0.11833509 +69,0.029762471,0.11444267 +70,0.005436614,0.111152634 +71,0.109175235,0.11039521 +72,0.053973574,0.10853287 +73,-0.027243197,0.10635086 +74,0.08149922,0.104277655 +75,-0.05871947,0.099329695 +76,0.14336532,0.09659836 +77,-0.064054884,0.0948668 +78,-0.13617772,0.09229497 +79,-0.08961238,0.09069107 +80,-0.106694825,0.08794165 +81,-0.011173539,0.08590981 +82,0.011744916,0.08408039 +83,0.05604577,0.083149396 +84,0.031677395,0.08320341 +85,0.024229718,0.083048105 +86,-0.107886605,0.07676857 +87,-0.0012855167,0.07520245 +88,-0.05295017,0.07464133 +89,-0.032654583,0.07394824 +90,-0.07996622,0.073337205 +91,0.016168121,0.07082166 +92,-0.0076470375,0.06771897 +93,0.05407875,0.06530517 +94,-0.025275212,0.061540745 +95,0.01421193,0.059738267 +96,0.0045911297,0.058516156 +97,-0.022478176,0.05771967 +98,0.060206324,0.056225486 +99,-0.030874588,0.053921174 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658902863.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658902863.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..b48cfaa Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658902863.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-21-206798_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-21-206798_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..85327d8 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,502 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +---------------------------------------------------------- +| time-step | 0 | +| y_out | -0.053382 | +---------------------------------------------------------- +------------------------------------------------------------ +| time-step | 1 | +| y_out | 0.045650437 | +------------------------------------------------------------ +----------------------------------------------------------- +| time-step | 2 | +| y_out | 0.05339278 | +----------------------------------------------------------- +----------------------------------------------------------- +| time-step | 3 | +| y_out | -0.0775353 | +----------------------------------------------------------- +------------------------------------------------------------- +| time-step | 4 | +| y_out | -0.028167328 | +------------------------------------------------------------- +------------------------------------------------------------- +| time-step | 5 | +| y_out | -0.005900942 | +------------------------------------------------------------- +----------------------------------------------------------- +| time-step | 6 | +| y_out | 0.04798329 | +----------------------------------------------------------- +------------------------------------------------------------- +| time-step | 7 | +| y_out | -0.003344886 | +------------------------------------------------------------- +------------------------------------------------------------- +| time-step | 8 | +| y_out | -0.047462747 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.30027503 | +| time-step | 9 | +| y_out | 0.015829083 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2934212 | +| time-step | 10 | +| y_out | 0.059881542 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2987965 | +| time-step | 11 | +| y_out | -0.009272702 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.30101544 | +| time-step | 12 | +| y_out | 0.049603462 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.29380262 | +| time-step | 13 | +| y_out | 0.032425106 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.28500587 | +| time-step | 14 | +| y_out | -0.012344694 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.28136602 | +| time-step | 15 | +| y_out | 0.020169392 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.27763042 | +| time-step | 16 | +| y_out | -0.08705211 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.27304006 | +| time-step | 17 | +| y_out | -0.05159188 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.26849842 | +| time-step | 18 | +| y_out | -0.037068456 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.27657306 | +| time-step | 19 | +| y_out | -0.09358351 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +------------------------------------------------------------- +| perf/mse | 0.2796866 | +| time-step | 20 | +| y_out | -0.019539729 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.26990002 | +| time-step | 21 | +| y_out | -0.021972729 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2620574 | +| time-step | 22 | +| y_out | 0.013085313 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.25789478 | +| time-step | 23 | +| y_out | -0.05457952 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.25782084 | +| time-step | 24 | +| y_out | 0.010717595 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.25618452 | +| time-step | 25 | +| y_out | -0.08636694 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.2565369 | +| time-step | 26 | +| y_out | 0.08772636 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25761914 | +| time-step | 27 | +| y_out | 0.01202143 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.2564744 | +| time-step | 28 | +| y_out | -0.0054021887 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25179884 | +| time-step | 29 | +| y_out | 0.04661929 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24300678 | +| time-step | 30 | +| y_out | 0.056212734 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.24799411 | +| time-step | 31 | +| y_out | -0.070440024 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24533696 | +| time-step | 32 | +| y_out | -0.04130919 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.24483752 | +| time-step | 33 | +| y_out | -0.037757628 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.24374942 | +| time-step | 34 | +| y_out | -0.0726663 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.23920837 | +| time-step | 35 | +| y_out | 0.043340236 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23480263 | +| time-step | 36 | +| y_out | 0.010692209 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.22914653 | +| time-step | 37 | +| y_out | 0.067840025 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.22515745 | +| time-step | 38 | +| y_out | 0.015340995 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.22165266 | +| time-step | 39 | +| y_out | -0.009656817 | +------------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +------------------------------------------------------------ +| perf/mse | 0.22295702 | +| time-step | 40 | +| y_out | 0.081051625 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2144696 | +| time-step | 41 | +| y_out | -0.044671327 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.21309254 | +| time-step | 42 | +| y_out | 0.027942155 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.20530844 | +| time-step | 43 | +| y_out | 0.046437092 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.20235494 | +| time-step | 44 | +| y_out | -0.067849025 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.20303479 | +| time-step | 45 | +| y_out | -0.026950927 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.19950695 | +| time-step | 46 | +| y_out | -0.026469968 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19953376 | +| time-step | 47 | +| y_out | 0.015367106 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.19243315 | +| time-step | 48 | +| y_out | -0.084312245 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.1869043 | +| time-step | 49 | +| y_out | 0.02860079 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.18260653 | +| time-step | 50 | +| y_out | -0.027572392 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18116048 | +| time-step | 51 | +| y_out | -0.03007172 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17711356 | +| time-step | 52 | +| y_out | 0.014593486 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17881139 | +| time-step | 53 | +| y_out | 0.014698405 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17330831 | +| time-step | 54 | +| y_out | 0.049259778 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.17041369 | +| time-step | 55 | +| y_out | -0.038264092 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.16834478 | +| time-step | 56 | +| y_out | -0.010332934 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.16850647 | +| time-step | 57 | +| y_out | -0.07512813 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16840746 | +| time-step | 58 | +| y_out | 0.060619228 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16718045 | +| time-step | 59 | +| y_out | 0.057964023 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +------------------------------------------------------------ +| perf/mse | 0.1628822 | +| time-step | 60 | +| y_out | 0.081102565 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.1623713 | +| time-step | 61 | +| y_out | 0.058298975 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16278872 | +| time-step | 62 | +| y_out | -0.07974974 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16038886 | +| time-step | 63 | +| y_out | 0.059639234 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15992345 | +| time-step | 64 | +| y_out | 0.023764707 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.15720807 | +| time-step | 65 | +| y_out | -0.004144271 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15393522 | +| time-step | 66 | +| y_out | -0.12932287 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.14937198 | +| time-step | 67 | +| y_out | -0.047974072 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14536922 | +| time-step | 68 | +| y_out | 0.075095564 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.14232582 | +| time-step | 69 | +| y_out | 0.0908618 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.14242804 | +| time-step | 70 | +| y_out | 0.0032887235 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.13628778 | +| time-step | 71 | +| y_out | -0.058934826 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13088018 | +| time-step | 72 | +| y_out | 0.011505894 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.12944071 | +| time-step | 73 | +| y_out | 0.034937255 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.1223379 | +| time-step | 74 | +| y_out | 0.025602994 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.12083119 | +| time-step | 75 | +| y_out | 0.019581316 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.12093387 | +| time-step | 76 | +| y_out | -0.01329973 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11675312 | +| time-step | 77 | +| y_out | 0.18749917 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.114287 | +| time-step | 78 | +| y_out | 0.048819073 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11663623 | +| time-step | 79 | +| y_out | 0.06098143 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +------------------------------------------------------------- +| perf/mse | 0.1124592 | +| time-step | 80 | +| y_out | -0.037882295 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11000128 | +| time-step | 81 | +| y_out | 0.10433042 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1113008 | +| time-step | 82 | +| y_out | -0.09154537 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.109730735 | +| time-step | 83 | +| y_out | 0.13421288 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11305592 | +| time-step | 84 | +| y_out | -0.04876012 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.10756342 | +| time-step | 85 | +| y_out | 0.004025042 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.102371275 | +| time-step | 86 | +| y_out | -0.06008514 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.10352768 | +| time-step | 87 | +| y_out | -0.030559605 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.10222266 | +| time-step | 88 | +| y_out | 0.042064793 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0963234 | +| time-step | 89 | +| y_out | 0.032981325 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0953534 | +| time-step | 90 | +| y_out | -0.09218843 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.095036656 | +| time-step | 91 | +| y_out | 0.1213803 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09131355 | +| time-step | 92 | +| y_out | 0.04805747 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.08774273 | +| time-step | 93 | +| y_out | 0.028270936 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.08384989 | +| time-step | 94 | +| y_out | -0.078458674 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.08542852 | +| time-step | 95 | +| y_out | -0.031158429 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.08604957 | +| time-step | 96 | +| y_out | -0.054345027 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.079967625 | +| time-step | 97 | +| y_out | -0.020558354 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.079209276 | +| time-step | 98 | +| y_out | 0.044112902 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0761402 | +| time-step | 99 | +| y_out | -0.005410416 | +------------------------------------------------------------- diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..b977c8a --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,-0.053382, +1,0.045650437, +2,0.05339278, +3,-0.0775353, +4,-0.028167328, +5,-0.005900942, +6,0.04798329, +7,-0.003344886, +8,-0.047462747, +9,0.015829083,0.30027503 +10,0.059881542,0.2934212 +11,-0.009272702,0.2987965 +12,0.049603462,0.30101544 +13,0.032425106,0.29380262 +14,-0.012344694,0.28500587 +15,0.020169392,0.28136602 +16,-0.08705211,0.27763042 +17,-0.05159188,0.27304006 +18,-0.037068456,0.26849842 +19,-0.09358351,0.27657306 +20,-0.019539729,0.2796866 +21,-0.021972729,0.26990002 +22,0.013085313,0.2620574 +23,-0.05457952,0.25789478 +24,0.010717595,0.25782084 +25,-0.08636694,0.25618452 +26,0.08772636,0.2565369 +27,0.01202143,0.25761914 +28,-0.0054021887,0.2564744 +29,0.04661929,0.25179884 +30,0.056212734,0.24300678 +31,-0.070440024,0.24799411 +32,-0.04130919,0.24533696 +33,-0.037757628,0.24483752 +34,-0.0726663,0.24374942 +35,0.043340236,0.23920837 +36,0.010692209,0.23480263 +37,0.067840025,0.22914653 +38,0.015340995,0.22515745 +39,-0.009656817,0.22165266 +40,0.081051625,0.22295702 +41,-0.044671327,0.2144696 +42,0.027942155,0.21309254 +43,0.046437092,0.20530844 +44,-0.067849025,0.20235494 +45,-0.026950927,0.20303479 +46,-0.026469968,0.19950695 +47,0.015367106,0.19953376 +48,-0.084312245,0.19243315 +49,0.02860079,0.1869043 +50,-0.027572392,0.18260653 +51,-0.03007172,0.18116048 +52,0.014593486,0.17711356 +53,0.014698405,0.17881139 +54,0.049259778,0.17330831 +55,-0.038264092,0.17041369 +56,-0.010332934,0.16834478 +57,-0.07512813,0.16850647 +58,0.060619228,0.16840746 +59,0.057964023,0.16718045 +60,0.081102565,0.1628822 +61,0.058298975,0.1623713 +62,-0.07974974,0.16278872 +63,0.059639234,0.16038886 +64,0.023764707,0.15992345 +65,-0.004144271,0.15720807 +66,-0.12932287,0.15393522 +67,-0.047974072,0.14937198 +68,0.075095564,0.14536922 +69,0.0908618,0.14232582 +70,0.0032887235,0.14242804 +71,-0.058934826,0.13628778 +72,0.011505894,0.13088018 +73,0.034937255,0.12944071 +74,0.025602994,0.1223379 +75,0.019581316,0.12083119 +76,-0.01329973,0.12093387 +77,0.18749917,0.11675312 +78,0.048819073,0.114287 +79,0.06098143,0.11663623 +80,-0.037882295,0.1124592 +81,0.10433042,0.11000128 +82,-0.09154537,0.1113008 +83,0.13421288,0.109730735 +84,-0.04876012,0.11305592 +85,0.004025042,0.10756342 +86,-0.06008514,0.102371275 +87,-0.030559605,0.10352768 +88,0.042064793,0.10222266 +89,0.032981325,0.0963234 +90,-0.09218843,0.0953534 +91,0.1213803,0.095036656 +92,0.04805747,0.09131355 +93,0.028270936,0.08774273 +94,-0.078458674,0.08384989 +95,-0.031158429,0.08542852 +96,-0.054345027,0.08604957 +97,-0.020558354,0.079967625 +98,0.044112902,0.079209276 +99,-0.005410416,0.0761402 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903126.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903126.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..ed0b5e3 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903126.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-37-503423_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-37-503423_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..f2134c4 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,10 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/ +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: False +k: REMOTE_SETTING, v: {'ftp_server': '', 'username': '', 'password': '', 'remote_log_root': '', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 14:27:50.996776 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-45-544539_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..9c188be --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,502 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +------------------------------------------------------------ +| time-step | 0 | +| y_out | 0.057954267 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 1 | +| y_out | -0.16365862 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 2 | +| y_out | -0.019681245 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 3 | +| y_out | 0.022561982 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 4 | +| y_out | -0.13416053 | +------------------------------------------------------------ +---------------------------------------------------------- +| time-step | 5 | +| y_out | 0.1339738 | +---------------------------------------------------------- +------------------------------------------------------------- +| time-step | 6 | +| y_out | -0.018874194 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 7 | +| y_out | 0.031827815 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 8 | +| y_out | 0.061661948 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.33197737 | +| time-step | 9 | +| y_out | 0.21720701 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.32195234 | +| time-step | 10 | +| y_out | 0.099746495 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.31700128 | +| time-step | 11 | +| y_out | 0.007828675 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.3201444 | +| time-step | 12 | +| y_out | 0.0036695674 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.3129303 | +| time-step | 13 | +| y_out | 0.021058306 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.3050651 | +| time-step | 14 | +| y_out | 0.06313879 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.30064285 | +| time-step | 15 | +| y_out | 0.039653137 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2960209 | +| time-step | 16 | +| y_out | 0.022164203 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.29025063 | +| time-step | 17 | +| y_out | -0.0839839 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.27905178 | +| time-step | 18 | +| y_out | 0.07471995 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.2759032 | +| time-step | 19 | +| y_out | -0.025503304 | +------------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +------------------------------------------------------------ +| perf/mse | 0.26989073 | +| time-step | 20 | +| y_out | 0.019835057 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.26826188 | +| time-step | 21 | +| y_out | -0.062677786 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.2584748 | +| time-step | 22 | +| y_out | -0.021318281 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2537949 | +| time-step | 23 | +| y_out | 0.024209933 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.25071117 | +| time-step | 24 | +| y_out | 0.13914189 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.24852414 | +| time-step | 25 | +| y_out | -0.020597862 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.23885508 | +| time-step | 26 | +| y_out | -0.014543334 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.23584354 | +| time-step | 27 | +| y_out | -0.031824157 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2396863 | +| time-step | 28 | +| y_out | -0.04671384 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.2309604 | +| time-step | 29 | +| y_out | 0.05610097 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.23297271 | +| time-step | 30 | +| y_out | 0.002615407 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23129126 | +| time-step | 31 | +| y_out | 0.070476025 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.22723958 | +| time-step | 32 | +| y_out | 0.040641565 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.22739749 | +| time-step | 33 | +| y_out | 0.059984356 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.22543204 | +| time-step | 34 | +| y_out | -0.0091008935 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.22175045 | +| time-step | 35 | +| y_out | 0.062491737 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.21429336 | +| time-step | 36 | +| y_out | -0.024435958 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.21352763 | +| time-step | 37 | +| y_out | 0.060051534 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.21116233 | +| time-step | 38 | +| y_out | -0.04342635 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.208745 | +| time-step | 39 | +| y_out | 0.0084026465 | +------------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +------------------------------------------------------------- +| perf/mse | 0.20916812 | +| time-step | 40 | +| y_out | -0.040181134 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.20767811 | +| time-step | 41 | +| y_out | -0.024507655 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.20549591 | +| time-step | 42 | +| y_out | -0.018106269 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20485921 | +| time-step | 43 | +| y_out | 0.12870893 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20350036 | +| time-step | 44 | +| y_out | -0.0233492 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.201682 | +| time-step | 45 | +| y_out | 0.08209593 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.20042662 | +| time-step | 46 | +| y_out | -0.04075575 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19709313 | +| time-step | 47 | +| y_out | -0.08544053 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19168925 | +| time-step | 48 | +| y_out | -0.11520279 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19063959 | +| time-step | 49 | +| y_out | 0.038674615 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17864 | +| time-step | 50 | +| y_out | -0.08781865 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.1745716 | +| time-step | 51 | +| y_out | 0.077561215 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17233422 | +| time-step | 52 | +| y_out | -0.06579357 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16532573 | +| time-step | 53 | +| y_out | -0.08304539 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15915759 | +| time-step | 54 | +| y_out | 0.055884387 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.16082762 | +| time-step | 55 | +| y_out | 0.09783222 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1613141 | +| time-step | 56 | +| y_out | 0.070208915 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.15792848 | +| time-step | 57 | +| y_out | 0.04157433 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.15796022 | +| time-step | 58 | +| y_out | 0.03665974 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15588588 | +| time-step | 59 | +| y_out | 0.060706176 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +------------------------------------------------------------- +| perf/mse | 0.15432505 | +| time-step | 60 | +| y_out | -0.022992976 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15025382 | +| time-step | 61 | +| y_out | -0.08773433 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.147721 | +| time-step | 62 | +| y_out | 0.1040368 | +---------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.14614102 | +| time-step | 63 | +| y_out | 0.0151649155 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.14765063 | +| time-step | 64 | +| y_out | -0.043442275 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13919443 | +| time-step | 65 | +| y_out | 0.0847801 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.1354896 | +| time-step | 66 | +| y_out | 0.10740591 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13247067 | +| time-step | 67 | +| y_out | -0.10419522 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.12644862 | +| time-step | 68 | +| y_out | 0.0026753806 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.1225603 | +| time-step | 69 | +| y_out | 0.00036436133 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12176937 | +| time-step | 70 | +| y_out | 0.056387626 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11758195 | +| time-step | 71 | +| y_out | -0.05721138 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11434059 | +| time-step | 72 | +| y_out | 0.0855271 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.11158688 | +| time-step | 73 | +| y_out | -0.028326496 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.10592683 | +| time-step | 74 | +| y_out | -0.10301969 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.105455264 | +| time-step | 75 | +| y_out | -0.0090772975 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.10311691 | +| time-step | 76 | +| y_out | -0.07309828 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.100159466 | +| time-step | 77 | +| y_out | 0.082424045 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.099643275 | +| time-step | 78 | +| y_out | 0.092503965 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09551458 | +| time-step | 79 | +| y_out | 0.04183206 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +------------------------------------------------------------ +| perf/mse | 0.09425654 | +| time-step | 80 | +| y_out | 0.033711683 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.093546 | +| time-step | 81 | +| y_out | -0.12882873 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.09417549 | +| time-step | 82 | +| y_out | -0.10583155 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.09087784 | +| time-step | 83 | +| y_out | -0.008717222 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08957593 | +| time-step | 84 | +| y_out | -0.0442772 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08598084 | +| time-step | 85 | +| y_out | 0.07148127 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.084720545 | +| time-step | 86 | +| y_out | 0.017134115 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.082614586 | +| time-step | 87 | +| y_out | -0.03950606 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.08096035 | +| time-step | 88 | +| y_out | -0.029261012 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.080296814 | +| time-step | 89 | +| y_out | 0.057066243 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07668127 | +| time-step | 90 | +| y_out | 0.07098338 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.07465087 | +| time-step | 91 | +| y_out | -0.06907131 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07311099 | +| time-step | 92 | +| y_out | -0.05171191 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.0725683 | +| time-step | 93 | +| y_out | -0.110601015 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.071776435 | +| time-step | 94 | +| y_out | -0.026199345 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.070866324 | +| time-step | 95 | +| y_out | -6.589107e-07 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.07088388 | +| time-step | 96 | +| y_out | 0.024847204 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.0711927 | +| time-step | 97 | +| y_out | 0.00088718906 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.07020186 | +| time-step | 98 | +| y_out | 0.042646974 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.070564345 | +| time-step | 99 | +| y_out | -0.15401098 | +------------------------------------------------------------ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..4fb093f --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,0.057954267, +1,-0.16365862, +2,-0.019681245, +3,0.022561982, +4,-0.13416053, +5,0.1339738, +6,-0.018874194, +7,0.031827815, +8,0.061661948, +9,0.21720701,0.33197737 +10,0.099746495,0.32195234 +11,0.007828675,0.31700128 +12,0.0036695674,0.3201444 +13,0.021058306,0.3129303 +14,0.06313879,0.3050651 +15,0.039653137,0.30064285 +16,0.022164203,0.2960209 +17,-0.0839839,0.29025063 +18,0.07471995,0.27905178 +19,-0.025503304,0.2759032 +20,0.019835057,0.26989073 +21,-0.062677786,0.26826188 +22,-0.021318281,0.2584748 +23,0.024209933,0.2537949 +24,0.13914189,0.25071117 +25,-0.020597862,0.24852414 +26,-0.014543334,0.23885508 +27,-0.031824157,0.23584354 +28,-0.04671384,0.2396863 +29,0.05610097,0.2309604 +30,0.002615407,0.23297271 +31,0.070476025,0.23129126 +32,0.040641565,0.22723958 +33,0.059984356,0.22739749 +34,-0.0091008935,0.22543204 +35,0.062491737,0.22175045 +36,-0.024435958,0.21429336 +37,0.060051534,0.21352763 +38,-0.04342635,0.21116233 +39,0.0084026465,0.208745 +40,-0.040181134,0.20916812 +41,-0.024507655,0.20767811 +42,-0.018106269,0.20549591 +43,0.12870893,0.20485921 +44,-0.0233492,0.20350036 +45,0.08209593,0.201682 +46,-0.04075575,0.20042662 +47,-0.08544053,0.19709313 +48,-0.11520279,0.19168925 +49,0.038674615,0.19063959 +50,-0.08781865,0.17864 +51,0.077561215,0.1745716 +52,-0.06579357,0.17233422 +53,-0.08304539,0.16532573 +54,0.055884387,0.15915759 +55,0.09783222,0.16082762 +56,0.070208915,0.1613141 +57,0.04157433,0.15792848 +58,0.03665974,0.15796022 +59,0.060706176,0.15588588 +60,-0.022992976,0.15432505 +61,-0.08773433,0.15025382 +62,0.1040368,0.147721 +63,0.0151649155,0.14614102 +64,-0.043442275,0.14765063 +65,0.0847801,0.13919443 +66,0.10740591,0.1354896 +67,-0.10419522,0.13247067 +68,0.0026753806,0.12644862 +69,0.00036436133,0.1225603 +70,0.056387626,0.12176937 +71,-0.05721138,0.11758195 +72,0.0855271,0.11434059 +73,-0.028326496,0.11158688 +74,-0.10301969,0.10592683 +75,-0.0090772975,0.105455264 +76,-0.07309828,0.10311691 +77,0.082424045,0.100159466 +78,0.092503965,0.099643275 +79,0.04183206,0.09551458 +80,0.033711683,0.09425654 +81,-0.12882873,0.093546 +82,-0.10583155,0.09417549 +83,-0.008717222,0.09087784 +84,-0.0442772,0.08957593 +85,0.07148127,0.08598084 +86,0.017134115,0.084720545 +87,-0.03950606,0.082614586 +88,-0.029261012,0.08096035 +89,0.057066243,0.080296814 +90,0.07098338,0.07668127 +91,-0.06907131,0.07465087 +92,-0.05171191,0.07311099 +93,-0.110601015,0.0725683 +94,-0.026199345,0.071776435 +95,-6.589107e-07,0.070866324 +96,0.024847204,0.07088388 +97,0.00088718906,0.0711927 +98,0.042646974,0.07020186 +99,-0.15401098,0.070564345 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903271.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903271.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..38dd9dc Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903271.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..b324047 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,10 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/ +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: False +k: REMOTE_SETTING, v: {'ftp_server': '', 'username': '', 'password': '', 'remote_log_root': '', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 14:30:28.185124 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-22-366311_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..af16e75 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,502 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +------------------------------------------------------------ +| time-step | 0 | +| y_out | 0.026434839 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 1 | +| y_out | -0.049877807 | +------------------------------------------------------------- +------------------------------------------------------------- +| time-step | 2 | +| y_out | -0.051599193 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 3 | +| y_out | -0.11694549 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 4 | +| y_out | -0.03727347 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 5 | +| y_out | 0.018849868 | +------------------------------------------------------------ +----------------------------------------------------------- +| time-step | 6 | +| y_out | 0.07576369 | +----------------------------------------------------------- +------------------------------------------------------------- +| time-step | 7 | +| y_out | -0.002556907 | +------------------------------------------------------------- +------------------------------------------------------------- +| time-step | 8 | +| y_out | -0.008848466 | +------------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2629329 | +| time-step | 9 | +| y_out | 0.0791229 | +---------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.25715083 | +| time-step | 10 | +| y_out | -0.0076752566 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.25968364 | +| time-step | 11 | +| y_out | 0.100417346 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.2597984 | +| time-step | 12 | +| y_out | -0.0365184 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2601893 | +| time-step | 13 | +| y_out | 0.102495074 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2584832 | +| time-step | 14 | +| y_out | -0.037428394 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2552052 | +| time-step | 15 | +| y_out | -0.02633594 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.24659066 | +| time-step | 16 | +| y_out | -0.021568293 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24230392 | +| time-step | 17 | +| y_out | 0.033726517 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23718652 | +| time-step | 18 | +| y_out | 0.036447246 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.24159941 | +| time-step | 19 | +| y_out | 0.054382086 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +------------------------------------------------------------ +| perf/mse | 0.24128008 | +| time-step | 20 | +| y_out | -0.20376685 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.23691003 | +| time-step | 21 | +| y_out | -0.002836587 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.23388354 | +| time-step | 22 | +| y_out | 0.14707932 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.22938702 | +| time-step | 23 | +| y_out | -0.07003376 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.22859931 | +| time-step | 24 | +| y_out | 0.10550484 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.22521248 | +| time-step | 25 | +| y_out | -0.0007207263 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22448471 | +| time-step | 26 | +| y_out | 0.05728255 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.21967049 | +| time-step | 27 | +| y_out | -0.12098433 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.22097278 | +| time-step | 28 | +| y_out | 0.041676782 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.21653202 | +| time-step | 29 | +| y_out | 0.10850445 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21655026 | +| time-step | 30 | +| y_out | -0.0720776 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21372685 | +| time-step | 31 | +| y_out | 0.10683118 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.20395346 | +| time-step | 32 | +| y_out | 0.0021613948 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19785853 | +| time-step | 33 | +| y_out | -0.01774867 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19639128 | +| time-step | 34 | +| y_out | 0.010545963 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.19553241 | +| time-step | 35 | +| y_out | 0.10162185 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19496362 | +| time-step | 36 | +| y_out | 0.09500998 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19576713 | +| time-step | 37 | +| y_out | 0.050578058 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19411947 | +| time-step | 38 | +| y_out | -0.07401246 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.18606022 | +| time-step | 39 | +| y_out | -0.006828841 | +------------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +-------------------------------------------------------------- +| perf/mse | 0.1827048 | +| time-step | 40 | +| y_out | -0.0027708597 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18040423 | +| time-step | 41 | +| y_out | 0.090719774 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.18015209 | +| time-step | 42 | +| y_out | -0.0057016797 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.18449727 | +| time-step | 43 | +| y_out | -0.0033132434 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18158019 | +| time-step | 44 | +| y_out | 0.014757775 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.17702779 | +| time-step | 45 | +| y_out | 0.15497266 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.17318092 | +| time-step | 46 | +| y_out | -0.090124115 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17348106 | +| time-step | 47 | +| y_out | 0.04543226 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16878992 | +| time-step | 48 | +| y_out | 0.05971071 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.16956994 | +| time-step | 49 | +| y_out | 0.081655964 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16808951 | +| time-step | 50 | +| y_out | 0.016992945 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.1661295 | +| time-step | 51 | +| y_out | -0.013463862 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1629425 | +| time-step | 52 | +| y_out | 0.048871465 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.15583196 | +| time-step | 53 | +| y_out | -0.0736928 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.15354384 | +| time-step | 54 | +| y_out | -0.0049589537 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.152821 | +| time-step | 55 | +| y_out | 0.073062815 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15098399 | +| time-step | 56 | +| y_out | 0.003733769 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.14273873 | +| time-step | 57 | +| y_out | 0.008314427 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.14075644 | +| time-step | 58 | +| y_out | 0.03463362 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14012197 | +| time-step | 59 | +| y_out | 0.018198382 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +----------------------------------------------------------- +| perf/mse | 0.13740602 | +| time-step | 60 | +| y_out | 0.08692987 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13576336 | +| time-step | 61 | +| y_out | 0.06653725 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.13330787 | +| time-step | 62 | +| y_out | -0.011243273 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.13249408 | +| time-step | 63 | +| y_out | -0.022268822 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13094437 | +| time-step | 64 | +| y_out | 0.07237807 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.13024911 | +| time-step | 65 | +| y_out | -0.027079508 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12680063 | +| time-step | 66 | +| y_out | -0.09452046 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.12755033 | +| time-step | 67 | +| y_out | 0.026418112 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.12472048 | +| time-step | 68 | +| y_out | 0.018874599 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.1259586 | +| time-step | 69 | +| y_out | 0.012553807 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.12604675 | +| time-step | 70 | +| y_out | -0.0870841 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12311997 | +| time-step | 71 | +| y_out | 0.020395912 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.1252727 | +| time-step | 72 | +| y_out | 0.07525701 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12483032 | +| time-step | 73 | +| y_out | 0.123660356 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.12204591 | +| time-step | 74 | +| y_out | -0.06134852 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.115969636 | +| time-step | 75 | +| y_out | -0.0070918836 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.11444948 | +| time-step | 76 | +| y_out | -0.012263858 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.11058269 | +| time-step | 77 | +| y_out | -0.124589935 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.110158205 | +| time-step | 78 | +| y_out | -0.06762721 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.10824226 | +| time-step | 79 | +| y_out | -0.053701974 | +------------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +------------------------------------------------------------ +| perf/mse | 0.10289679 | +| time-step | 80 | +| y_out | 0.027580366 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.10414962 | +| time-step | 81 | +| y_out | -0.049639516 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09778084 | +| time-step | 82 | +| y_out | -0.0870422 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.095247485 | +| time-step | 83 | +| y_out | 0.011361558 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09319492 | +| time-step | 84 | +| y_out | 0.03490648 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0938939 | +| time-step | 85 | +| y_out | -0.118292816 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09501687 | +| time-step | 86 | +| y_out | 0.21377105 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.094822444 | +| time-step | 87 | +| y_out | -0.0048013926 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.093332246 | +| time-step | 88 | +| y_out | -0.09708738 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09160007 | +| time-step | 89 | +| y_out | 0.03655528 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.08857501 | +| time-step | 90 | +| y_out | -0.0052816644 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.08409279 | +| time-step | 91 | +| y_out | -0.008492868 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.0848667 | +| time-step | 92 | +| y_out | -0.0069826636 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.08365972 | +| time-step | 93 | +| y_out | 0.005212657 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08360197 | +| time-step | 94 | +| y_out | 0.03449457 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.081063546 | +| time-step | 95 | +| y_out | -0.08511153 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.077025235 | +| time-step | 96 | +| y_out | 0.03232435 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07563747 | +| time-step | 97 | +| y_out | -0.08866757 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07169694 | +| time-step | 98 | +| y_out | 0.022935567 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06994214 | +| time-step | 99 | +| y_out | 0.0716854 | +----------------------------------------------------------- diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..fdb091f --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,0.026434839, +1,-0.049877807, +2,-0.051599193, +3,-0.11694549, +4,-0.03727347, +5,0.018849868, +6,0.07576369, +7,-0.002556907, +8,-0.008848466, +9,0.0791229,0.2629329 +10,-0.0076752566,0.25715083 +11,0.100417346,0.25968364 +12,-0.0365184,0.2597984 +13,0.102495074,0.2601893 +14,-0.037428394,0.2584832 +15,-0.02633594,0.2552052 +16,-0.021568293,0.24659066 +17,0.033726517,0.24230392 +18,0.036447246,0.23718652 +19,0.054382086,0.24159941 +20,-0.20376685,0.24128008 +21,-0.002836587,0.23691003 +22,0.14707932,0.23388354 +23,-0.07003376,0.22938702 +24,0.10550484,0.22859931 +25,-0.0007207263,0.22521248 +26,0.05728255,0.22448471 +27,-0.12098433,0.21967049 +28,0.041676782,0.22097278 +29,0.10850445,0.21653202 +30,-0.0720776,0.21655026 +31,0.10683118,0.21372685 +32,0.0021613948,0.20395346 +33,-0.01774867,0.19785853 +34,0.010545963,0.19639128 +35,0.10162185,0.19553241 +36,0.09500998,0.19496362 +37,0.050578058,0.19576713 +38,-0.07401246,0.19411947 +39,-0.006828841,0.18606022 +40,-0.0027708597,0.1827048 +41,0.090719774,0.18040423 +42,-0.0057016797,0.18015209 +43,-0.0033132434,0.18449727 +44,0.014757775,0.18158019 +45,0.15497266,0.17702779 +46,-0.090124115,0.17318092 +47,0.04543226,0.17348106 +48,0.05971071,0.16878992 +49,0.081655964,0.16956994 +50,0.016992945,0.16808951 +51,-0.013463862,0.1661295 +52,0.048871465,0.1629425 +53,-0.0736928,0.15583196 +54,-0.0049589537,0.15354384 +55,0.073062815,0.152821 +56,0.003733769,0.15098399 +57,0.008314427,0.14273873 +58,0.03463362,0.14075644 +59,0.018198382,0.14012197 +60,0.08692987,0.13740602 +61,0.06653725,0.13576336 +62,-0.011243273,0.13330787 +63,-0.022268822,0.13249408 +64,0.07237807,0.13094437 +65,-0.027079508,0.13024911 +66,-0.09452046,0.12680063 +67,0.026418112,0.12755033 +68,0.018874599,0.12472048 +69,0.012553807,0.1259586 +70,-0.0870841,0.12604675 +71,0.020395912,0.12311997 +72,0.07525701,0.1252727 +73,0.123660356,0.12483032 +74,-0.06134852,0.12204591 +75,-0.0070918836,0.115969636 +76,-0.012263858,0.11444948 +77,-0.124589935,0.11058269 +78,-0.06762721,0.110158205 +79,-0.053701974,0.10824226 +80,0.027580366,0.10289679 +81,-0.049639516,0.10414962 +82,-0.0870422,0.09778084 +83,0.011361558,0.095247485 +84,0.03490648,0.09319492 +85,-0.118292816,0.0938939 +86,0.21377105,0.09501687 +87,-0.0048013926,0.094822444 +88,-0.09708738,0.093332246 +89,0.03655528,0.09160007 +90,-0.0052816644,0.08857501 +91,-0.008492868,0.08409279 +92,-0.0069826636,0.0848667 +93,0.005212657,0.08365972 +94,0.03449457,0.08360197 +95,-0.08511153,0.081063546 +96,0.03232435,0.077025235 +97,-0.08866757,0.07563747 +98,0.022935567,0.07169694 +99,0.0716854,0.06994214 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903428.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903428.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..8717960 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903428.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..f97c13b --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,10 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/ +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: False +k: REMOTE_SETTING, v: {'ftp_server': '', 'username': '', 'password': '', 'remote_log_root': '', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 14:31:04.861007 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-00-050367_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..a1643b6 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,502 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +------------------------------------------------------------ +| time-step | 0 | +| y_out | -0.12848262 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 1 | +| y_out | -0.06785326 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 2 | +| y_out | 0.056364033 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 3 | +| y_out | -0.06977393 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 4 | +| y_out | 0.026289541 | +------------------------------------------------------------ +----------------------------------------------------------- +| time-step | 5 | +| y_out | 0.06534855 | +----------------------------------------------------------- +----------------------------------------------------------- +| time-step | 6 | +| y_out | 0.07898515 | +----------------------------------------------------------- +------------------------------------------------------------ +| time-step | 7 | +| y_out | -0.03676845 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 8 | +| y_out | -0.04125478 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.28131896 | +| time-step | 9 | +| y_out | -0.10180305 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2845005 | +| time-step | 10 | +| y_out | -0.06926264 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2961555 | +| time-step | 11 | +| y_out | 0.016874395 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.2993807 | +| time-step | 12 | +| y_out | 0.0704311 | +---------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.30471697 | +| time-step | 13 | +| y_out | -0.115119845 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2984702 | +| time-step | 14 | +| y_out | -0.04216931 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.28849787 | +| time-step | 15 | +| y_out | -0.102340564 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2775429 | +| time-step | 16 | +| y_out | 0.008078432 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2799391 | +| time-step | 17 | +| y_out | -0.056683853 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.27361232 | +| time-step | 18 | +| y_out | -0.003003575 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.26992846 | +| time-step | 19 | +| y_out | -0.027532296 | +------------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +----------------------------------------------------------- +| perf/mse | 0.26263076 | +| time-step | 20 | +| y_out | -0.1308051 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25778192 | +| time-step | 21 | +| y_out | 0.01261748 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2550023 | +| time-step | 22 | +| y_out | 0.060839813 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.24725428 | +| time-step | 23 | +| y_out | 0.020614378 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.2404072 | +| time-step | 24 | +| y_out | 0.06309541 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.24450545 | +| time-step | 25 | +| y_out | 0.15437658 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24970475 | +| time-step | 26 | +| y_out | -0.04059537 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.24829873 | +| time-step | 27 | +| y_out | -0.0012246734 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.24437237 | +| time-step | 28 | +| y_out | 0.08326321 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.24151751 | +| time-step | 29 | +| y_out | -0.0534989 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.2395076 | +| time-step | 30 | +| y_out | -0.061537247 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.23253353 | +| time-step | 31 | +| y_out | 0.01949121 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.2286851 | +| time-step | 32 | +| y_out | 0.10312063 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.22495718 | +| time-step | 33 | +| y_out | -0.024884624 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22227582 | +| time-step | 34 | +| y_out | 0.11812688 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.22148518 | +| time-step | 35 | +| y_out | 0.049848102 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.21244541 | +| time-step | 36 | +| y_out | -0.026208945 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.20624682 | +| time-step | 37 | +| y_out | 0.031267077 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.20560734 | +| time-step | 38 | +| y_out | 0.035062835 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.20381801 | +| time-step | 39 | +| y_out | 0.04963902 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +------------------------------------------------------------ +| perf/mse | 0.20314369 | +| time-step | 40 | +| y_out | -0.10657357 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.20263147 | +| time-step | 41 | +| y_out | 0.007259734 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.19718528 | +| time-step | 42 | +| y_out | 0.04854442 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.19953935 | +| time-step | 43 | +| y_out | -0.0074305087 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.20247555 | +| time-step | 44 | +| y_out | -0.10489513 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.19384983 | +| time-step | 45 | +| y_out | -0.046378914 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19292247 | +| time-step | 46 | +| y_out | -0.04852566 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.19074494 | +| time-step | 47 | +| y_out | 0.07670242 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18742517 | +| time-step | 48 | +| y_out | -0.0854886 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.18292496 | +| time-step | 49 | +| y_out | -0.036247395 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.18134008 | +| time-step | 50 | +| y_out | -0.019006701 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.17857876 | +| time-step | 51 | +| y_out | -0.045955583 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17352554 | +| time-step | 52 | +| y_out | 0.07759726 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1663309 | +| time-step | 53 | +| y_out | -0.042124037 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.16061138 | +| time-step | 54 | +| y_out | -0.04385255 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.1631932 | +| time-step | 55 | +| y_out | 0.030629797 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16492057 | +| time-step | 56 | +| y_out | 0.104431905 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.16375723 | +| time-step | 57 | +| y_out | -0.021231502 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1643896 | +| time-step | 58 | +| y_out | -0.02668121 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.16420206 | +| time-step | 59 | +| y_out | -0.050844155 | +------------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +------------------------------------------------------------- +| perf/mse | 0.15982455 | +| time-step | 60 | +| y_out | -0.109118775 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.1592373 | +| time-step | 61 | +| y_out | 0.14085618 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.15920554 | +| time-step | 62 | +| y_out | -0.068694405 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15803203 | +| time-step | 63 | +| y_out | 0.016491776 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15461087 | +| time-step | 64 | +| y_out | 0.011561893 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.14906377 | +| time-step | 65 | +| y_out | 0.019716704 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.14067526 | +| time-step | 66 | +| y_out | -0.0041298475 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.1378821 | +| time-step | 67 | +| y_out | 0.09931937 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13882685 | +| time-step | 68 | +| y_out | -0.02012933 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.13802008 | +| time-step | 69 | +| y_out | 0.0067736655 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1412672 | +| time-step | 70 | +| y_out | -0.09335388 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.13644913 | +| time-step | 71 | +| y_out | 0.060213 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13665584 | +| time-step | 72 | +| y_out | 0.057307165 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.1345866 | +| time-step | 73 | +| y_out | 0.018420655 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.13356753 | +| time-step | 74 | +| y_out | -0.064063594 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13328837 | +| time-step | 75 | +| y_out | 0.14076695 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1337829 | +| time-step | 76 | +| y_out | 0.053789414 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.13318875 | +| time-step | 77 | +| y_out | 0.06966139 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.12555793 | +| time-step | 78 | +| y_out | -0.025302805 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1225148 | +| time-step | 79 | +| y_out | 0.096397564 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +----------------------------------------------------------- +| perf/mse | 0.11754751 | +| time-step | 80 | +| y_out | 0.07205976 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11828484 | +| time-step | 81 | +| y_out | 0.08357977 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.11674298 | +| time-step | 82 | +| y_out | 0.040213317 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11335896 | +| time-step | 83 | +| y_out | -0.0534849 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.11405946 | +| time-step | 84 | +| y_out | -0.018771097 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.112875685 | +| time-step | 85 | +| y_out | 0.039481785 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11183598 | +| time-step | 86 | +| y_out | 0.059101067 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.109916486 | +| time-step | 87 | +| y_out | 0.006536618 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.11134766 | +| time-step | 88 | +| y_out | -0.025049953 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.10776442 | +| time-step | 89 | +| y_out | -0.10301233 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.10673557 | +| time-step | 90 | +| y_out | 0.00020663626 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.102664806 | +| time-step | 91 | +| y_out | 0.0886412 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.102406874 | +| time-step | 92 | +| y_out | 0.07497756 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.10305681 | +| time-step | 93 | +| y_out | 0.048273362 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09958337 | +| time-step | 94 | +| y_out | 0.03789698 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.095691 | +| time-step | 95 | +| y_out | 0.037954226 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.09506022 | +| time-step | 96 | +| y_out | 0.069947265 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.09147383 | +| time-step | 97 | +| y_out | 0.077812806 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.08942681 | +| time-step | 98 | +| y_out | -0.13509692 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.089082934 | +| time-step | 99 | +| y_out | 0.040448934 | +------------------------------------------------------------ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..1dabd2f --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,-0.12848262, +1,-0.06785326, +2,0.056364033, +3,-0.06977393, +4,0.026289541, +5,0.06534855, +6,0.07898515, +7,-0.03676845, +8,-0.04125478, +9,-0.10180305,0.28131896 +10,-0.06926264,0.2845005 +11,0.016874395,0.2961555 +12,0.0704311,0.2993807 +13,-0.115119845,0.30471697 +14,-0.04216931,0.2984702 +15,-0.102340564,0.28849787 +16,0.008078432,0.2775429 +17,-0.056683853,0.2799391 +18,-0.003003575,0.27361232 +19,-0.027532296,0.26992846 +20,-0.1308051,0.26263076 +21,0.01261748,0.25778192 +22,0.060839813,0.2550023 +23,0.020614378,0.24725428 +24,0.06309541,0.2404072 +25,0.15437658,0.24450545 +26,-0.04059537,0.24970475 +27,-0.0012246734,0.24829873 +28,0.08326321,0.24437237 +29,-0.0534989,0.24151751 +30,-0.061537247,0.2395076 +31,0.01949121,0.23253353 +32,0.10312063,0.2286851 +33,-0.024884624,0.22495718 +34,0.11812688,0.22227582 +35,0.049848102,0.22148518 +36,-0.026208945,0.21244541 +37,0.031267077,0.20624682 +38,0.035062835,0.20560734 +39,0.04963902,0.20381801 +40,-0.10657357,0.20314369 +41,0.007259734,0.20263147 +42,0.04854442,0.19718528 +43,-0.0074305087,0.19953935 +44,-0.10489513,0.20247555 +45,-0.046378914,0.19384983 +46,-0.04852566,0.19292247 +47,0.07670242,0.19074494 +48,-0.0854886,0.18742517 +49,-0.036247395,0.18292496 +50,-0.019006701,0.18134008 +51,-0.045955583,0.17857876 +52,0.07759726,0.17352554 +53,-0.042124037,0.1663309 +54,-0.04385255,0.16061138 +55,0.030629797,0.1631932 +56,0.104431905,0.16492057 +57,-0.021231502,0.16375723 +58,-0.02668121,0.1643896 +59,-0.050844155,0.16420206 +60,-0.109118775,0.15982455 +61,0.14085618,0.1592373 +62,-0.068694405,0.15920554 +63,0.016491776,0.15803203 +64,0.011561893,0.15461087 +65,0.019716704,0.14906377 +66,-0.0041298475,0.14067526 +67,0.09931937,0.1378821 +68,-0.02012933,0.13882685 +69,0.0067736655,0.13802008 +70,-0.09335388,0.1412672 +71,0.060213,0.13644913 +72,0.057307165,0.13665584 +73,0.018420655,0.1345866 +74,-0.064063594,0.13356753 +75,0.14076695,0.13328837 +76,0.053789414,0.1337829 +77,0.06966139,0.13318875 +78,-0.025302805,0.12555793 +79,0.096397564,0.1225148 +80,0.07205976,0.11754751 +81,0.08357977,0.11828484 +82,0.040213317,0.11674298 +83,-0.0534849,0.11335896 +84,-0.018771097,0.11405946 +85,0.039481785,0.112875685 +86,0.059101067,0.11183598 +87,0.006536618,0.109916486 +88,-0.025049953,0.11134766 +89,-0.10301233,0.10776442 +90,0.00020663626,0.10673557 +91,0.0886412,0.102664806 +92,0.07497756,0.102406874 +93,0.048273362,0.10305681 +94,0.03789698,0.09958337 +95,0.037954226,0.095691 +96,0.069947265,0.09506022 +97,0.077812806,0.09147383 +98,-0.13509692,0.08942681 +99,0.040448934,0.089082934 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903464.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903464.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..4b94863 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903464.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..9501473 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,10 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/ +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: False +k: REMOTE_SETTING, v: {'ftp_server': '', 'username': '', 'password': '', 'remote_log_root': '', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 14:36:31.125348 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-25-708670_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..2d93f85 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,502 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +----------------------------------------------------------- +| time-step | 0 | +| y_out | 0.11568607 | +----------------------------------------------------------- +------------------------------------------------------------ +| time-step | 1 | +| y_out | 0.024448898 | +------------------------------------------------------------ +----------------------------------------------------------- +| time-step | 2 | +| y_out | 0.07994281 | +----------------------------------------------------------- +------------------------------------------------------------ +| time-step | 3 | +| y_out | 0.065330446 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 4 | +| y_out | -0.065069176 | +------------------------------------------------------------- +------------------------------------------------------------- +| time-step | 5 | +| y_out | -0.055503707 | +------------------------------------------------------------- +-------------------------------------------------------------- +| time-step | 6 | +| y_out | -0.0043033026 | +-------------------------------------------------------------- +------------------------------------------------------------- +| time-step | 7 | +| y_out | -0.020655476 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 8 | +| y_out | 0.020889513 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.34083837 | +| time-step | 9 | +| y_out | -0.0831574 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.33512047 | +| time-step | 10 | +| y_out | -0.14079991 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.3284237 | +| time-step | 11 | +| y_out | 0.005779678 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.32368138 | +| time-step | 12 | +| y_out | 0.0825783 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.32029843 | +| time-step | 13 | +| y_out | -0.029824995 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.3246012 | +| time-step | 14 | +| y_out | -0.059920803 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.30610698 | +| time-step | 15 | +| y_out | 0.12507735 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.3093604 | +| time-step | 16 | +| y_out | 0.03319899 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.3117656 | +| time-step | 17 | +| y_out | 0.03404002 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.2997157 | +| time-step | 18 | +| y_out | 0.10663411 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.29453066 | +| time-step | 19 | +| y_out | 0.056197204 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +------------------------------------------------------------ +| perf/mse | 0.29965302 | +| time-step | 20 | +| y_out | 0.044020534 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.30040467 | +| time-step | 21 | +| y_out | -0.049835414 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2990193 | +| time-step | 22 | +| y_out | -0.07995278 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.291678 | +| time-step | 23 | +| y_out | 0.06804639 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.27905765 | +| time-step | 24 | +| y_out | 0.055526786 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2798091 | +| time-step | 25 | +| y_out | -0.10353845 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2728362 | +| time-step | 26 | +| y_out | 0.058165353 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.26660055 | +| time-step | 27 | +| y_out | 0.007903464 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.26873395 | +| time-step | 28 | +| y_out | -0.046058483 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.2711562 | +| time-step | 29 | +| y_out | 0.04439366 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.25874427 | +| time-step | 30 | +| y_out | -0.007603422 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25821948 | +| time-step | 31 | +| y_out | 0.04068803 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24839608 | +| time-step | 32 | +| y_out | -0.08952403 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.24346241 | +| time-step | 33 | +| y_out | 0.018602455 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.24797666 | +| time-step | 34 | +| y_out | 0.057587057 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.23956609 | +| time-step | 35 | +| y_out | 0.03022397 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.23921323 | +| time-step | 36 | +| y_out | 0.09063111 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.23493099 | +| time-step | 37 | +| y_out | -0.14581057 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.22942455 | +| time-step | 38 | +| y_out | -0.04749298 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.22233236 | +| time-step | 39 | +| y_out | 0.03781242 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +----------------------------------------------------------- +| perf/mse | 0.21607849 | +| time-step | 40 | +| y_out | 0.07351149 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.2160447 | +| time-step | 41 | +| y_out | 0.15035543 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.21876101 | +| time-step | 42 | +| y_out | -0.008501947 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21954279 | +| time-step | 43 | +| y_out | 0.06866093 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.21557808 | +| time-step | 44 | +| y_out | -0.030033905 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.21365714 | +| time-step | 45 | +| y_out | -0.031098548 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.20586053 | +| time-step | 46 | +| y_out | -0.011046587 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.20076784 | +| time-step | 47 | +| y_out | 0.027415186 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.20090649 | +| time-step | 48 | +| y_out | 0.050115347 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.20178871 | +| time-step | 49 | +| y_out | 0.013391181 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.20747896 | +| time-step | 50 | +| y_out | -0.022861479 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.20180874 | +| time-step | 51 | +| y_out | 0.0034740195 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.19736132 | +| time-step | 52 | +| y_out | 0.0048667844 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19801924 | +| time-step | 53 | +| y_out | 0.009927493 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.19459048 | +| time-step | 54 | +| y_out | -0.0700113 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.19268462 | +| time-step | 55 | +| y_out | -0.024671154 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19511083 | +| time-step | 56 | +| y_out | 0.10287392 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1952046 | +| time-step | 57 | +| y_out | -0.023748968 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19519237 | +| time-step | 58 | +| y_out | -0.067934 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.18978043 | +| time-step | 59 | +| y_out | -0.105003476 | +------------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +----------------------------------------------------------- +| perf/mse | 0.18429948 | +| time-step | 60 | +| y_out | 0.10323535 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.17685309 | +| time-step | 61 | +| y_out | -0.118296154 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.17099223 | +| time-step | 62 | +| y_out | -0.005616281 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.1664906 | +| time-step | 63 | +| y_out | -0.0467896 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.16072266 | +| time-step | 64 | +| y_out | -0.06876407 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16197017 | +| time-step | 65 | +| y_out | 0.020221781 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.15954879 | +| time-step | 66 | +| y_out | -0.0321968 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.15583923 | +| time-step | 67 | +| y_out | -0.009179525 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.15168397 | +| time-step | 68 | +| y_out | 0.0067217276 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1501498 | +| time-step | 69 | +| y_out | -0.069230914 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14686692 | +| time-step | 70 | +| y_out | -0.06980356 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.14396118 | +| time-step | 71 | +| y_out | 0.11500215 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14670427 | +| time-step | 72 | +| y_out | 0.07772617 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14395751 | +| time-step | 73 | +| y_out | 0.086199656 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.14086244 | +| time-step | 74 | +| y_out | -0.022459432 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13966832 | +| time-step | 75 | +| y_out | 0.055353336 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.13636823 | +| time-step | 76 | +| y_out | 0.13095704 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13621512 | +| time-step | 77 | +| y_out | -0.04325234 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.1293233 | +| time-step | 78 | +| y_out | -0.048939314 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12594667 | +| time-step | 79 | +| y_out | 0.029397279 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +------------------------------------------------------------ +| perf/mse | 0.123431124 | +| time-step | 80 | +| y_out | 0.12984914 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.12356553 | +| time-step | 81 | +| y_out | -0.008728355 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.11678207 | +| time-step | 82 | +| y_out | 0.030475125 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11351766 | +| time-step | 83 | +| y_out | 0.06359854 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.11347699 | +| time-step | 84 | +| y_out | -0.053080194 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.10818969 | +| time-step | 85 | +| y_out | -0.033353634 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.104881726 | +| time-step | 86 | +| y_out | 0.06948737 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.09959717 | +| time-step | 87 | +| y_out | -0.043395516 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.098885275 | +| time-step | 88 | +| y_out | -0.037993625 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09477951 | +| time-step | 89 | +| y_out | 0.05911024 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09523795 | +| time-step | 90 | +| y_out | 0.07319937 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09300127 | +| time-step | 91 | +| y_out | 0.12034185 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.09218057 | +| time-step | 92 | +| y_out | 0.065578 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.08910888 | +| time-step | 93 | +| y_out | -0.05742941 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.086649925 | +| time-step | 94 | +| y_out | 0.0039783856 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08526725 | +| time-step | 95 | +| y_out | 0.11973506 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.082164004 | +| time-step | 96 | +| y_out | -0.035955284 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.08162555 | +| time-step | 97 | +| y_out | 0.042112093 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07871069 | +| time-step | 98 | +| y_out | -0.06176394 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0782552 | +| time-step | 99 | +| y_out | 0.059998848 | +------------------------------------------------------------ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..955b294 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,0.11568607, +1,0.024448898, +2,0.07994281, +3,0.065330446, +4,-0.065069176, +5,-0.055503707, +6,-0.0043033026, +7,-0.020655476, +8,0.020889513, +9,-0.0831574,0.34083837 +10,-0.14079991,0.33512047 +11,0.005779678,0.3284237 +12,0.0825783,0.32368138 +13,-0.029824995,0.32029843 +14,-0.059920803,0.3246012 +15,0.12507735,0.30610698 +16,0.03319899,0.3093604 +17,0.03404002,0.3117656 +18,0.10663411,0.2997157 +19,0.056197204,0.29453066 +20,0.044020534,0.29965302 +21,-0.049835414,0.30040467 +22,-0.07995278,0.2990193 +23,0.06804639,0.291678 +24,0.055526786,0.27905765 +25,-0.10353845,0.2798091 +26,0.058165353,0.2728362 +27,0.007903464,0.26660055 +28,-0.046058483,0.26873395 +29,0.04439366,0.2711562 +30,-0.007603422,0.25874427 +31,0.04068803,0.25821948 +32,-0.08952403,0.24839608 +33,0.018602455,0.24346241 +34,0.057587057,0.24797666 +35,0.03022397,0.23956609 +36,0.09063111,0.23921323 +37,-0.14581057,0.23493099 +38,-0.04749298,0.22942455 +39,0.03781242,0.22233236 +40,0.07351149,0.21607849 +41,0.15035543,0.2160447 +42,-0.008501947,0.21876101 +43,0.06866093,0.21954279 +44,-0.030033905,0.21557808 +45,-0.031098548,0.21365714 +46,-0.011046587,0.20586053 +47,0.027415186,0.20076784 +48,0.050115347,0.20090649 +49,0.013391181,0.20178871 +50,-0.022861479,0.20747896 +51,0.0034740195,0.20180874 +52,0.0048667844,0.19736132 +53,0.009927493,0.19801924 +54,-0.0700113,0.19459048 +55,-0.024671154,0.19268462 +56,0.10287392,0.19511083 +57,-0.023748968,0.1952046 +58,-0.067934,0.19519237 +59,-0.105003476,0.18978043 +60,0.10323535,0.18429948 +61,-0.118296154,0.17685309 +62,-0.005616281,0.17099223 +63,-0.0467896,0.1664906 +64,-0.06876407,0.16072266 +65,0.020221781,0.16197017 +66,-0.0321968,0.15954879 +67,-0.009179525,0.15583923 +68,0.0067217276,0.15168397 +69,-0.069230914,0.1501498 +70,-0.06980356,0.14686692 +71,0.11500215,0.14396118 +72,0.07772617,0.14670427 +73,0.086199656,0.14395751 +74,-0.022459432,0.14086244 +75,0.055353336,0.13966832 +76,0.13095704,0.13636823 +77,-0.04325234,0.13621512 +78,-0.048939314,0.1293233 +79,0.029397279,0.12594667 +80,0.12984914,0.123431124 +81,-0.008728355,0.12356553 +82,0.030475125,0.11678207 +83,0.06359854,0.11351766 +84,-0.053080194,0.11347699 +85,-0.033353634,0.10818969 +86,0.06948737,0.104881726 +87,-0.043395516,0.09959717 +88,-0.037993625,0.098885275 +89,0.05911024,0.09477951 +90,0.07319937,0.09523795 +91,0.12034185,0.09300127 +92,0.065578,0.09218057 +93,-0.05742941,0.08910888 +94,0.0039783856,0.086649925 +95,0.11973506,0.08526725 +96,-0.035955284,0.082164004 +97,0.042112093,0.08162555 +98,-0.06176394,0.07871069 +99,0.059998848,0.0782552 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903791.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903791.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..5f1800c Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903791.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..4fde4d1 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,10 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/ +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: False +k: REMOTE_SETTING, v: {'ftp_server': '', 'username': '', 'password': '', 'remote_log_root': '', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 14:37:01.642717 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-36-57-026857_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..52ca7b7 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,502 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +----------------------------------------------------------- +| time-step | 0 | +| y_out | -0.0621269 | +----------------------------------------------------------- +------------------------------------------------------------ +| time-step | 1 | +| y_out | -0.08904585 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 2 | +| y_out | -0.040738642 | +------------------------------------------------------------- +----------------------------------------------------------- +| time-step | 3 | +| y_out | 0.10097246 | +----------------------------------------------------------- +------------------------------------------------------------- +| time-step | 4 | +| y_out | -0.030524489 | +------------------------------------------------------------- +----------------------------------------------------------- +| time-step | 5 | +| y_out | -0.0893484 | +----------------------------------------------------------- +------------------------------------------------------------ +| time-step | 6 | +| y_out | 0.042008303 | +------------------------------------------------------------ +--------------------------------------------------------------- +| time-step | 7 | +| y_out | -0.00035213493 | +--------------------------------------------------------------- +----------------------------------------------------------- +| time-step | 8 | +| y_out | 0.15984905 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.27014396 | +| time-step | 9 | +| y_out | -0.030297758 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.26762146 | +| time-step | 10 | +| y_out | -0.06882575 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.2681088 | +| time-step | 11 | +| y_out | 0.0799767 | +---------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.27443463 | +| time-step | 12 | +| y_out | -0.049950756 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.2711161 | +| time-step | 13 | +| y_out | 0.10139241 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.27013952 | +| time-step | 14 | +| y_out | -0.025325254 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.2738251 | +| time-step | 15 | +| y_out | -0.037008815 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2678367 | +| time-step | 16 | +| y_out | -0.07290481 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.26659995 | +| time-step | 17 | +| y_out | -0.045389514 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.25868112 | +| time-step | 18 | +| y_out | -0.03218077 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.24854521 | +| time-step | 19 | +| y_out | 0.07168842 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +------------------------------------------------------------- +| perf/mse | 0.24950843 | +| time-step | 20 | +| y_out | 0.0018358855 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.24245 | +| time-step | 21 | +| y_out | -0.054730162 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.23498109 | +| time-step | 22 | +| y_out | -0.021847177 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.2269868 | +| time-step | 23 | +| y_out | 0.00582619 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21829061 | +| time-step | 24 | +| y_out | 0.10414045 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.21394917 | +| time-step | 25 | +| y_out | 0.027192216 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.21326227 | +| time-step | 26 | +| y_out | 0.15096214 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.20832542 | +| time-step | 27 | +| y_out | -0.012955276 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.20061156 | +| time-step | 28 | +| y_out | 0.026791058 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.1989101 | +| time-step | 29 | +| y_out | 0.12048819 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19219145 | +| time-step | 30 | +| y_out | 0.005813662 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19144766 | +| time-step | 31 | +| y_out | -0.01813798 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.18863854 | +| time-step | 32 | +| y_out | -0.16067702 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.18760523 | +| time-step | 33 | +| y_out | -0.012649797 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18688269 | +| time-step | 34 | +| y_out | -0.06185216 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.1806612 | +| time-step | 35 | +| y_out | -0.04907435 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.18013017 | +| time-step | 36 | +| y_out | -0.030103154 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1801342 | +| time-step | 37 | +| y_out | 0.080157936 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.177956 | +| time-step | 38 | +| y_out | -0.1273037 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1755193 | +| time-step | 39 | +| y_out | 0.0035625994 | +------------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +------------------------------------------------------------ +| perf/mse | 0.17271763 | +| time-step | 40 | +| y_out | 0.008754678 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.1674488 | +| time-step | 41 | +| y_out | -0.035720248 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.16094092 | +| time-step | 42 | +| y_out | -0.079138145 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15709676 | +| time-step | 43 | +| y_out | -0.07686725 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15263228 | +| time-step | 44 | +| y_out | 0.029497273 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.14997931 | +| time-step | 45 | +| y_out | 0.061288655 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.14675936 | +| time-step | 46 | +| y_out | -0.009561023 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.14187942 | +| time-step | 47 | +| y_out | -0.013016967 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14220299 | +| time-step | 48 | +| y_out | -0.16383211 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.13895491 | +| time-step | 49 | +| y_out | 0.06317976 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13796854 | +| time-step | 50 | +| y_out | 0.017956998 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.13369314 | +| time-step | 51 | +| y_out | -0.037002932 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.13515207 | +| time-step | 52 | +| y_out | -0.009299619 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13565762 | +| time-step | 53 | +| y_out | 0.12379622 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.1345194 | +| time-step | 54 | +| y_out | 0.15038662 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13385251 | +| time-step | 55 | +| y_out | 0.023144066 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.13122652 | +| time-step | 56 | +| y_out | 0.034012124 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.12971863 | +| time-step | 57 | +| y_out | 0.030073725 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.12640987 | +| time-step | 58 | +| y_out | -0.05199236 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.12471638 | +| time-step | 59 | +| y_out | 0.0001204256 | +------------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +------------------------------------------------------------- +| perf/mse | 0.12016161 | +| time-step | 60 | +| y_out | -0.033366647 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12022146 | +| time-step | 61 | +| y_out | 0.049675383 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11734482 | +| time-step | 62 | +| y_out | 0.09312133 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.11408396 | +| time-step | 63 | +| y_out | -0.061545502 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.112718895 | +| time-step | 64 | +| y_out | -0.08500222 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11047077 | +| time-step | 65 | +| y_out | 0.030663803 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.10604449 | +| time-step | 66 | +| y_out | -0.032404877 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.10367557 | +| time-step | 67 | +| y_out | -0.00931688 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.10038223 | +| time-step | 68 | +| y_out | -0.03682807 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0953555 | +| time-step | 69 | +| y_out | -0.15280788 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.093144156 | +| time-step | 70 | +| y_out | 0.020758972 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.09255326 | +| time-step | 71 | +| y_out | -0.026524495 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.08982011 | +| time-step | 72 | +| y_out | 0.011075083 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.08700745 | +| time-step | 73 | +| y_out | -0.038536236 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.083809964 | +| time-step | 74 | +| y_out | 0.17802127 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.07953285 | +| time-step | 75 | +| y_out | -0.032739554 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.079190776 | +| time-step | 76 | +| y_out | 0.06450374 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07883298 | +| time-step | 77 | +| y_out | 0.050905712 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.07809413 | +| time-step | 78 | +| y_out | 0.00936804 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.07796538 | +| time-step | 79 | +| y_out | -0.03812491 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +----------------------------------------------------------- +| perf/mse | 0.07717803 | +| time-step | 80 | +| y_out | 0.08966558 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.0735263 | +| time-step | 81 | +| y_out | 0.021206941 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07124361 | +| time-step | 82 | +| y_out | 0.011411548 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06886458 | +| time-step | 83 | +| y_out | 0.08673853 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06727667 | +| time-step | 84 | +| y_out | -0.0899993 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.065209836 | +| time-step | 85 | +| y_out | 0.091698796 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.060889266 | +| time-step | 86 | +| y_out | -0.17304748 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.055962823 | +| time-step | 87 | +| y_out | -0.11198948 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.052630685 | +| time-step | 88 | +| y_out | -0.030381948 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.051134743 | +| time-step | 89 | +| y_out | 0.03683728 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.048947368 | +| time-step | 90 | +| y_out | -0.02167064 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.0470057 | +| time-step | 91 | +| y_out | 0.05283567 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.045351554 | +| time-step | 92 | +| y_out | -0.009969771 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.044354785 | +| time-step | 93 | +| y_out | -0.0117721595 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.043437295 | +| time-step | 94 | +| y_out | 0.0135597475 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.042724147 | +| time-step | 95 | +| y_out | 0.080062404 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.04364051 | +| time-step | 96 | +| y_out | -0.13086124 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.04296896 | +| time-step | 97 | +| y_out | 0.07677312 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.0423295 | +| time-step | 98 | +| y_out | 0.08360295 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0419715 | +| time-step | 99 | +| y_out | -0.029844306 | +------------------------------------------------------------- diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..85daace --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,-0.0621269, +1,-0.08904585, +2,-0.040738642, +3,0.10097246, +4,-0.030524489, +5,-0.0893484, +6,0.042008303, +7,-0.00035213493, +8,0.15984905, +9,-0.030297758,0.27014396 +10,-0.06882575,0.26762146 +11,0.0799767,0.2681088 +12,-0.049950756,0.27443463 +13,0.10139241,0.2711161 +14,-0.025325254,0.27013952 +15,-0.037008815,0.2738251 +16,-0.07290481,0.2678367 +17,-0.045389514,0.26659995 +18,-0.03218077,0.25868112 +19,0.07168842,0.24854521 +20,0.0018358855,0.24950843 +21,-0.054730162,0.24245 +22,-0.021847177,0.23498109 +23,0.00582619,0.2269868 +24,0.10414045,0.21829061 +25,0.027192216,0.21394917 +26,0.15096214,0.21326227 +27,-0.012955276,0.20832542 +28,0.026791058,0.20061156 +29,0.12048819,0.1989101 +30,0.005813662,0.19219145 +31,-0.01813798,0.19144766 +32,-0.16067702,0.18863854 +33,-0.012649797,0.18760523 +34,-0.06185216,0.18688269 +35,-0.04907435,0.1806612 +36,-0.030103154,0.18013017 +37,0.080157936,0.1801342 +38,-0.1273037,0.177956 +39,0.0035625994,0.1755193 +40,0.008754678,0.17271763 +41,-0.035720248,0.1674488 +42,-0.079138145,0.16094092 +43,-0.07686725,0.15709676 +44,0.029497273,0.15263228 +45,0.061288655,0.14997931 +46,-0.009561023,0.14675936 +47,-0.013016967,0.14187942 +48,-0.16383211,0.14220299 +49,0.06317976,0.13895491 +50,0.017956998,0.13796854 +51,-0.037002932,0.13369314 +52,-0.009299619,0.13515207 +53,0.12379622,0.13565762 +54,0.15038662,0.1345194 +55,0.023144066,0.13385251 +56,0.034012124,0.13122652 +57,0.030073725,0.12971863 +58,-0.05199236,0.12640987 +59,0.0001204256,0.12471638 +60,-0.033366647,0.12016161 +61,0.049675383,0.12022146 +62,0.09312133,0.11734482 +63,-0.061545502,0.11408396 +64,-0.08500222,0.112718895 +65,0.030663803,0.11047077 +66,-0.032404877,0.10604449 +67,-0.00931688,0.10367557 +68,-0.03682807,0.10038223 +69,-0.15280788,0.0953555 +70,0.020758972,0.093144156 +71,-0.026524495,0.09255326 +72,0.011075083,0.08982011 +73,-0.038536236,0.08700745 +74,0.17802127,0.083809964 +75,-0.032739554,0.07953285 +76,0.06450374,0.079190776 +77,0.050905712,0.07883298 +78,0.00936804,0.07809413 +79,-0.03812491,0.07796538 +80,0.08966558,0.07717803 +81,0.021206941,0.0735263 +82,0.011411548,0.07124361 +83,0.08673853,0.06886458 +84,-0.0899993,0.06727667 +85,0.091698796,0.065209836 +86,-0.17304748,0.060889266 +87,-0.11198948,0.055962823 +88,-0.030381948,0.052630685 +89,0.03683728,0.051134743 +90,-0.02167064,0.048947368 +91,0.05283567,0.0470057 +92,-0.009969771,0.045351554 +93,-0.0117721595,0.044354785 +94,0.0135597475,0.043437295 +95,0.080062404,0.042724147 +96,-0.13086124,0.04364051 +97,0.07677312,0.04296896 +98,0.08360295,0.0423295 +99,-0.029844306,0.0419715 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903821.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903821.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..e214520 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903821.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-24-736729_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-24-736729_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..3ccd93a --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,502 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +-------------------------------------------------------------- +| time-step | 0 | +| y_out | -0.0046378504 | +-------------------------------------------------------------- +------------------------------------------------------------- +| time-step | 1 | +| y_out | -0.019780923 | +------------------------------------------------------------- +-------------------------------------------------------------- +| time-step | 2 | +| y_out | -0.0070655495 | +-------------------------------------------------------------- +---------------------------------------------------------- +| time-step | 3 | +| y_out | 0.0657551 | +---------------------------------------------------------- +------------------------------------------------------------- +| time-step | 4 | +| y_out | -0.034142777 | +------------------------------------------------------------- +----------------------------------------------------------- +| time-step | 5 | +| y_out | 0.04903492 | +----------------------------------------------------------- +----------------------------------------------------------- +| time-step | 6 | +| y_out | 0.04962659 | +----------------------------------------------------------- +------------------------------------------------------------ +| time-step | 7 | +| y_out | 0.017461505 | +------------------------------------------------------------ +----------------------------------------------------------- +| time-step | 8 | +| y_out | 0.04159434 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.29978654 | +| time-step | 9 | +| y_out | 0.0042816475 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.29667485 | +| time-step | 10 | +| y_out | 0.074249215 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.291982 | +| time-step | 11 | +| y_out | 0.0029530004 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.28456914 | +| time-step | 12 | +| y_out | -0.05108078 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2897091 | +| time-step | 13 | +| y_out | -0.043344524 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.28548 | +| time-step | 14 | +| y_out | 0.091172814 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.28956905 | +| time-step | 15 | +| y_out | -0.020786721 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.28326967 | +| time-step | 16 | +| y_out | 0.028366314 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2832108 | +| time-step | 17 | +| y_out | 0.086222485 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2903796 | +| time-step | 18 | +| y_out | 0.0075109825 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2924717 | +| time-step | 19 | +| y_out | 0.021292415 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +------------------------------------------------------------ +| perf/mse | 0.2852872 | +| time-step | 20 | +| y_out | -0.11340672 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2838872 | +| time-step | 21 | +| y_out | -0.044309147 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2824472 | +| time-step | 22 | +| y_out | 0.067185596 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.27756673 | +| time-step | 23 | +| y_out | 0.046435833 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.27773649 | +| time-step | 24 | +| y_out | -0.109382235 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.2792964 | +| time-step | 25 | +| y_out | 0.09562312 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.28030592 | +| time-step | 26 | +| y_out | 0.0029435847 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.2834482 | +| time-step | 27 | +| y_out | -0.013542404 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.28170207 | +| time-step | 28 | +| y_out | -0.036044773 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2687548 | +| time-step | 29 | +| y_out | 0.055070605 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.27080005 | +| time-step | 30 | +| y_out | -0.10904081 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2736729 | +| time-step | 31 | +| y_out | -0.03141955 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.27018654 | +| time-step | 32 | +| y_out | -0.10581304 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2687921 | +| time-step | 33 | +| y_out | -0.06341444 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.26593333 | +| time-step | 34 | +| y_out | 0.045539115 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.26198485 | +| time-step | 35 | +| y_out | -0.048909955 | +------------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.2605738 | +| time-step | 36 | +| y_out | 0.0534742 | +---------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.25747317 | +| time-step | 37 | +| y_out | -0.084831566 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.25592855 | +| time-step | 38 | +| y_out | -0.10834672 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.25625658 | +| time-step | 39 | +| y_out | -0.03102902 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +----------------------------------------------------------- +| perf/mse | 0.24967524 | +| time-step | 40 | +| y_out | 0.02746974 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2409862 | +| time-step | 41 | +| y_out | 0.020448007 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.23902924 | +| time-step | 42 | +| y_out | -0.048272196 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.23963729 | +| time-step | 43 | +| y_out | -0.013156783 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.23855102 | +| time-step | 44 | +| y_out | -0.1118365 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.23346658 | +| time-step | 45 | +| y_out | 0.021053031 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.22867557 | +| time-step | 46 | +| y_out | 0.033833794 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.22439222 | +| time-step | 47 | +| y_out | -0.013502828 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.21852723 | +| time-step | 48 | +| y_out | 0.055553257 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.21861239 | +| time-step | 49 | +| y_out | -0.059772808 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.21561305 | +| time-step | 50 | +| y_out | -0.05008673 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.21553454 | +| time-step | 51 | +| y_out | -0.053572692 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.21503648 | +| time-step | 52 | +| y_out | 0.0124488175 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.21054289 | +| time-step | 53 | +| y_out | 0.084663644 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.20429361 | +| time-step | 54 | +| y_out | 0.013787143 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.2013059 | +| time-step | 55 | +| y_out | 0.04534495 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19729407 | +| time-step | 56 | +| y_out | 0.035005704 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.19500044 | +| time-step | 57 | +| y_out | 0.07441234 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19030493 | +| time-step | 58 | +| y_out | -0.06444406 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.18369582 | +| time-step | 59 | +| y_out | 0.065821186 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +----------------------------------------------------------- +| perf/mse | 0.18220358 | +| time-step | 60 | +| y_out | 0.11941984 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.1825698 | +| time-step | 61 | +| y_out | 0.217374 | +---------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17879888 | +| time-step | 62 | +| y_out | 0.11610821 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.177703 | +| time-step | 63 | +| y_out | -0.11051995 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17994754 | +| time-step | 64 | +| y_out | 0.060198493 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.17712244 | +| time-step | 65 | +| y_out | -0.008350709 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.17622112 | +| time-step | 66 | +| y_out | -0.14892708 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.172757 | +| time-step | 67 | +| y_out | 0.059383616 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.17068549 | +| time-step | 68 | +| y_out | -0.045595337 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.17353849 | +| time-step | 69 | +| y_out | 0.044763714 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.17411649 | +| time-step | 70 | +| y_out | 0.10367422 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.16869567 | +| time-step | 71 | +| y_out | -0.073005036 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.16490106 | +| time-step | 72 | +| y_out | -0.15519685 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.16293886 | +| time-step | 73 | +| y_out | 0.04658693 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.15933776 | +| time-step | 74 | +| y_out | -0.0026289667 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15781987 | +| time-step | 75 | +| y_out | 0.009125866 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15998429 | +| time-step | 76 | +| y_out | 0.090858184 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15858783 | +| time-step | 77 | +| y_out | 0.055897456 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.1558363 | +| time-step | 78 | +| y_out | -0.006013179 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14932892 | +| time-step | 79 | +| y_out | 0.008336421 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +----------------------------------------------------------- +| perf/mse | 0.1454597 | +| time-step | 80 | +| y_out | 0.06488421 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14192283 | +| time-step | 81 | +| y_out | -0.15547666 | +------------------------------------------------------------ +---------------------------------------------------------- +| perf/mse | 0.141622 | +| time-step | 82 | +| y_out | 0.0321649 | +---------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.13555433 | +| time-step | 83 | +| y_out | -0.092173114 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1327245 | +| time-step | 84 | +| y_out | 0.029784244 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.13349934 | +| time-step | 85 | +| y_out | 0.020547299 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.12695877 | +| time-step | 86 | +| y_out | -0.043564305 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12617497 | +| time-step | 87 | +| y_out | 0.05373463 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12654239 | +| time-step | 88 | +| y_out | 0.034082748 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.124902084 | +| time-step | 89 | +| y_out | 0.021392135 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.12492652 | +| time-step | 90 | +| y_out | 0.00950554 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.1242015 | +| time-step | 91 | +| y_out | 0.09904311 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12388209 | +| time-step | 92 | +| y_out | 0.031926278 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.12582809 | +| time-step | 93 | +| y_out | 0.04071804 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12649883 | +| time-step | 94 | +| y_out | 0.0339303 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.12155074 | +| time-step | 95 | +| y_out | -0.0153811565 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12203358 | +| time-step | 96 | +| y_out | 0.022575766 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11893443 | +| time-step | 97 | +| y_out | 0.07947445 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.11564918 | +| time-step | 98 | +| y_out | 0.040852822 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11602974 | +| time-step | 99 | +| y_out | 0.025933117 | +------------------------------------------------------------ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..15cfdbb --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,-0.0046378504, +1,-0.019780923, +2,-0.0070655495, +3,0.0657551, +4,-0.034142777, +5,0.04903492, +6,0.04962659, +7,0.017461505, +8,0.04159434, +9,0.0042816475,0.29978654 +10,0.074249215,0.29667485 +11,0.0029530004,0.291982 +12,-0.05108078,0.28456914 +13,-0.043344524,0.2897091 +14,0.091172814,0.28548 +15,-0.020786721,0.28956905 +16,0.028366314,0.28326967 +17,0.086222485,0.2832108 +18,0.0075109825,0.2903796 +19,0.021292415,0.2924717 +20,-0.11340672,0.2852872 +21,-0.044309147,0.2838872 +22,0.067185596,0.2824472 +23,0.046435833,0.27756673 +24,-0.109382235,0.27773649 +25,0.09562312,0.2792964 +26,0.0029435847,0.28030592 +27,-0.013542404,0.2834482 +28,-0.036044773,0.28170207 +29,0.055070605,0.2687548 +30,-0.10904081,0.27080005 +31,-0.03141955,0.2736729 +32,-0.10581304,0.27018654 +33,-0.06341444,0.2687921 +34,0.045539115,0.26593333 +35,-0.048909955,0.26198485 +36,0.0534742,0.2605738 +37,-0.084831566,0.25747317 +38,-0.10834672,0.25592855 +39,-0.03102902,0.25625658 +40,0.02746974,0.24967524 +41,0.020448007,0.2409862 +42,-0.048272196,0.23902924 +43,-0.013156783,0.23963729 +44,-0.1118365,0.23855102 +45,0.021053031,0.23346658 +46,0.033833794,0.22867557 +47,-0.013502828,0.22439222 +48,0.055553257,0.21852723 +49,-0.059772808,0.21861239 +50,-0.05008673,0.21561305 +51,-0.053572692,0.21553454 +52,0.0124488175,0.21503648 +53,0.084663644,0.21054289 +54,0.013787143,0.20429361 +55,0.04534495,0.2013059 +56,0.035005704,0.19729407 +57,0.07441234,0.19500044 +58,-0.06444406,0.19030493 +59,0.065821186,0.18369582 +60,0.11941984,0.18220358 +61,0.217374,0.1825698 +62,0.11610821,0.17879888 +63,-0.11051995,0.177703 +64,0.060198493,0.17994754 +65,-0.008350709,0.17712244 +66,-0.14892708,0.17622112 +67,0.059383616,0.172757 +68,-0.045595337,0.17068549 +69,0.044763714,0.17353849 +70,0.10367422,0.17411649 +71,-0.073005036,0.16869567 +72,-0.15519685,0.16490106 +73,0.04658693,0.16293886 +74,-0.0026289667,0.15933776 +75,0.009125866,0.15781987 +76,0.090858184,0.15998429 +77,0.055897456,0.15858783 +78,-0.006013179,0.1558363 +79,0.008336421,0.14932892 +80,0.06488421,0.1454597 +81,-0.15547666,0.14192283 +82,0.0321649,0.141622 +83,-0.092173114,0.13555433 +84,0.029784244,0.1327245 +85,0.020547299,0.13349934 +86,-0.043564305,0.12695877 +87,0.05373463,0.12617497 +88,0.034082748,0.12654239 +89,0.021392135,0.124902084 +90,0.00950554,0.12492652 +91,0.09904311,0.1242015 +92,0.031926278,0.12388209 +93,0.04071804,0.12582809 +94,0.0339303,0.12649883 +95,-0.0153811565,0.12155074 +96,0.022575766,0.12203358 +97,0.07947445,0.11893443 +98,0.040852822,0.11564918 +99,0.025933117,0.11602974 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903910.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903910.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..d08cf5c Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903910.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..857ce54 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,10 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/ +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: False +k: REMOTE_SETTING, v: {'ftp_server': '', 'username': '', 'password': '', 'remote_log_root': '', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 14:38:55.598593 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-50-017170_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..11da6f3 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,502 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +------------------------------------------------------------ +| time-step | 0 | +| y_out | 0.057942018 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 1 | +| y_out | 0.009299394 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 2 | +| y_out | -0.06578922 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 3 | +| y_out | 0.033402458 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 4 | +| y_out | -0.008838907 | +------------------------------------------------------------- +------------------------------------------------------------- +| time-step | 5 | +| y_out | -0.019880205 | +------------------------------------------------------------- +---------------------------------------------------------- +| time-step | 6 | +| y_out | 0.0695615 | +---------------------------------------------------------- +------------------------------------------------------------ +| time-step | 7 | +| y_out | -0.15606663 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 8 | +| y_out | -0.120173976 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.29013506 | +| time-step | 9 | +| y_out | -0.09202558 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2898221 | +| time-step | 10 | +| y_out | -0.011703955 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.29263645 | +| time-step | 11 | +| y_out | 0.060920823 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.2994182 | +| time-step | 12 | +| y_out | 0.05944415 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.29352215 | +| time-step | 13 | +| y_out | -0.07763812 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.29221824 | +| time-step | 14 | +| y_out | 0.062170967 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.28828755 | +| time-step | 15 | +| y_out | 0.005492449 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.28035492 | +| time-step | 16 | +| y_out | -0.04847223 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.28646168 | +| time-step | 17 | +| y_out | 0.09182331 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.2871818 | +| time-step | 18 | +| y_out | -0.0064124763 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.29379267 | +| time-step | 19 | +| y_out | 0.07605833 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +------------------------------------------------------------ +| perf/mse | 0.28982177 | +| time-step | 20 | +| y_out | 0.039001852 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2831092 | +| time-step | 21 | +| y_out | 0.052194037 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.27635688 | +| time-step | 22 | +| y_out | -0.01785094 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.27692428 | +| time-step | 23 | +| y_out | -0.036689077 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.27918747 | +| time-step | 24 | +| y_out | -0.06535956 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.27827042 | +| time-step | 25 | +| y_out | -0.08896898 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2757553 | +| time-step | 26 | +| y_out | -0.011511827 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.26713935 | +| time-step | 27 | +| y_out | -0.08342426 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.26379174 | +| time-step | 28 | +| y_out | -0.10034735 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.255338 | +| time-step | 29 | +| y_out | 0.045106143 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.25280485 | +| time-step | 30 | +| y_out | 0.02738909 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24792795 | +| time-step | 31 | +| y_out | 0.028256068 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.24373856 | +| time-step | 32 | +| y_out | -0.08389827 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23841174 | +| time-step | 33 | +| y_out | -0.08655572 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.228147 | +| time-step | 34 | +| y_out | 0.045826375 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.22488031 | +| time-step | 35 | +| y_out | -0.05299262 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.22154784 | +| time-step | 36 | +| y_out | -0.045899488 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.22064455 | +| time-step | 37 | +| y_out | 0.091645986 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.21981803 | +| time-step | 38 | +| y_out | -0.0012162775 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.22147079 | +| time-step | 39 | +| y_out | -0.0020208508 | +-------------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +----------------------------------------------------------- +| perf/mse | 0.22047107 | +| time-step | 40 | +| y_out | 0.12591708 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21899696 | +| time-step | 41 | +| y_out | 0.06925544 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.2210439 | +| time-step | 42 | +| y_out | -0.0070464527 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21959372 | +| time-step | 43 | +| y_out | 0.04973857 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.21936026 | +| time-step | 44 | +| y_out | 0.0725247 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.21597585 | +| time-step | 45 | +| y_out | -0.08740508 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.21786436 | +| time-step | 46 | +| y_out | 0.032536753 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.21506211 | +| time-step | 47 | +| y_out | -0.018441036 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20968458 | +| time-step | 48 | +| y_out | 0.01401718 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.2043614 | +| time-step | 49 | +| y_out | -0.001424443 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.20206785 | +| time-step | 50 | +| y_out | 0.093531415 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.19606623 | +| time-step | 51 | +| y_out | -0.049265433 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.19042379 | +| time-step | 52 | +| y_out | -0.068183996 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19138004 | +| time-step | 53 | +| y_out | 0.08574159 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18789084 | +| time-step | 54 | +| y_out | 0.051714674 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.19176857 | +| time-step | 55 | +| y_out | 0.08073051 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19088508 | +| time-step | 56 | +| y_out | 0.04505066 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.18906093 | +| time-step | 57 | +| y_out | -0.035414148 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18482353 | +| time-step | 58 | +| y_out | 0.061528713 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.18541625 | +| time-step | 59 | +| y_out | 0.04952935 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +------------------------------------------------------------- +| perf/mse | 0.18640448 | +| time-step | 60 | +| y_out | -0.025017155 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18628386 | +| time-step | 61 | +| y_out | 0.014099959 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.18729475 | +| time-step | 62 | +| y_out | 0.10357347 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.18219523 | +| time-step | 63 | +| y_out | -0.031111814 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17747343 | +| time-step | 64 | +| y_out | 0.03368728 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.16973583 | +| time-step | 65 | +| y_out | -0.06781593 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.16947493 | +| time-step | 66 | +| y_out | 0.06488516 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16342677 | +| time-step | 67 | +| y_out | 0.07582743 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1654574 | +| time-step | 68 | +| y_out | 0.121700674 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.16094437 | +| time-step | 69 | +| y_out | -0.005937267 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.15429744 | +| time-step | 70 | +| y_out | -0.0047529433 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15381148 | +| time-step | 71 | +| y_out | 0.085287094 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15143766 | +| time-step | 72 | +| y_out | 0.054112375 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.14919044 | +| time-step | 73 | +| y_out | -0.05339911 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.1462567 | +| time-step | 74 | +| y_out | -0.026360363 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14412466 | +| time-step | 75 | +| y_out | 0.008482582 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.13650522 | +| time-step | 76 | +| y_out | 0.034575976 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.13743336 | +| time-step | 77 | +| y_out | -0.104855455 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13176571 | +| time-step | 78 | +| y_out | -0.04841756 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.13497354 | +| time-step | 79 | +| y_out | 0.12414725 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +----------------------------------------------------------- +| perf/mse | 0.1362513 | +| time-step | 80 | +| y_out | 0.05217046 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13253215 | +| time-step | 81 | +| y_out | 0.047094554 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.12771477 | +| time-step | 82 | +| y_out | 0.0010832641 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.1263187 | +| time-step | 83 | +| y_out | 0.12661284 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.1275441 | +| time-step | 84 | +| y_out | -0.0670744 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12602034 | +| time-step | 85 | +| y_out | -0.0892787 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12460587 | +| time-step | 86 | +| y_out | 0.1963427 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12172502 | +| time-step | 87 | +| y_out | -0.08841949 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11772132 | +| time-step | 88 | +| y_out | -0.08645722 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.110573865 | +| time-step | 89 | +| y_out | -0.03570364 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.10658022 | +| time-step | 90 | +| y_out | -0.003956847 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.104933955 | +| time-step | 91 | +| y_out | 0.16213527 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.10195045 | +| time-step | 92 | +| y_out | -0.053512476 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.100434124 | +| time-step | 93 | +| y_out | -0.04065678 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.09605147 | +| time-step | 94 | +| y_out | -0.07144512 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.09713894 | +| time-step | 95 | +| y_out | -0.04366717 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.09636678 | +| time-step | 96 | +| y_out | 0.0022101104 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.09568291 | +| time-step | 97 | +| y_out | 0.060549203 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.09589204 | +| time-step | 98 | +| y_out | -0.015122104 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.093296304 | +| time-step | 99 | +| y_out | 0.03837713 | +------------------------------------------------------------ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..c4bba46 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,0.057942018, +1,0.009299394, +2,-0.06578922, +3,0.033402458, +4,-0.008838907, +5,-0.019880205, +6,0.0695615, +7,-0.15606663, +8,-0.120173976, +9,-0.09202558,0.29013506 +10,-0.011703955,0.2898221 +11,0.060920823,0.29263645 +12,0.05944415,0.2994182 +13,-0.07763812,0.29352215 +14,0.062170967,0.29221824 +15,0.005492449,0.28828755 +16,-0.04847223,0.28035492 +17,0.09182331,0.28646168 +18,-0.0064124763,0.2871818 +19,0.07605833,0.29379267 +20,0.039001852,0.28982177 +21,0.052194037,0.2831092 +22,-0.01785094,0.27635688 +23,-0.036689077,0.27692428 +24,-0.06535956,0.27918747 +25,-0.08896898,0.27827042 +26,-0.011511827,0.2757553 +27,-0.08342426,0.26713935 +28,-0.10034735,0.26379174 +29,0.045106143,0.255338 +30,0.02738909,0.25280485 +31,0.028256068,0.24792795 +32,-0.08389827,0.24373856 +33,-0.08655572,0.23841174 +34,0.045826375,0.228147 +35,-0.05299262,0.22488031 +36,-0.045899488,0.22154784 +37,0.091645986,0.22064455 +38,-0.0012162775,0.21981803 +39,-0.0020208508,0.22147079 +40,0.12591708,0.22047107 +41,0.06925544,0.21899696 +42,-0.0070464527,0.2210439 +43,0.04973857,0.21959372 +44,0.0725247,0.21936026 +45,-0.08740508,0.21597585 +46,0.032536753,0.21786436 +47,-0.018441036,0.21506211 +48,0.01401718,0.20968458 +49,-0.001424443,0.2043614 +50,0.093531415,0.20206785 +51,-0.049265433,0.19606623 +52,-0.068183996,0.19042379 +53,0.08574159,0.19138004 +54,0.051714674,0.18789084 +55,0.08073051,0.19176857 +56,0.04505066,0.19088508 +57,-0.035414148,0.18906093 +58,0.061528713,0.18482353 +59,0.04952935,0.18541625 +60,-0.025017155,0.18640448 +61,0.014099959,0.18628386 +62,0.10357347,0.18729475 +63,-0.031111814,0.18219523 +64,0.03368728,0.17747343 +65,-0.06781593,0.16973583 +66,0.06488516,0.16947493 +67,0.07582743,0.16342677 +68,0.121700674,0.1654574 +69,-0.005937267,0.16094437 +70,-0.0047529433,0.15429744 +71,0.085287094,0.15381148 +72,0.054112375,0.15143766 +73,-0.05339911,0.14919044 +74,-0.026360363,0.1462567 +75,0.008482582,0.14412466 +76,0.034575976,0.13650522 +77,-0.104855455,0.13743336 +78,-0.04841756,0.13176571 +79,0.12414725,0.13497354 +80,0.05217046,0.1362513 +81,0.047094554,0.13253215 +82,0.0010832641,0.12771477 +83,0.12661284,0.1263187 +84,-0.0670744,0.1275441 +85,-0.0892787,0.12602034 +86,0.1963427,0.12460587 +87,-0.08841949,0.12172502 +88,-0.08645722,0.11772132 +89,-0.03570364,0.110573865 +90,-0.003956847,0.10658022 +91,0.16213527,0.104933955 +92,-0.053512476,0.10195045 +93,-0.04065678,0.100434124 +94,-0.07144512,0.09605147 +95,-0.04366717,0.09713894 +96,0.0022101104,0.09636678 +97,0.060549203,0.09568291 +98,-0.015122104,0.09589204 +99,0.03837713,0.093296304 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903935.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903935.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..ff9d4eb Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658903935.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..21624e4 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-40-00-059094_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..3c584da --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,16 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: False +k: REMOTE_SETTING, v: {'ftp_server': '', 'username': '', 'password': '', 'remote_log_root': '', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 14:44:46.961910 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904286.MBP-C02ZL0TNLVCF-2243.local.39594.0.v2 b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904286.MBP-C02ZL0TNLVCF-2243.local.39594.0.v2 new file mode 100644 index 0000000..94bded7 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904286.MBP-C02ZL0TNLVCF-2243.local.39594.0.v2 differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-38-762656_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..559c7f3 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,502 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +------------------------------------------------------------ +| time-step | 0 | +| y_out | 0.022702988 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 1 | +| y_out | -0.017002156 | +------------------------------------------------------------- +---------------------------------------------------------- +| time-step | 2 | +| y_out | 0.1148881 | +---------------------------------------------------------- +------------------------------------------------------------ +| time-step | 3 | +| y_out | 0.018713145 | +------------------------------------------------------------ +----------------------------------------------------------- +| time-step | 4 | +| y_out | 0.10800394 | +----------------------------------------------------------- +----------------------------------------------------------- +| time-step | 5 | +| y_out | 0.13352066 | +----------------------------------------------------------- +----------------------------------------------------------- +| time-step | 6 | +| y_out | 0.09261498 | +----------------------------------------------------------- +------------------------------------------------------------ +| time-step | 7 | +| y_out | 0.070487976 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 8 | +| y_out | 0.0034726262 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.20676251 | +| time-step | 9 | +| y_out | -0.024782188 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.20375006 | +| time-step | 10 | +| y_out | 0.012341602 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2003847 | +| time-step | 11 | +| y_out | 0.118284464 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19646353 | +| time-step | 12 | +| y_out | -0.12245024 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.19765395 | +| time-step | 13 | +| y_out | -0.028663557 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.1914563 | +| time-step | 14 | +| y_out | 0.06015191 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.19105707 | +| time-step | 15 | +| y_out | -0.023616312 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.18889634 | +| time-step | 16 | +| y_out | -0.053860288 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18714097 | +| time-step | 17 | +| y_out | 0.042223383 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.18335158 | +| time-step | 18 | +| y_out | -0.09224718 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.18203624 | +| time-step | 19 | +| y_out | 0.05748921 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +----------------------------------------------------------- +| perf/mse | 0.17891905 | +| time-step | 20 | +| y_out | 0.07090413 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.17500168 | +| time-step | 21 | +| y_out | 0.058406778 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.1732279 | +| time-step | 22 | +| y_out | -0.0425646 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.17345682 | +| time-step | 23 | +| y_out | -0.084708735 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1719772 | +| time-step | 24 | +| y_out | 0.012224443 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17263499 | +| time-step | 25 | +| y_out | -0.15004756 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.17019968 | +| time-step | 26 | +| y_out | -0.0041401098 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16950327 | +| time-step | 27 | +| y_out | 0.04353801 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17004529 | +| time-step | 28 | +| y_out | 0.08072722 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.17395177 | +| time-step | 29 | +| y_out | -0.21787646 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17608349 | +| time-step | 30 | +| y_out | 0.064083666 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.17232533 | +| time-step | 31 | +| y_out | 0.0520883 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1712596 | +| time-step | 32 | +| y_out | -0.04616505 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.16554484 | +| time-step | 33 | +| y_out | 0.13314453 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16521707 | +| time-step | 34 | +| y_out | 0.08606917 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.16352694 | +| time-step | 35 | +| y_out | 0.019153027 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.16038877 | +| time-step | 36 | +| y_out | -6.889086e-05 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15991873 | +| time-step | 37 | +| y_out | 0.076216206 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15920115 | +| time-step | 38 | +| y_out | 0.016891625 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.15079188 | +| time-step | 39 | +| y_out | 0.10500196 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +------------------------------------------------------------ +| perf/mse | 0.14485654 | +| time-step | 40 | +| y_out | 0.028267363 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.14569023 | +| time-step | 41 | +| y_out | -0.027418725 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14208612 | +| time-step | 42 | +| y_out | 0.016029691 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.14089325 | +| time-step | 43 | +| y_out | -0.07110735 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.13935316 | +| time-step | 44 | +| y_out | 0.04972038 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13481855 | +| time-step | 45 | +| y_out | -0.15003915 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.1314193 | +| time-step | 46 | +| y_out | -0.014611766 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12870397 | +| time-step | 47 | +| y_out | -0.03103176 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.1261075 | +| time-step | 48 | +| y_out | -0.12114393 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.12520637 | +| time-step | 49 | +| y_out | 0.08632986 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12521854 | +| time-step | 50 | +| y_out | 0.07628282 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.12212239 | +| time-step | 51 | +| y_out | -0.019916533 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.123067 | +| time-step | 52 | +| y_out | -0.10336205 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.12052349 | +| time-step | 53 | +| y_out | 0.04098618 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.118042566 | +| time-step | 54 | +| y_out | 0.01792001 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11405585 | +| time-step | 55 | +| y_out | 0.020878412 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.111297965 | +| time-step | 56 | +| y_out | -0.046118136 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.11107669 | +| time-step | 57 | +| y_out | -0.017437482 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.10915808 | +| time-step | 58 | +| y_out | -0.10367048 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.1103778 | +| time-step | 59 | +| y_out | -0.08319569 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +------------------------------------------------------------- +| perf/mse | 0.10846764 | +| time-step | 60 | +| y_out | -0.033527665 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10446519 | +| time-step | 61 | +| y_out | 0.06583307 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.09865031 | +| time-step | 62 | +| y_out | -0.010796258 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.09804019 | +| time-step | 63 | +| y_out | 0.054541998 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.09606486 | +| time-step | 64 | +| y_out | 0.083635025 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.096160606 | +| time-step | 65 | +| y_out | 0.06393112 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09645395 | +| time-step | 66 | +| y_out | 0.09685686 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.09096019 | +| time-step | 67 | +| y_out | -0.008387884 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.087977275 | +| time-step | 68 | +| y_out | -0.1556329 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.08417563 | +| time-step | 69 | +| y_out | -0.09474763 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.085185975 | +| time-step | 70 | +| y_out | 0.044771932 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.08570555 | +| time-step | 71 | +| y_out | 0.02919146 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.084778085 | +| time-step | 72 | +| y_out | 0.062552735 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.08186426 | +| time-step | 73 | +| y_out | -0.097900376 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08081846 | +| time-step | 74 | +| y_out | 0.09257191 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.07957893 | +| time-step | 75 | +| y_out | -0.06687015 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07718705 | +| time-step | 76 | +| y_out | 0.022992369 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.07890172 | +| time-step | 77 | +| y_out | -0.008510668 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.078078024 | +| time-step | 78 | +| y_out | -0.044981137 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07850899 | +| time-step | 79 | +| y_out | 0.15110594 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +------------------------------------------------------------- +| perf/mse | 0.07451498 | +| time-step | 80 | +| y_out | -0.049430612 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.072332494 | +| time-step | 81 | +| y_out | 0.07478216 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07137644 | +| time-step | 82 | +| y_out | 0.037567277 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.068764076 | +| time-step | 83 | +| y_out | -0.0051398575 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.06762849 | +| time-step | 84 | +| y_out | 0.03978119 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.06610838 | +| time-step | 85 | +| y_out | -0.031301286 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.06517443 | +| time-step | 86 | +| y_out | 0.046843477 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.062757954 | +| time-step | 87 | +| y_out | 0.06524126 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.058896147 | +| time-step | 88 | +| y_out | -0.013494093 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.055766176 | +| time-step | 89 | +| y_out | 0.1054272 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.05380221 | +| time-step | 90 | +| y_out | -0.06561792 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.052687712 | +| time-step | 91 | +| y_out | -0.14812239 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.054115422 | +| time-step | 92 | +| y_out | 0.051594034 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.056054078 | +| time-step | 93 | +| y_out | -0.03900086 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.055606402 | +| time-step | 94 | +| y_out | 0.052066028 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05311832 | +| time-step | 95 | +| y_out | 0.12179959 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.051549785 | +| time-step | 96 | +| y_out | 0.009877209 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.051778566 | +| time-step | 97 | +| y_out | 0.01264851 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.05244437 | +| time-step | 98 | +| y_out | 0.012708332 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.05188657 | +| time-step | 99 | +| y_out | 0.10608245 | +----------------------------------------------------------- diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..d69dc89 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,0.022702988, +1,-0.017002156, +2,0.1148881, +3,0.018713145, +4,0.10800394, +5,0.13352066, +6,0.09261498, +7,0.070487976, +8,0.0034726262, +9,-0.024782188,0.20676251 +10,0.012341602,0.20375006 +11,0.118284464,0.2003847 +12,-0.12245024,0.19646353 +13,-0.028663557,0.19765395 +14,0.06015191,0.1914563 +15,-0.023616312,0.19105707 +16,-0.053860288,0.18889634 +17,0.042223383,0.18714097 +18,-0.09224718,0.18335158 +19,0.05748921,0.18203624 +20,0.07090413,0.17891905 +21,0.058406778,0.17500168 +22,-0.0425646,0.1732279 +23,-0.084708735,0.17345682 +24,0.012224443,0.1719772 +25,-0.15004756,0.17263499 +26,-0.0041401098,0.17019968 +27,0.04353801,0.16950327 +28,0.08072722,0.17004529 +29,-0.21787646,0.17395177 +30,0.064083666,0.17608349 +31,0.0520883,0.17232533 +32,-0.04616505,0.1712596 +33,0.13314453,0.16554484 +34,0.08606917,0.16521707 +35,0.019153027,0.16352694 +36,-6.889086e-05,0.16038877 +37,0.076216206,0.15991873 +38,0.016891625,0.15920115 +39,0.10500196,0.15079188 +40,0.028267363,0.14485654 +41,-0.027418725,0.14569023 +42,0.016029691,0.14208612 +43,-0.07110735,0.14089325 +44,0.04972038,0.13935316 +45,-0.15003915,0.13481855 +46,-0.014611766,0.1314193 +47,-0.03103176,0.12870397 +48,-0.12114393,0.1261075 +49,0.08632986,0.12520637 +50,0.07628282,0.12521854 +51,-0.019916533,0.12212239 +52,-0.10336205,0.123067 +53,0.04098618,0.12052349 +54,0.01792001,0.118042566 +55,0.020878412,0.11405585 +56,-0.046118136,0.111297965 +57,-0.017437482,0.11107669 +58,-0.10367048,0.10915808 +59,-0.08319569,0.1103778 +60,-0.033527665,0.10846764 +61,0.06583307,0.10446519 +62,-0.010796258,0.09865031 +63,0.054541998,0.09804019 +64,0.083635025,0.09606486 +65,0.06393112,0.096160606 +66,0.09685686,0.09645395 +67,-0.008387884,0.09096019 +68,-0.1556329,0.087977275 +69,-0.09474763,0.08417563 +70,0.044771932,0.085185975 +71,0.02919146,0.08570555 +72,0.062552735,0.084778085 +73,-0.097900376,0.08186426 +74,0.09257191,0.08081846 +75,-0.06687015,0.07957893 +76,0.022992369,0.07718705 +77,-0.008510668,0.07890172 +78,-0.044981137,0.078078024 +79,0.15110594,0.07850899 +80,-0.049430612,0.07451498 +81,0.07478216,0.072332494 +82,0.037567277,0.07137644 +83,-0.0051398575,0.068764076 +84,0.03978119,0.06762849 +85,-0.031301286,0.06610838 +86,0.046843477,0.06517443 +87,0.06524126,0.062757954 +88,-0.013494093,0.058896147 +89,0.1054272,0.055766176 +90,-0.06561792,0.05380221 +91,-0.14812239,0.052687712 +92,0.051594034,0.054115422 +93,-0.03900086,0.056054078 +94,0.052066028,0.055606402 +95,0.12179959,0.05311832 +96,0.009877209,0.051549785 +97,0.01264851,0.051778566 +98,0.012708332,0.05244437 +99,0.10608245,0.05188657 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904286.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904286.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..66e3af1 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904286.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..b6d9b74 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,13 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +-------------------------------------------------- +| i | 0 | +| time-step | 0 | +-------------------------------------------------- +[WARN] 0 : sync: start +[WARN] 0 : the parameter remote_log_root will be renamed to remote_data_root in future versions. diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..16ef5df --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/progress.csv @@ -0,0 +1,2 @@ +i,time-step +0,0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904340.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904340.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..cd0a61f Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904340.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..77db1a0 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-40-466622_172.16.0.33_&input_size=16/warn.txt @@ -0,0 +1,2 @@ +[WARN] 0 : sync: start +[WARN] 0 : the parameter remote_log_root will be renamed to remote_data_root in future versions. diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..01a8404 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,16 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: False +k: REMOTE_SETTING, v: {'ftp_server': '', 'username': '', 'password': '', 'remote_log_root': '', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 14:46:01.405349 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904361.MBP-C02ZL0TNLVCF-2243.local.39725.0.v2 b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904361.MBP-C02ZL0TNLVCF-2243.local.39725.0.v2 new file mode 100644 index 0000000..dcc33e6 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904361.MBP-C02ZL0TNLVCF-2243.local.39725.0.v2 differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-45-56-371202_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..9beb172 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,511 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +------------------------------------------------------------ +| time-step | 0 | +| y_out | -0.14560433 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 1 | +| y_out | -0.06513713 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 2 | +| y_out | -0.020630244 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 3 | +| y_out | 0.009697197 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 4 | +| y_out | 0.018683396 | +------------------------------------------------------------ +----------------------------------------------------------- +| time-step | 5 | +| y_out | 0.01694471 | +----------------------------------------------------------- +----------------------------------------------------------- +| time-step | 6 | +| y_out | 0.10436954 | +----------------------------------------------------------- +------------------------------------------------------------- +| time-step | 7 | +| y_out | 0.0029534735 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 8 | +| y_out | 0.016307706 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.26573965 | +| time-step | 9 | +| y_out | -0.039751224 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.26299697 | +| time-step | 10 | +| y_out | -0.065591924 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2585093 | +| time-step | 11 | +| y_out | -0.07492362 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2539196 | +| time-step | 12 | +| y_out | -0.054703172 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.25131482 | +| time-step | 13 | +| y_out | -0.05829399 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.24880612 | +| time-step | 14 | +| y_out | -0.0073772892 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.25248024 | +| time-step | 15 | +| y_out | 0.056837097 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2502787 | +| time-step | 16 | +| y_out | 0.0038454086 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24302766 | +| time-step | 17 | +| y_out | 0.034673154 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.24251525 | +| time-step | 18 | +| y_out | -0.05066319 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.23768063 | +| time-step | 19 | +| y_out | 0.06751132 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +------------------------------------------------------------ +| perf/mse | 0.2322143 | +| time-step | 20 | +| y_out | -0.10808982 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.23440254 | +| time-step | 21 | +| y_out | -0.010165557 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.23532894 | +| time-step | 22 | +| y_out | -0.07003514 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23636031 | +| time-step | 23 | +| y_out | -0.04393044 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23357837 | +| time-step | 24 | +| y_out | 0.037063956 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23239155 | +| time-step | 25 | +| y_out | -0.14662828 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23086023 | +| time-step | 26 | +| y_out | -0.03174086 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2264603 | +| time-step | 27 | +| y_out | -0.031023547 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.22046311 | +| time-step | 28 | +| y_out | 0.025960289 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.22382681 | +| time-step | 29 | +| y_out | -0.10698375 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.22345302 | +| time-step | 30 | +| y_out | 0.03662747 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.21883062 | +| time-step | 31 | +| y_out | -0.054751053 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.21273652 | +| time-step | 32 | +| y_out | 0.042267404 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.20519054 | +| time-step | 33 | +| y_out | 0.037221737 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.20252283 | +| time-step | 34 | +| y_out | 0.027008403 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.19748199 | +| time-step | 35 | +| y_out | -0.002801055 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.19469586 | +| time-step | 36 | +| y_out | -0.061698377 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19168518 | +| time-step | 37 | +| y_out | 0.032713074 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.19114956 | +| time-step | 38 | +| y_out | -0.027035635 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18508749 | +| time-step | 39 | +| y_out | 0.09596521 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +------------------------------------------------------------ +| perf/mse | 0.18348403 | +| time-step | 40 | +| y_out | 0.025767457 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.178829 | +| time-step | 41 | +| y_out | 0.014633112 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.17531537 | +| time-step | 42 | +| y_out | 0.03203115 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.17724416 | +| time-step | 43 | +| y_out | -0.043964066 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17674805 | +| time-step | 44 | +| y_out | 0.1065344 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.17139146 | +| time-step | 45 | +| y_out | 0.061935496 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.16945615 | +| time-step | 46 | +| y_out | 0.06501904 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.16876878 | +| time-step | 47 | +| y_out | 0.036367737 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16242824 | +| time-step | 48 | +| y_out | -0.09388182 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.15941323 | +| time-step | 49 | +| y_out | 0.0013054162 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15589613 | +| time-step | 50 | +| y_out | 0.011224348 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15289064 | +| time-step | 51 | +| y_out | -0.06552475 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.15140213 | +| time-step | 52 | +| y_out | 0.05927827 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14266331 | +| time-step | 53 | +| y_out | 0.013135757 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.13926843 | +| time-step | 54 | +| y_out | -0.026005328 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.14169517 | +| time-step | 55 | +| y_out | -0.094185084 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14027698 | +| time-step | 56 | +| y_out | 0.060039893 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.13522825 | +| time-step | 57 | +| y_out | 0.012769325 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.1333472 | +| time-step | 58 | +| y_out | 0.12772134 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.13342555 | +| time-step | 59 | +| y_out | -0.075296305 | +------------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +----------------------------------------------------------- +| perf/mse | 0.13236885 | +| time-step | 60 | +| y_out | -0.1206451 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13189691 | +| time-step | 61 | +| y_out | -0.02815953 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.12892446 | +| time-step | 62 | +| y_out | -0.04399247 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.13164395 | +| time-step | 63 | +| y_out | -0.1469033 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.13043508 | +| time-step | 64 | +| y_out | -0.041740436 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.124947295 | +| time-step | 65 | +| y_out | 0.141908 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.1222829 | +| time-step | 66 | +| y_out | 0.0065501556 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12409185 | +| time-step | 67 | +| y_out | -0.06010112 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.12458752 | +| time-step | 68 | +| y_out | -0.004864428 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.118024305 | +| time-step | 69 | +| y_out | 0.021233585 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.115845405 | +| time-step | 70 | +| y_out | 0.04736811 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11290319 | +| time-step | 71 | +| y_out | 0.026037628 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.10960686 | +| time-step | 72 | +| y_out | 0.039905317 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.104767516 | +| time-step | 73 | +| y_out | 0.010208586 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.10277714 | +| time-step | 74 | +| y_out | -0.008163075 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.100914575 | +| time-step | 75 | +| y_out | 0.15072459 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.10058073 | +| time-step | 76 | +| y_out | -0.02368601 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.094629936 | +| time-step | 77 | +| y_out | 0.026960704 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09073193 | +| time-step | 78 | +| y_out | 0.04082627 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.09014411 | +| time-step | 79 | +| y_out | 0.043506704 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +------------------------------------------------------------ +| perf/mse | 0.08719848 | +| time-step | 80 | +| y_out | 0.038850956 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.08484467 | +| time-step | 81 | +| y_out | -0.0040936954 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.08477596 | +| time-step | 82 | +| y_out | 0.04790334 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.08448784 | +| time-step | 83 | +| y_out | -0.08591205 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.08184661 | +| time-step | 84 | +| y_out | 0.060198396 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0796378 | +| time-step | 85 | +| y_out | 0.008845447 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0783357 | +| time-step | 86 | +| y_out | -0.15774322 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.07943835 | +| time-step | 87 | +| y_out | -0.067813955 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07779012 | +| time-step | 88 | +| y_out | 0.02911041 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0758128 | +| time-step | 89 | +| y_out | -0.072832644 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.07405873 | +| time-step | 90 | +| y_out | -0.061000407 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0732895 | +| time-step | 91 | +| y_out | -0.039173678 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.07300567 | +| time-step | 92 | +| y_out | -0.10083674 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0707062 | +| time-step | 93 | +| y_out | 0.037584472 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.07243727 | +| time-step | 94 | +| y_out | 0.073597886 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.07179787 | +| time-step | 95 | +| y_out | -0.0006955154 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.06948742 | +| time-step | 96 | +| y_out | 0.0065700375 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.06859206 | +| time-step | 97 | +| y_out | -0.058376383 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.06718151 | +| time-step | 98 | +| y_out | -0.019329743 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.0675487 | +| time-step | 99 | +| y_out | -0.14970846 | +------------------------------------------------------------ +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: True +k: REMOTE_SETTING, v: {'ftp_server': '127.0.0.1', 'username': 'hadoop-peisongpa', 'password': 'wangli78', 'remote_log_root': '/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 14:46:03.816155 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..44e893e --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,-0.14560433, +1,-0.06513713, +2,-0.020630244, +3,0.009697197, +4,0.018683396, +5,0.01694471, +6,0.10436954, +7,0.0029534735, +8,0.016307706, +9,-0.039751224,0.26573965 +10,-0.065591924,0.26299697 +11,-0.07492362,0.2585093 +12,-0.054703172,0.2539196 +13,-0.05829399,0.25131482 +14,-0.0073772892,0.24880612 +15,0.056837097,0.25248024 +16,0.0038454086,0.2502787 +17,0.034673154,0.24302766 +18,-0.05066319,0.24251525 +19,0.06751132,0.23768063 +20,-0.10808982,0.2322143 +21,-0.010165557,0.23440254 +22,-0.07003514,0.23532894 +23,-0.04393044,0.23636031 +24,0.037063956,0.23357837 +25,-0.14662828,0.23239155 +26,-0.03174086,0.23086023 +27,-0.031023547,0.2264603 +28,0.025960289,0.22046311 +29,-0.10698375,0.22382681 +30,0.03662747,0.22345302 +31,-0.054751053,0.21883062 +32,0.042267404,0.21273652 +33,0.037221737,0.20519054 +34,0.027008403,0.20252283 +35,-0.002801055,0.19748199 +36,-0.061698377,0.19469586 +37,0.032713074,0.19168518 +38,-0.027035635,0.19114956 +39,0.09596521,0.18508749 +40,0.025767457,0.18348403 +41,0.014633112,0.178829 +42,0.03203115,0.17531537 +43,-0.043964066,0.17724416 +44,0.1065344,0.17674805 +45,0.061935496,0.17139146 +46,0.06501904,0.16945615 +47,0.036367737,0.16876878 +48,-0.09388182,0.16242824 +49,0.0013054162,0.15941323 +50,0.011224348,0.15589613 +51,-0.06552475,0.15289064 +52,0.05927827,0.15140213 +53,0.013135757,0.14266331 +54,-0.026005328,0.13926843 +55,-0.094185084,0.14169517 +56,0.060039893,0.14027698 +57,0.012769325,0.13522825 +58,0.12772134,0.1333472 +59,-0.075296305,0.13342555 +60,-0.1206451,0.13236885 +61,-0.02815953,0.13189691 +62,-0.04399247,0.12892446 +63,-0.1469033,0.13164395 +64,-0.041740436,0.13043508 +65,0.141908,0.124947295 +66,0.0065501556,0.1222829 +67,-0.06010112,0.12409185 +68,-0.004864428,0.12458752 +69,0.021233585,0.118024305 +70,0.04736811,0.115845405 +71,0.026037628,0.11290319 +72,0.039905317,0.10960686 +73,0.010208586,0.104767516 +74,-0.008163075,0.10277714 +75,0.15072459,0.100914575 +76,-0.02368601,0.10058073 +77,0.026960704,0.094629936 +78,0.04082627,0.09073193 +79,0.043506704,0.09014411 +80,0.038850956,0.08719848 +81,-0.0040936954,0.08484467 +82,0.04790334,0.08477596 +83,-0.08591205,0.08448784 +84,0.060198396,0.08184661 +85,0.008845447,0.0796378 +86,-0.15774322,0.0783357 +87,-0.067813955,0.07943835 +88,0.02911041,0.07779012 +89,-0.072832644,0.0758128 +90,-0.061000407,0.07405873 +91,-0.039173678,0.0732895 +92,-0.10083674,0.07300567 +93,0.037584472,0.0707062 +94,0.073597886,0.07243727 +95,-0.0006955154,0.07179787 +96,0.0065700375,0.06948742 +97,-0.058376383,0.06859206 +98,-0.019329743,0.06718151 +99,-0.14970846,0.0675487 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904361.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904361.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..6be0bc0 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904361.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..844e362 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..f956b78 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt @@ -0,0 +1,13 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 +-------------------------------------------------- +| i | 0 | +| time-step | 0 | +-------------------------------------------------- +[WARN] 0 : sync: start +[WARN] 0 : the parameter remote_log_root will be renamed to remote_data_root in future versions. diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..16ef5df --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv @@ -0,0 +1,2 @@ +i,time-step +0,0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904363.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904363.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..64c1bcd Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904363.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..77db1a0 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-46-03-816155_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt @@ -0,0 +1,2 @@ +[WARN] 0 : sync: start +[WARN] 0 : the parameter remote_log_root will be renamed to remote_data_root in future versions. diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..bdb6762 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,16 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: False +k: REMOTE_SETTING, v: {'ftp_server': '', 'username': '', 'password': '', 'remote_log_root': '', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 14:47:54.184710 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904473.MBP-C02ZL0TNLVCF-2243.local.39903.0.v2 b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904473.MBP-C02ZL0TNLVCF-2243.local.39903.0.v2 new file mode 100644 index 0000000..620b497 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904473.MBP-C02ZL0TNLVCF-2243.local.39903.0.v2 differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-49-100905_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..9f7e15e --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,511 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +------------------------------------------------------------ +| time-step | 0 | +| y_out | -0.03820775 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 1 | +| y_out | 0.040611096 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 2 | +| y_out | 0.025441056 | +------------------------------------------------------------ +----------------------------------------------------------- +| time-step | 3 | +| y_out | 0.16058132 | +----------------------------------------------------------- +------------------------------------------------------------- +| time-step | 4 | +| y_out | -0.016598545 | +------------------------------------------------------------- +----------------------------------------------------------- +| time-step | 5 | +| y_out | 0.07641238 | +----------------------------------------------------------- +------------------------------------------------------------ +| time-step | 6 | +| y_out | -0.07551894 | +------------------------------------------------------------ +----------------------------------------------------------- +| time-step | 7 | +| y_out | 0.03351134 | +----------------------------------------------------------- +------------------------------------------------------------- +| time-step | 8 | +| y_out | -0.041779466 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.28662068 | +| time-step | 9 | +| y_out | -0.079788834 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2785755 | +| time-step | 10 | +| y_out | 0.019240221 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.27527714 | +| time-step | 11 | +| y_out | -0.02260659 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.27194336 | +| time-step | 12 | +| y_out | -0.030526614 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.2717179 | +| time-step | 13 | +| y_out | 0.17291255 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.27107912 | +| time-step | 14 | +| y_out | -0.050088823 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.26555118 | +| time-step | 15 | +| y_out | -0.04610773 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.26614523 | +| time-step | 16 | +| y_out | 0.055066578 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2642731 | +| time-step | 17 | +| y_out | -0.042952653 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.26352698 | +| time-step | 18 | +| y_out | 0.026130028 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2533337 | +| time-step | 19 | +| y_out | 0.048699126 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +------------------------------------------------------------- +| perf/mse | 0.25179696 | +| time-step | 20 | +| y_out | -0.048879944 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.25797287 | +| time-step | 21 | +| y_out | 0.0717807 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.25513315 | +| time-step | 22 | +| y_out | 0.010292314 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.24589486 | +| time-step | 23 | +| y_out | -0.037122063 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.23594365 | +| time-step | 24 | +| y_out | -0.099513546 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.23766379 | +| time-step | 25 | +| y_out | 0.038253985 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23817877 | +| time-step | 26 | +| y_out | -0.04920322 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.24043305 | +| time-step | 27 | +| y_out | 0.0235192 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.23979974 | +| time-step | 28 | +| y_out | 0.030376742 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23798533 | +| time-step | 29 | +| y_out | -0.06327821 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.23461246 | +| time-step | 30 | +| y_out | 0.04228808 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22924678 | +| time-step | 31 | +| y_out | 0.138761 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.2328656 | +| time-step | 32 | +| y_out | -0.053567633 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.22847092 | +| time-step | 33 | +| y_out | -0.008183638 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.22734192 | +| time-step | 34 | +| y_out | -0.050216384 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.22175503 | +| time-step | 35 | +| y_out | -0.0041360054 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.20843819 | +| time-step | 36 | +| y_out | -0.023561798 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.20617564 | +| time-step | 37 | +| y_out | -0.025891704 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20248365 | +| time-step | 38 | +| y_out | 0.08572664 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20625186 | +| time-step | 39 | +| y_out | 0.13170026 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +-------------------------------------------------------------- +| perf/mse | 0.2009382 | +| time-step | 40 | +| y_out | 0.00094016735 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.19305591 | +| time-step | 41 | +| y_out | -0.0054951357 | +-------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.18918183 | +| time-step | 42 | +| y_out | -0.0029169833 | +-------------------------------------------------------------- +--------------------------------------------------------------- +| perf/mse | 0.1883713 | +| time-step | 43 | +| y_out | -0.00096143037 | +--------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1894991 | +| time-step | 44 | +| y_out | -0.042103514 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.19099621 | +| time-step | 45 | +| y_out | 0.0067213047 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18904176 | +| time-step | 46 | +| y_out | -0.08686924 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.18306838 | +| time-step | 47 | +| y_out | 0.0109926 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.17863014 | +| time-step | 48 | +| y_out | -0.027261835 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17096086 | +| time-step | 49 | +| y_out | -0.1585369 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1690323 | +| time-step | 50 | +| y_out | -0.12948984 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17059372 | +| time-step | 51 | +| y_out | -0.11507261 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16556242 | +| time-step | 52 | +| y_out | -0.18199441 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16355076 | +| time-step | 53 | +| y_out | 0.013860084 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.16063938 | +| time-step | 54 | +| y_out | -0.019884463 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.15646468 | +| time-step | 55 | +| y_out | -0.046609916 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15517999 | +| time-step | 56 | +| y_out | 0.042844754 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15396328 | +| time-step | 57 | +| y_out | -0.03711673 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.15167476 | +| time-step | 58 | +| y_out | 0.0007336363 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14713715 | +| time-step | 59 | +| y_out | 0.058555212 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +------------------------------------------------------------- +| perf/mse | 0.1436713 | +| time-step | 60 | +| y_out | -0.120284855 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1380341 | +| time-step | 61 | +| y_out | -0.016127799 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1368053 | +| time-step | 62 | +| y_out | 0.0054674447 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.13425002 | +| time-step | 63 | +| y_out | -0.059960075 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13149393 | +| time-step | 64 | +| y_out | 0.14438856 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1281505 | +| time-step | 65 | +| y_out | 0.011800697 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.12969482 | +| time-step | 66 | +| y_out | 0.015669543 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.12626994 | +| time-step | 67 | +| y_out | -0.0468843 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12709959 | +| time-step | 68 | +| y_out | 0.03655757 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12752475 | +| time-step | 69 | +| y_out | 0.10038442 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12636891 | +| time-step | 70 | +| y_out | 0.20802715 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12778363 | +| time-step | 71 | +| y_out | 0.21081522 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12447137 | +| time-step | 72 | +| y_out | 0.033980966 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.122810625 | +| time-step | 73 | +| y_out | 0.0037000738 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.12064107 | +| time-step | 74 | +| y_out | -0.018477367 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.11794927 | +| time-step | 75 | +| y_out | -0.05084198 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11358658 | +| time-step | 76 | +| y_out | -0.05224493 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.10999091 | +| time-step | 77 | +| y_out | 0.07490153 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10511788 | +| time-step | 78 | +| y_out | 0.11349448 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1034572 | +| time-step | 79 | +| y_out | -0.102458686 | +------------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +------------------------------------------------------------ +| perf/mse | 0.10272972 | +| time-step | 80 | +| y_out | -0.11170855 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.10055767 | +| time-step | 81 | +| y_out | 0.048252013 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.098345354 | +| time-step | 82 | +| y_out | 0.06658258 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.094661705 | +| time-step | 83 | +| y_out | 0.032272883 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.0924102 | +| time-step | 84 | +| y_out | -0.0400239 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.08946519 | +| time-step | 85 | +| y_out | -0.017674271 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.087174855 | +| time-step | 86 | +| y_out | 0.123464696 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.0877087 | +| time-step | 87 | +| y_out | 0.06833343 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.086945035 | +| time-step | 88 | +| y_out | 0.059506014 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0832867 | +| time-step | 89 | +| y_out | -0.09729373 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.079513974 | +| time-step | 90 | +| y_out | -0.0049524345 | +-------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.07658987 | +| time-step | 91 | +| y_out | -0.083177544 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.07553563 | +| time-step | 92 | +| y_out | -0.101716675 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.075119 | +| time-step | 93 | +| y_out | 0.038038142 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.072031364 | +| time-step | 94 | +| y_out | -0.088198036 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.07277975 | +| time-step | 95 | +| y_out | -0.0100238975 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.071574286 | +| time-step | 96 | +| y_out | 0.023492098 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.06966231 | +| time-step | 97 | +| y_out | 0.07876533 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.06716306 | +| time-step | 98 | +| y_out | 0.040174026 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.06682237 | +| time-step | 99 | +| y_out | 0.021723732 | +------------------------------------------------------------ +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: True +k: REMOTE_SETTING, v: {'ftp_server': '127.0.0.1', 'username': 'hadoop-peisongpa', 'password': 'wangli78', 'remote_log_root': '/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 14:47:56.711179 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..a26d382 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,-0.03820775, +1,0.040611096, +2,0.025441056, +3,0.16058132, +4,-0.016598545, +5,0.07641238, +6,-0.07551894, +7,0.03351134, +8,-0.041779466, +9,-0.079788834,0.28662068 +10,0.019240221,0.2785755 +11,-0.02260659,0.27527714 +12,-0.030526614,0.27194336 +13,0.17291255,0.2717179 +14,-0.050088823,0.27107912 +15,-0.04610773,0.26555118 +16,0.055066578,0.26614523 +17,-0.042952653,0.2642731 +18,0.026130028,0.26352698 +19,0.048699126,0.2533337 +20,-0.048879944,0.25179696 +21,0.0717807,0.25797287 +22,0.010292314,0.25513315 +23,-0.037122063,0.24589486 +24,-0.099513546,0.23594365 +25,0.038253985,0.23766379 +26,-0.04920322,0.23817877 +27,0.0235192,0.24043305 +28,0.030376742,0.23979974 +29,-0.06327821,0.23798533 +30,0.04228808,0.23461246 +31,0.138761,0.22924678 +32,-0.053567633,0.2328656 +33,-0.008183638,0.22847092 +34,-0.050216384,0.22734192 +35,-0.0041360054,0.22175503 +36,-0.023561798,0.20843819 +37,-0.025891704,0.20617564 +38,0.08572664,0.20248365 +39,0.13170026,0.20625186 +40,0.00094016735,0.2009382 +41,-0.0054951357,0.19305591 +42,-0.0029169833,0.18918183 +43,-0.00096143037,0.1883713 +44,-0.042103514,0.1894991 +45,0.0067213047,0.19099621 +46,-0.08686924,0.18904176 +47,0.0109926,0.18306838 +48,-0.027261835,0.17863014 +49,-0.1585369,0.17096086 +50,-0.12948984,0.1690323 +51,-0.11507261,0.17059372 +52,-0.18199441,0.16556242 +53,0.013860084,0.16355076 +54,-0.019884463,0.16063938 +55,-0.046609916,0.15646468 +56,0.042844754,0.15517999 +57,-0.03711673,0.15396328 +58,0.0007336363,0.15167476 +59,0.058555212,0.14713715 +60,-0.120284855,0.1436713 +61,-0.016127799,0.1380341 +62,0.0054674447,0.1368053 +63,-0.059960075,0.13425002 +64,0.14438856,0.13149393 +65,0.011800697,0.1281505 +66,0.015669543,0.12969482 +67,-0.0468843,0.12626994 +68,0.03655757,0.12709959 +69,0.10038442,0.12752475 +70,0.20802715,0.12636891 +71,0.21081522,0.12778363 +72,0.033980966,0.12447137 +73,0.0037000738,0.122810625 +74,-0.018477367,0.12064107 +75,-0.05084198,0.11794927 +76,-0.05224493,0.11358658 +77,0.07490153,0.10999091 +78,0.11349448,0.10511788 +79,-0.102458686,0.1034572 +80,-0.11170855,0.10272972 +81,0.048252013,0.10055767 +82,0.06658258,0.098345354 +83,0.032272883,0.094661705 +84,-0.0400239,0.0924102 +85,-0.017674271,0.08946519 +86,0.123464696,0.087174855 +87,0.06833343,0.0877087 +88,0.059506014,0.086945035 +89,-0.09729373,0.0832867 +90,-0.0049524345,0.079513974 +91,-0.083177544,0.07658987 +92,-0.101716675,0.07553563 +93,0.038038142,0.075119 +94,-0.088198036,0.072031364 +95,-0.0100238975,0.07277975 +96,0.023492098,0.071574286 +97,0.07876533,0.06966231 +98,0.040174026,0.06716306 +99,0.021723732,0.06682237 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904474.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904474.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..c4a299d Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904474.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..844e362 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..fa8d3ca --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt @@ -0,0 +1,13 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 +-------------------------------------------------- +| i | 0 | +| time-step | 0 | +-------------------------------------------------- +[WARN] 0 : sync: start +[WARN] 0 : the parameter remote_log_root will be renamed to remote_data_root in future versions. diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..16ef5df --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv @@ -0,0 +1,2 @@ +i,time-step +0,0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904476.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904476.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..fc29696 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904476.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..77db1a0 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-47-56-711179_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt @@ -0,0 +1,2 @@ +[WARN] 0 : sync: start +[WARN] 0 : the parameter remote_log_root will be renamed to remote_data_root in future versions. diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-10-845379_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-10-845379_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..304d372 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,44 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +save checkpoint to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/checkpoint 0 +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: False +k: REMOTE_SETTING, v: {'ftp_server': '', 'username': '', 'password': '', 'remote_log_root': '', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 14:49:27.292976 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904566.MBP-C02ZL0TNLVCF-2243.local.40042.0.v2 b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904566.MBP-C02ZL0TNLVCF-2243.local.40042.0.v2 new file mode 100644 index 0000000..b6ec776 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904566.MBP-C02ZL0TNLVCF-2243.local.40042.0.v2 differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-22-038729_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..abbb470 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,512 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +----------------------------------------------------------- +| time-step | 0 | +| y_out | -0.0020859 | +----------------------------------------------------------- +------------------------------------------------------------ +| time-step | 1 | +| y_out | 0.031980075 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 2 | +| y_out | 0.058423344 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 3 | +| y_out | -0.021017302 | +------------------------------------------------------------- +----------------------------------------------------------- +| time-step | 4 | +| y_out | 0.04096725 | +----------------------------------------------------------- +------------------------------------------------------------ +| time-step | 5 | +| y_out | -0.03104342 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 6 | +| y_out | -0.021475729 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 7 | +| y_out | 0.020799316 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.3136826 | +| time-step | 8 | +| y_out | 0.09937596 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.2765532 | +| time-step | 9 | +| y_out | 0.08211042 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.27130106 | +| time-step | 10 | +| y_out | -0.08581577 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.27047285 | +| time-step | 11 | +| y_out | -0.022412244 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.26315245 | +| time-step | 12 | +| y_out | -0.033260807 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.26309633 | +| time-step | 13 | +| y_out | 0.021408694 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2643932 | +| time-step | 14 | +| y_out | 0.080548525 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.26666328 | +| time-step | 15 | +| y_out | 0.0031361114 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.26297137 | +| time-step | 16 | +| y_out | 0.039657228 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.25668985 | +| time-step | 17 | +| y_out | 0.0935407 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.25277033 | +| time-step | 18 | +| y_out | 0.0007869452 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.2508176 | +| time-step | 19 | +| y_out | 0.03556549 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +------------------------------------------------------------ +| perf/mse | 0.24853416 | +| time-step | 20 | +| y_out | 0.052074254 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.24961443 | +| time-step | 21 | +| y_out | 0.09314161 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2537471 | +| time-step | 22 | +| y_out | -0.08948156 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.24890473 | +| time-step | 23 | +| y_out | 0.067223184 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.25423217 | +| time-step | 24 | +| y_out | -0.05216405 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2505821 | +| time-step | 25 | +| y_out | 0.038366858 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.251793 | +| time-step | 26 | +| y_out | 0.023320748 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.24815866 | +| time-step | 27 | +| y_out | -0.039473515 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24943197 | +| time-step | 28 | +| y_out | 0.046177328 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2500406 | +| time-step | 29 | +| y_out | -0.047244754 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24617282 | +| time-step | 30 | +| y_out | -0.07088733 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.23653093 | +| time-step | 31 | +| y_out | 0.0065606274 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2312419 | +| time-step | 32 | +| y_out | 0.016723756 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.22675581 | +| time-step | 33 | +| y_out | -0.08171 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.21659903 | +| time-step | 34 | +| y_out | -0.09873071 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.21555057 | +| time-step | 35 | +| y_out | -0.059757374 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.21193357 | +| time-step | 36 | +| y_out | -0.043370374 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.20666695 | +| time-step | 37 | +| y_out | 0.06944886 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.19821915 | +| time-step | 38 | +| y_out | 0.0314136 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1921199 | +| time-step | 39 | +| y_out | 0.079995126 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +------------------------------------------------------------- +| perf/mse | 0.18942408 | +| time-step | 40 | +| y_out | -0.020918403 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18791789 | +| time-step | 41 | +| y_out | 0.03408087 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.18484168 | +| time-step | 42 | +| y_out | 0.13112184 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.18305035 | +| time-step | 43 | +| y_out | -0.07193909 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.17997578 | +| time-step | 44 | +| y_out | -0.053086106 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17632674 | +| time-step | 45 | +| y_out | 0.02654153 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.16969523 | +| time-step | 46 | +| y_out | -0.010074176 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.17249379 | +| time-step | 47 | +| y_out | 0.00023600366 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.17726424 | +| time-step | 48 | +| y_out | -0.16684091 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.17442486 | +| time-step | 49 | +| y_out | -0.003640267 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.17429727 | +| time-step | 50 | +| y_out | -0.13533406 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.1719754 | +| time-step | 51 | +| y_out | 0.05747471 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17001393 | +| time-step | 52 | +| y_out | 0.07101396 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.16817808 | +| time-step | 53 | +| y_out | -0.04298064 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17017992 | +| time-step | 54 | +| y_out | -0.05383315 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.16974834 | +| time-step | 55 | +| y_out | -0.046655007 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.16824584 | +| time-step | 56 | +| y_out | 0.019567885 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16472867 | +| time-step | 57 | +| y_out | 0.013739444 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15629388 | +| time-step | 58 | +| y_out | 0.030205023 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.15398619 | +| time-step | 59 | +| y_out | 0.07840521 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +------------------------------------------------------------ +| perf/mse | 0.1515061 | +| time-step | 60 | +| y_out | 0.110973276 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.14948806 | +| time-step | 61 | +| y_out | -0.057090495 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14896278 | +| time-step | 62 | +| y_out | -0.09041178 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.14663382 | +| time-step | 63 | +| y_out | 0.015157577 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.13946098 | +| time-step | 64 | +| y_out | 0.118504554 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.13621528 | +| time-step | 65 | +| y_out | -0.034283265 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.13328913 | +| time-step | 66 | +| y_out | -0.043218225 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13371885 | +| time-step | 67 | +| y_out | -0.11445462 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.13089441 | +| time-step | 68 | +| y_out | -0.024501957 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12804088 | +| time-step | 69 | +| y_out | -0.06171209 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.12506881 | +| time-step | 70 | +| y_out | 0.09192617 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.122883536 | +| time-step | 71 | +| y_out | 0.05022981 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11683407 | +| time-step | 72 | +| y_out | 0.049124695 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11559465 | +| time-step | 73 | +| y_out | 0.046233743 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.112678066 | +| time-step | 74 | +| y_out | 0.024492767 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.109632805 | +| time-step | 75 | +| y_out | -0.06153723 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.107513234 | +| time-step | 76 | +| y_out | 0.10439761 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.10170199 | +| time-step | 77 | +| y_out | 0.0247088 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.10150097 | +| time-step | 78 | +| y_out | -0.052258004 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.10264929 | +| time-step | 79 | +| y_out | 0.095354296 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +------------------------------------------------------------ +| perf/mse | 0.09799919 | +| time-step | 80 | +| y_out | -0.07185683 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.09708913 | +| time-step | 81 | +| y_out | -0.006173962 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.096542954 | +| time-step | 82 | +| y_out | -0.07637519 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09363652 | +| time-step | 83 | +| y_out | 0.28974384 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.09218248 | +| time-step | 84 | +| y_out | 0.110396884 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.0892167 | +| time-step | 85 | +| y_out | 0.08827115 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.087160714 | +| time-step | 86 | +| y_out | 0.08718131 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.08699484 | +| time-step | 87 | +| y_out | -0.00950573 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.08438973 | +| time-step | 88 | +| y_out | -0.14732596 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.079335295 | +| time-step | 89 | +| y_out | 0.08806938 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0774589 | +| time-step | 90 | +| y_out | 0.069696456 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.0744612 | +| time-step | 91 | +| y_out | 0.13969997 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.07252376 | +| time-step | 92 | +| y_out | 0.05327324 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.06896646 | +| time-step | 93 | +| y_out | -0.020978473 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.06610964 | +| time-step | 94 | +| y_out | -0.034531794 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.064324655 | +| time-step | 95 | +| y_out | -0.050053407 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.0629728 | +| time-step | 96 | +| y_out | 0.019987341 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.059708018 | +| time-step | 97 | +| y_out | 0.006296722 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.05819304 | +| time-step | 98 | +| y_out | -0.018171167 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.055879563 | +| time-step | 99 | +| y_out | 0.015744347 | +------------------------------------------------------------ +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: True +k: REMOTE_SETTING, v: {'ftp_server': '127.0.0.1', 'username': 'hadoop-peisongpa', 'password': 'wangli78', 'remote_log_root': '/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 14:49:29.936958 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..4096402 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,-0.0020859, +1,0.031980075, +2,0.058423344, +3,-0.021017302, +4,0.04096725, +5,-0.03104342, +6,-0.021475729, +7,0.020799316, +8,0.09937596,0.3136826 +9,0.08211042,0.2765532 +10,-0.08581577,0.27130106 +11,-0.022412244,0.27047285 +12,-0.033260807,0.26315245 +13,0.021408694,0.26309633 +14,0.080548525,0.2643932 +15,0.0031361114,0.26666328 +16,0.039657228,0.26297137 +17,0.0935407,0.25668985 +18,0.0007869452,0.25277033 +19,0.03556549,0.2508176 +20,0.052074254,0.24853416 +21,0.09314161,0.24961443 +22,-0.08948156,0.2537471 +23,0.067223184,0.24890473 +24,-0.05216405,0.25423217 +25,0.038366858,0.2505821 +26,0.023320748,0.251793 +27,-0.039473515,0.24815866 +28,0.046177328,0.24943197 +29,-0.047244754,0.2500406 +30,-0.07088733,0.24617282 +31,0.0065606274,0.23653093 +32,0.016723756,0.2312419 +33,-0.08171,0.22675581 +34,-0.09873071,0.21659903 +35,-0.059757374,0.21555057 +36,-0.043370374,0.21193357 +37,0.06944886,0.20666695 +38,0.0314136,0.19821915 +39,0.079995126,0.1921199 +40,-0.020918403,0.18942408 +41,0.03408087,0.18791789 +42,0.13112184,0.18484168 +43,-0.07193909,0.18305035 +44,-0.053086106,0.17997578 +45,0.02654153,0.17632674 +46,-0.010074176,0.16969523 +47,0.00023600366,0.17249379 +48,-0.16684091,0.17726424 +49,-0.003640267,0.17442486 +50,-0.13533406,0.17429727 +51,0.05747471,0.1719754 +52,0.07101396,0.17001393 +53,-0.04298064,0.16817808 +54,-0.05383315,0.17017992 +55,-0.046655007,0.16974834 +56,0.019567885,0.16824584 +57,0.013739444,0.16472867 +58,0.030205023,0.15629388 +59,0.07840521,0.15398619 +60,0.110973276,0.1515061 +61,-0.057090495,0.14948806 +62,-0.09041178,0.14896278 +63,0.015157577,0.14663382 +64,0.118504554,0.13946098 +65,-0.034283265,0.13621528 +66,-0.043218225,0.13328913 +67,-0.11445462,0.13371885 +68,-0.024501957,0.13089441 +69,-0.06171209,0.12804088 +70,0.09192617,0.12506881 +71,0.05022981,0.122883536 +72,0.049124695,0.11683407 +73,0.046233743,0.11559465 +74,0.024492767,0.112678066 +75,-0.06153723,0.109632805 +76,0.10439761,0.107513234 +77,0.0247088,0.10170199 +78,-0.052258004,0.10150097 +79,0.095354296,0.10264929 +80,-0.07185683,0.09799919 +81,-0.006173962,0.09708913 +82,-0.07637519,0.096542954 +83,0.28974384,0.09363652 +84,0.110396884,0.09218248 +85,0.08827115,0.0892167 +86,0.08718131,0.087160714 +87,-0.00950573,0.08699484 +88,-0.14732596,0.08438973 +89,0.08806938,0.079335295 +90,0.069696456,0.0774589 +91,0.13969997,0.0744612 +92,0.05327324,0.07252376 +93,-0.020978473,0.06896646 +94,-0.034531794,0.06610964 +95,-0.050053407,0.064324655 +96,0.019987341,0.0629728 +97,0.006296722,0.059708018 +98,-0.018171167,0.05819304 +99,0.015744347,0.055879563 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904567.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904567.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..bd69225 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904567.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..844e362 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..85ce5c2 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt @@ -0,0 +1,13 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 +-------------------------------------------------- +| i | 0 | +| time-step | 0 | +-------------------------------------------------- +[WARN] 0 : sync: start +[WARN] 0 : the parameter remote_log_root will be renamed to remote_data_root in future versions. diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..16ef5df --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv @@ -0,0 +1,2 @@ +i,time-step +0,0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904569.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904569.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..7968509 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658904569.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..77db1a0 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-49-29-936958_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt @@ -0,0 +1,2 @@ +[WARN] 0 : sync: start +[WARN] 0 : the parameter remote_log_root will be renamed to remote_data_root in future versions. diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..6a284c0 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,39 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +save checkpoint to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/checkpoint 0 +--------------------------------------------------------- +| time-step | 0 | +| y_out | -0.0555 | +--------------------------------------------------------- diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904610.MBP-C02ZL0TNLVCF-2243.local.40132.0.v2 b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904610.MBP-C02ZL0TNLVCF-2243.local.40132.0.v2 new file mode 100644 index 0000000..c5265e0 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904610.MBP-C02ZL0TNLVCF-2243.local.40132.0.v2 differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..82da642 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904700.MBP-C02ZL0TNLVCF-2243.local.40253.0.v2 b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904700.MBP-C02ZL0TNLVCF-2243.local.40253.0.v2 new file mode 100644 index 0000000..001aae9 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904700.MBP-C02ZL0TNLVCF-2243.local.40253.0.v2 differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-51-34-399790_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..da2bdf5 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,39 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +save checkpoint to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/checkpoint 0 +--------------------------------------------------------- +| time-step | 0 | +| y_out | -0.0253 | +--------------------------------------------------------- diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904842.MBP-C02ZL0TNLVCF-2243.local.40468.0.v2 b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904842.MBP-C02ZL0TNLVCF-2243.local.40468.0.v2 new file mode 100644 index 0000000..494734e Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904842.MBP-C02ZL0TNLVCF-2243.local.40468.0.v2 differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..716a9f5 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,39 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +save checkpoint to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/checkpoint 0 +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.0605 | +--------------------------------------------------------- diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904902.MBP-C02ZL0TNLVCF-2243.local.40544.0.v2 b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904902.MBP-C02ZL0TNLVCF-2243.local.40544.0.v2 new file mode 100644 index 0000000..2d97873 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904902.MBP-C02ZL0TNLVCF-2243.local.40544.0.v2 differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..07c2622 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,39 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +save checkpoint to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/checkpoint 0 +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.0448 | +--------------------------------------------------------- diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904924.MBP-C02ZL0TNLVCF-2243.local.40579.0.v2 b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904924.MBP-C02ZL0TNLVCF-2243.local.40579.0.v2 new file mode 100644 index 0000000..a275ba1 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658904924.MBP-C02ZL0TNLVCF-2243.local.40579.0.v2 differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..763e238 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,39 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save variable : + + + + + + + + + + + + + + + + + + + + + + + + + + +save checkpoint to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/checkpoint 0 +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.000222 | +--------------------------------------------------------- diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658905095.MBP-C02ZL0TNLVCF-2243.local.40743.0.v2 b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658905095.MBP-C02ZL0TNLVCF-2243.local.40743.0.v2 new file mode 100644 index 0000000..6d8fa22 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658905095.MBP-C02ZL0TNLVCF-2243.local.40743.0.v2 differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..98e19d0 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,8 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save checkpoint to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/checkpoint 0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658906550.MBP-C02ZL0TNLVCF-2243.local.41997.0.v2 b/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658906550.MBP-C02ZL0TNLVCF-2243.local.41997.0.v2 new file mode 100644 index 0000000..942669c Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658906550.MBP-C02ZL0TNLVCF-2243.local.41997.0.v2 differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/15-22-21-681058_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..d9eefcb --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,22 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save checkpoint to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/checkpoint 0 +[WARN] 0 : call save_checkpoints without passing a model_dict +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.0544 | +--------------------------------------------------------- +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: False +k: REMOTE_SETTING, v: {'ftp_server': '', 'username': '', 'password': '', 'remote_log_root': '', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 21:02:31.719700 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658926951.MBP-C02ZL0TNLVCF-2243.local.55585.0.v2 b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658926951.MBP-C02ZL0TNLVCF-2243.local.55585.0.v2 new file mode 100644 index 0000000..e346cf8 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658926951.MBP-C02ZL0TNLVCF-2243.local.55585.0.v2 differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..353772e --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/warn.txt @@ -0,0 +1 @@ +[WARN] 0 : call save_checkpoints without passing a model_dict diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..830ebda --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,512 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +------------------------------------------------------------ +| time-step | 0 | +| y_out | -0.08115087 | +------------------------------------------------------------ +------------------------------------------------------------ +| time-step | 1 | +| y_out | 0.020872777 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 2 | +| y_out | -0.015734304 | +------------------------------------------------------------- +---------------------------------------------------------- +| time-step | 3 | +| y_out | 0.1406791 | +---------------------------------------------------------- +----------------------------------------------------------- +| time-step | 4 | +| y_out | 0.16173068 | +----------------------------------------------------------- +----------------------------------------------------------- +| time-step | 5 | +| y_out | 0.11281406 | +----------------------------------------------------------- +------------------------------------------------------------- +| time-step | 6 | +| y_out | -0.049564213 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 7 | +| y_out | -0.06445912 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.29529536 | +| time-step | 8 | +| y_out | -0.1681888 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24866977 | +| time-step | 9 | +| y_out | 0.058863617 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.24618325 | +| time-step | 10 | +| y_out | 0.049352225 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.24046633 | +| time-step | 11 | +| y_out | 0.13582969 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.23825344 | +| time-step | 12 | +| y_out | -0.008340796 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.23578516 | +| time-step | 13 | +| y_out | 0.06682308 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.24125294 | +| time-step | 14 | +| y_out | 0.20863393 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24277206 | +| time-step | 15 | +| y_out | -0.07228148 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.24027088 | +| time-step | 16 | +| y_out | 0.0084858 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24026754 | +| time-step | 17 | +| y_out | -0.14226297 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.24350849 | +| time-step | 18 | +| y_out | 0.048472144 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.24074654 | +| time-step | 19 | +| y_out | 0.1272738 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +----------------------------------------------------------- +| perf/mse | 0.23248856 | +| time-step | 20 | +| y_out | 0.0725357 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.23360589 | +| time-step | 21 | +| y_out | -0.06995608 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.2281343 | +| time-step | 22 | +| y_out | -0.0065806583 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.22420463 | +| time-step | 23 | +| y_out | -0.13088128 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.21965651 | +| time-step | 24 | +| y_out | -0.06589019 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.21756205 | +| time-step | 25 | +| y_out | -0.006940536 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.2120883 | +| time-step | 26 | +| y_out | 0.03967285 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.20946279 | +| time-step | 27 | +| y_out | 0.014822016 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.20610818 | +| time-step | 28 | +| y_out | 0.083630525 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.2043434 | +| time-step | 29 | +| y_out | 0.02395604 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.20440221 | +| time-step | 30 | +| y_out | 0.079894826 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.19967046 | +| time-step | 31 | +| y_out | -0.0049796496 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.19899413 | +| time-step | 32 | +| y_out | -0.05193953 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19576254 | +| time-step | 33 | +| y_out | 0.017952517 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.19560614 | +| time-step | 34 | +| y_out | 0.08105061 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1932191 | +| time-step | 35 | +| y_out | -0.020725098 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.19571096 | +| time-step | 36 | +| y_out | 0.0064680083 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.19319808 | +| time-step | 37 | +| y_out | -0.019612994 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1829929 | +| time-step | 38 | +| y_out | 0.028183863 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.17908275 | +| time-step | 39 | +| y_out | 0.07364625 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +----------------------------------------------------------- +| perf/mse | 0.18083875 | +| time-step | 40 | +| y_out | 0.05398774 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.1808972 | +| time-step | 41 | +| y_out | -0.0150926765 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.17694792 | +| time-step | 42 | +| y_out | 0.06865174 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.17694503 | +| time-step | 43 | +| y_out | -0.07300543 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.17190346 | +| time-step | 44 | +| y_out | 0.047520828 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16814709 | +| time-step | 45 | +| y_out | 0.021530662 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.16354777 | +| time-step | 46 | +| y_out | 0.020527724 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.16285244 | +| time-step | 47 | +| y_out | -0.090933375 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.16293135 | +| time-step | 48 | +| y_out | 0.039987274 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.16114184 | +| time-step | 49 | +| y_out | -0.008168457 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.15981683 | +| time-step | 50 | +| y_out | -0.03908532 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15484877 | +| time-step | 51 | +| y_out | 0.084308185 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.15495887 | +| time-step | 52 | +| y_out | 0.093848005 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.14964141 | +| time-step | 53 | +| y_out | -0.008494442 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14762269 | +| time-step | 54 | +| y_out | 0.025881805 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.14554231 | +| time-step | 55 | +| y_out | -0.046755496 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.14182729 | +| time-step | 56 | +| y_out | -0.018667027 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.13691452 | +| time-step | 57 | +| y_out | 0.08797852 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.13686784 | +| time-step | 58 | +| y_out | -0.13114515 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.13756047 | +| time-step | 59 | +| y_out | 0.027838971 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +------------------------------------------------------------ +| perf/mse | 0.13312738 | +| time-step | 60 | +| y_out | -0.03731026 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.13448606 | +| time-step | 61 | +| y_out | 0.0034433305 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1331622 | +| time-step | 62 | +| y_out | 0.009407705 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.13295387 | +| time-step | 63 | +| y_out | 0.024143502 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.12850334 | +| time-step | 64 | +| y_out | -0.019527981 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12429509 | +| time-step | 65 | +| y_out | 0.12750119 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.123570025 | +| time-step | 66 | +| y_out | 0.022382382 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.12333448 | +| time-step | 67 | +| y_out | 0.0916282 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.11747887 | +| time-step | 68 | +| y_out | -0.043575056 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.112562455 | +| time-step | 69 | +| y_out | 0.088415325 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.107550815 | +| time-step | 70 | +| y_out | -0.08003076 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.10520385 | +| time-step | 71 | +| y_out | -0.060309283 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.10021104 | +| time-step | 72 | +| y_out | 0.14613459 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.09780532 | +| time-step | 73 | +| y_out | 0.014975958 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.09741179 | +| time-step | 74 | +| y_out | 0.07731803 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.09523808 | +| time-step | 75 | +| y_out | -0.06037996 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.08982111 | +| time-step | 76 | +| y_out | 0.027954731 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0858041 | +| time-step | 77 | +| y_out | 0.070564516 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.0846568 | +| time-step | 78 | +| y_out | 0.12844825 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.081011295 | +| time-step | 79 | +| y_out | -0.06525979 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +----------------------------------------------------------- +| perf/mse | 0.08083167 | +| time-step | 80 | +| y_out | 0.06867719 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.076571204 | +| time-step | 81 | +| y_out | -0.08265691 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.07691847 | +| time-step | 82 | +| y_out | -0.049602076 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.074431464 | +| time-step | 83 | +| y_out | -0.13827844 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.07270539 | +| time-step | 84 | +| y_out | -0.051012516 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.07022231 | +| time-step | 85 | +| y_out | -0.039824918 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.07045157 | +| time-step | 86 | +| y_out | -0.07199623 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.06725861 | +| time-step | 87 | +| y_out | 0.021302592 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0665552 | +| time-step | 88 | +| y_out | -0.04912517 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.06505462 | +| time-step | 89 | +| y_out | -0.080845185 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0629918 | +| time-step | 90 | +| y_out | -0.027250418 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.06251709 | +| time-step | 91 | +| y_out | -0.047542214 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.061991654 | +| time-step | 92 | +| y_out | 0.12417862 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.060264748 | +| time-step | 93 | +| y_out | 0.12456248 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.059348445 | +| time-step | 94 | +| y_out | 0.060872413 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.058409035 | +| time-step | 95 | +| y_out | 0.024682853 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.057927877 | +| time-step | 96 | +| y_out | 0.14814343 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.058606815 | +| time-step | 97 | +| y_out | 0.021679616 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.057646226 | +| time-step | 98 | +| y_out | -0.06782472 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.056733437 | +| time-step | 99 | +| y_out | 0.12753248 | +------------------------------------------------------------ +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: True +k: REMOTE_SETTING, v: {'ftp_server': '127.0.0.1', 'username': 'hadoop-peisongpa', 'password': 'wangli78', 'remote_log_root': '/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 21:02:34.400465 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..7343023 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,-0.08115087, +1,0.020872777, +2,-0.015734304, +3,0.1406791, +4,0.16173068, +5,0.11281406, +6,-0.049564213, +7,-0.06445912, +8,-0.1681888,0.29529536 +9,0.058863617,0.24866977 +10,0.049352225,0.24618325 +11,0.13582969,0.24046633 +12,-0.008340796,0.23825344 +13,0.06682308,0.23578516 +14,0.20863393,0.24125294 +15,-0.07228148,0.24277206 +16,0.0084858,0.24027088 +17,-0.14226297,0.24026754 +18,0.048472144,0.24350849 +19,0.1272738,0.24074654 +20,0.0725357,0.23248856 +21,-0.06995608,0.23360589 +22,-0.0065806583,0.2281343 +23,-0.13088128,0.22420463 +24,-0.06589019,0.21965651 +25,-0.006940536,0.21756205 +26,0.03967285,0.2120883 +27,0.014822016,0.20946279 +28,0.083630525,0.20610818 +29,0.02395604,0.2043434 +30,0.079894826,0.20440221 +31,-0.0049796496,0.19967046 +32,-0.05193953,0.19899413 +33,0.017952517,0.19576254 +34,0.08105061,0.19560614 +35,-0.020725098,0.1932191 +36,0.0064680083,0.19571096 +37,-0.019612994,0.19319808 +38,0.028183863,0.1829929 +39,0.07364625,0.17908275 +40,0.05398774,0.18083875 +41,-0.0150926765,0.1808972 +42,0.06865174,0.17694792 +43,-0.07300543,0.17694503 +44,0.047520828,0.17190346 +45,0.021530662,0.16814709 +46,0.020527724,0.16354777 +47,-0.090933375,0.16285244 +48,0.039987274,0.16293135 +49,-0.008168457,0.16114184 +50,-0.03908532,0.15981683 +51,0.084308185,0.15484877 +52,0.093848005,0.15495887 +53,-0.008494442,0.14964141 +54,0.025881805,0.14762269 +55,-0.046755496,0.14554231 +56,-0.018667027,0.14182729 +57,0.08797852,0.13691452 +58,-0.13114515,0.13686784 +59,0.027838971,0.13756047 +60,-0.03731026,0.13312738 +61,0.0034433305,0.13448606 +62,0.009407705,0.1331622 +63,0.024143502,0.13295387 +64,-0.019527981,0.12850334 +65,0.12750119,0.12429509 +66,0.022382382,0.123570025 +67,0.0916282,0.12333448 +68,-0.043575056,0.11747887 +69,0.088415325,0.112562455 +70,-0.08003076,0.107550815 +71,-0.060309283,0.10520385 +72,0.14613459,0.10021104 +73,0.014975958,0.09780532 +74,0.07731803,0.09741179 +75,-0.06037996,0.09523808 +76,0.027954731,0.08982111 +77,0.070564516,0.0858041 +78,0.12844825,0.0846568 +79,-0.06525979,0.081011295 +80,0.06867719,0.08083167 +81,-0.08265691,0.076571204 +82,-0.049602076,0.07691847 +83,-0.13827844,0.074431464 +84,-0.051012516,0.07270539 +85,-0.039824918,0.07022231 +86,-0.07199623,0.07045157 +87,0.021302592,0.06725861 +88,-0.04912517,0.0665552 +89,-0.080845185,0.06505462 +90,-0.027250418,0.0629918 +91,-0.047542214,0.06251709 +92,0.12417862,0.061991654 +93,0.12456248,0.060264748 +94,0.060872413,0.059348445 +95,0.024682853,0.058409035 +96,0.14814343,0.057927877 +97,0.021679616,0.058606815 +98,-0.06782472,0.057646226 +99,0.12753248,0.056733437 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658926951.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658926951.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..fa865f7 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658926951.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..844e362 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..dd7f993 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt @@ -0,0 +1,13 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 +-------------------------------------------------- +| i | 0 | +| time-step | 0 | +-------------------------------------------------- +[WARN] 0 : sync: start +[WARN] 0 : the parameter remote_log_root will be renamed to remote_data_root in future versions. diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..16ef5df --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv @@ -0,0 +1,2 @@ +i,time-step +0,0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658926954.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658926954.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..0af38d3 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658926954.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..77db1a0 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-02-34-400465_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt @@ -0,0 +1,2 @@ +[WARN] 0 : sync: start +[WARN] 0 : the parameter remote_log_root will be renamed to remote_data_root in future versions. diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..b2c70fe --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,22 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +save checkpoint to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/checkpoint 0 +[WARN] 0 : call save_checkpoints without passing a model_dict +--------------------------------------------------------- +| time-step | 0 | +| y_out | 0.05 | +--------------------------------------------------------- +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: False +k: REMOTE_SETTING, v: {'ftp_server': '', 'username': '', 'password': '', 'remote_log_root': '', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 21:04:34.397714 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658927073.MBP-C02ZL0TNLVCF-2243.local.55726.0.v2 b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658927073.MBP-C02ZL0TNLVCF-2243.local.55726.0.v2 new file mode 100644 index 0000000..578a808 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658927073.MBP-C02ZL0TNLVCF-2243.local.55726.0.v2 differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..353772e --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/warn.txt @@ -0,0 +1 @@ +[WARN] 0 : call save_checkpoints without passing a model_dict diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..4361513 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/log.txt @@ -0,0 +1,512 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 +------------------------------------------------------------- +| time-step | 0 | +| y_out | -0.051086485 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 1 | +| y_out | -0.02698705 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 2 | +| y_out | -0.075942576 | +------------------------------------------------------------- +------------------------------------------------------------- +| time-step | 3 | +| y_out | -0.075461894 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 4 | +| y_out | -0.05449262 | +------------------------------------------------------------ +------------------------------------------------------------- +| time-step | 5 | +| y_out | -0.027682275 | +------------------------------------------------------------- +------------------------------------------------------------- +| time-step | 6 | +| y_out | -0.028784622 | +------------------------------------------------------------- +------------------------------------------------------------ +| time-step | 7 | +| y_out | 0.019450793 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.34783134 | +| time-step | 8 | +| y_out | -0.04913006 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.30258074 | +| time-step | 9 | +| y_out | 0.030929992 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.3059935 | +| time-step | 10 | +| y_out | -0.0095580015 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.31505838 | +| time-step | 11 | +| y_out | 0.11838068 | +----------------------------------------------------------- +---------------------------------------------------------- +| perf/mse | 0.3080894 | +| time-step | 12 | +| y_out | 0.0626796 | +---------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.30533016 | +| time-step | 13 | +| y_out | -0.047757015 | +------------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.30789313 | +| time-step | 14 | +| y_out | -0.0049784426 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.29572922 | +| time-step | 15 | +| y_out | -0.07652553 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.3000459 | +| time-step | 16 | +| y_out | -0.10563607 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.30273893 | +| time-step | 17 | +| y_out | 0.020040935 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.29671016 | +| time-step | 18 | +| y_out | -0.08836341 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.29528487 | +| time-step | 19 | +| y_out | 0.005402619 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/checkpoint-0.pt +----------------------------------------------------------- +| perf/mse | 0.28998893 | +| time-step | 20 | +| y_out | 0.05667349 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.28310436 | +| time-step | 21 | +| y_out | -0.0698992 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.28471208 | +| time-step | 22 | +| y_out | 0.06730319 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2819135 | +| time-step | 23 | +| y_out | -0.07337211 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.27035934 | +| time-step | 24 | +| y_out | 0.1207891 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.27713773 | +| time-step | 25 | +| y_out | 0.074191086 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.27480096 | +| time-step | 26 | +| y_out | 0.018349513 | +------------------------------------------------------------ +-------------------------------------------------------------- +| perf/mse | 0.27242175 | +| time-step | 27 | +| y_out | -0.0045923665 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.26434466 | +| time-step | 28 | +| y_out | -0.14349844 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.25847307 | +| time-step | 29 | +| y_out | -0.049871035 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.25446734 | +| time-step | 30 | +| y_out | 0.041328974 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.25169033 | +| time-step | 31 | +| y_out | 0.06320353 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.24659657 | +| time-step | 32 | +| y_out | 0.036889825 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.23987012 | +| time-step | 33 | +| y_out | 0.048881583 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.23878428 | +| time-step | 34 | +| y_out | 0.07505766 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.23188324 | +| time-step | 35 | +| y_out | 0.07418668 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.22707498 | +| time-step | 36 | +| y_out | 0.09659318 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.22177002 | +| time-step | 37 | +| y_out | 0.009791079 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.2218984 | +| time-step | 38 | +| y_out | -0.12587658 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.22242999 | +| time-step | 39 | +| y_out | 0.10701798 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/checkpoint-20.pt +------------------------------------------------------------ +| perf/mse | 0.22375815 | +| time-step | 40 | +| y_out | 0.046524167 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.22064534 | +| time-step | 41 | +| y_out | -0.041583918 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.21489826 | +| time-step | 42 | +| y_out | -0.025453927 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.21865828 | +| time-step | 43 | +| y_out | -0.016884673 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.21557887 | +| time-step | 44 | +| y_out | 0.043976948 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.2105932 | +| time-step | 45 | +| y_out | 0.0055210292 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.2091937 | +| time-step | 46 | +| y_out | 0.0029936023 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.2047565 | +| time-step | 47 | +| y_out | -0.04349903 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.20395362 | +| time-step | 48 | +| y_out | -0.04279626 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19538729 | +| time-step | 49 | +| y_out | 0.007642824 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.19011329 | +| time-step | 50 | +| y_out | 0.041126788 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.18757898 | +| time-step | 51 | +| y_out | -0.03312173 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.18304998 | +| time-step | 52 | +| y_out | -0.041093938 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.1811797 | +| time-step | 53 | +| y_out | -0.037838485 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.17855981 | +| time-step | 54 | +| y_out | 0.030452728 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.1771881 | +| time-step | 55 | +| y_out | -0.020946955 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1726879 | +| time-step | 56 | +| y_out | -0.06553401 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.1734949 | +| time-step | 57 | +| y_out | 0.05746308 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.17061904 | +| time-step | 58 | +| y_out | 0.053307086 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.17487395 | +| time-step | 59 | +| y_out | 0.09337895 | +----------------------------------------------------------- +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/checkpoint-40.pt +------------------------------------------------------------- +| perf/mse | 0.1742812 | +| time-step | 60 | +| y_out | 0.0005245544 | +------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16906671 | +| time-step | 61 | +| y_out | 0.03827511 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.16997075 | +| time-step | 62 | +| y_out | 0.04714056 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.16285229 | +| time-step | 63 | +| y_out | -0.047981266 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.1590677 | +| time-step | 64 | +| y_out | -0.03883331 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.1596856 | +| time-step | 65 | +| y_out | -0.02228038 | +------------------------------------------------------------ +------------------------------------------------------------- +| perf/mse | 0.15854773 | +| time-step | 66 | +| y_out | -0.034229316 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.15358314 | +| time-step | 67 | +| y_out | -0.057871602 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.15020625 | +| time-step | 68 | +| y_out | -0.015511872 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14463627 | +| time-step | 69 | +| y_out | -0.09023917 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.14228424 | +| time-step | 70 | +| y_out | 0.0177396 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14222746 | +| time-step | 71 | +| y_out | 0.04570595 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.13919248 | +| time-step | 72 | +| y_out | -0.0044672843 | +-------------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.14174445 | +| time-step | 73 | +| y_out | 0.07797983 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.14174882 | +| time-step | 74 | +| y_out | 0.074832246 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.13612661 | +| time-step | 75 | +| y_out | -0.12848346 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.13612518 | +| time-step | 76 | +| y_out | 0.071711086 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.13231376 | +| time-step | 77 | +| y_out | 0.09582132 | +----------------------------------------------------------- +-------------------------------------------------------------- +| perf/mse | 0.12807393 | +| time-step | 78 | +| y_out | -0.0016565807 | +-------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.12530199 | +| time-step | 79 | +| y_out | 0.062675826 | +------------------------------------------------------------ +rm the older checkpoint /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/checkpoint-60.pt +----------------------------------------------------------- +| perf/mse | 0.12274021 | +| time-step | 80 | +| y_out | 0.07324555 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12176587 | +| time-step | 81 | +| y_out | 0.11235197 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.12102838 | +| time-step | 82 | +| y_out | 0.12049341 | +----------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.116737545 | +| time-step | 83 | +| y_out | 0.044141814 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.11334147 | +| time-step | 84 | +| y_out | -0.07883172 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.11261556 | +| time-step | 85 | +| y_out | 0.08469814 | +----------------------------------------------------------- +----------------------------------------------------------- +| perf/mse | 0.11019285 | +| time-step | 86 | +| y_out | 0.07633519 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.106559 | +| time-step | 87 | +| y_out | -0.008310407 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.10640468 | +| time-step | 88 | +| y_out | -0.01596049 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.105496526 | +| time-step | 89 | +| y_out | 0.16374026 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.10310552 | +| time-step | 90 | +| y_out | 0.10466293 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0985758 | +| time-step | 91 | +| y_out | -0.042471107 | +------------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.09440977 | +| time-step | 92 | +| y_out | -0.021943454 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.09156682 | +| time-step | 93 | +| y_out | -0.03158443 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.090746835 | +| time-step | 94 | +| y_out | 0.09120302 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.08728173 | +| time-step | 95 | +| y_out | 0.017823607 | +------------------------------------------------------------ +----------------------------------------------------------- +| perf/mse | 0.084431 | +| time-step | 96 | +| y_out | 0.03341708 | +----------------------------------------------------------- +------------------------------------------------------------- +| perf/mse | 0.0857253 | +| time-step | 97 | +| y_out | -0.121995635 | +------------------------------------------------------------- +------------------------------------------------------------ +| perf/mse | 0.08396189 | +| time-step | 98 | +| y_out | 0.013786392 | +------------------------------------------------------------ +------------------------------------------------------------ +| perf/mse | 0.0797403 | +| time-step | 99 | +| y_out | -0.06786626 | +------------------------------------------------------------ +private_config: +k: PROJECT_TYPE, v: {'backup_code_by': 'source'} +k: BACKUP_CONFIG, v: {'backup_code_dir': ['proj'], 'lib_dir': './build/lib/'} +k: LOG_USED, v: ['stdout', 'log', 'tensorboard', 'csv'] +k: DL_FRAMEWORK, v: torch +k: SEND_LOG_FILE, v: True +k: REMOTE_SETTING, v: {'ftp_server': '127.0.0.1', 'username': 'hadoop-peisongpa', 'password': 'wangli78', 'remote_log_root': '/mnt/dolphinfs/hdd_pool/docker/user/hadoop-peisongpa/bear/projects/RLAssistant/test/remote_data_root', 'file_transfer_protocol': 'sftp'} +gen log files for record date : 2022-07-27 21:04:37.020422 +store file /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..71005bb --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/progress.csv @@ -0,0 +1,101 @@ +time-step,y_out,perf/mse +0,-0.051086485, +1,-0.02698705, +2,-0.075942576, +3,-0.075461894, +4,-0.05449262, +5,-0.027682275, +6,-0.028784622, +7,0.019450793, +8,-0.04913006,0.34783134 +9,0.030929992,0.30258074 +10,-0.0095580015,0.3059935 +11,0.11838068,0.31505838 +12,0.0626796,0.3080894 +13,-0.047757015,0.30533016 +14,-0.0049784426,0.30789313 +15,-0.07652553,0.29572922 +16,-0.10563607,0.3000459 +17,0.020040935,0.30273893 +18,-0.08836341,0.29671016 +19,0.005402619,0.29528487 +20,0.05667349,0.28998893 +21,-0.0698992,0.28310436 +22,0.06730319,0.28471208 +23,-0.07337211,0.2819135 +24,0.1207891,0.27035934 +25,0.074191086,0.27713773 +26,0.018349513,0.27480096 +27,-0.0045923665,0.27242175 +28,-0.14349844,0.26434466 +29,-0.049871035,0.25847307 +30,0.041328974,0.25446734 +31,0.06320353,0.25169033 +32,0.036889825,0.24659657 +33,0.048881583,0.23987012 +34,0.07505766,0.23878428 +35,0.07418668,0.23188324 +36,0.09659318,0.22707498 +37,0.009791079,0.22177002 +38,-0.12587658,0.2218984 +39,0.10701798,0.22242999 +40,0.046524167,0.22375815 +41,-0.041583918,0.22064534 +42,-0.025453927,0.21489826 +43,-0.016884673,0.21865828 +44,0.043976948,0.21557887 +45,0.0055210292,0.2105932 +46,0.0029936023,0.2091937 +47,-0.04349903,0.2047565 +48,-0.04279626,0.20395362 +49,0.007642824,0.19538729 +50,0.041126788,0.19011329 +51,-0.03312173,0.18757898 +52,-0.041093938,0.18304998 +53,-0.037838485,0.1811797 +54,0.030452728,0.17855981 +55,-0.020946955,0.1771881 +56,-0.06553401,0.1726879 +57,0.05746308,0.1734949 +58,0.053307086,0.17061904 +59,0.09337895,0.17487395 +60,0.0005245544,0.1742812 +61,0.03827511,0.16906671 +62,0.04714056,0.16997075 +63,-0.047981266,0.16285229 +64,-0.03883331,0.1590677 +65,-0.02228038,0.1596856 +66,-0.034229316,0.15854773 +67,-0.057871602,0.15358314 +68,-0.015511872,0.15020625 +69,-0.09023917,0.14463627 +70,0.0177396,0.14228424 +71,0.04570595,0.14222746 +72,-0.0044672843,0.13919248 +73,0.07797983,0.14174445 +74,0.074832246,0.14174882 +75,-0.12848346,0.13612661 +76,0.071711086,0.13612518 +77,0.09582132,0.13231376 +78,-0.0016565807,0.12807393 +79,0.062675826,0.12530199 +80,0.07324555,0.12274021 +81,0.11235197,0.12176587 +82,0.12049341,0.12102838 +83,0.044141814,0.116737545 +84,-0.07883172,0.11334147 +85,0.08469814,0.11261556 +86,0.07633519,0.11019285 +87,-0.008310407,0.106559 +88,-0.01596049,0.10640468 +89,0.16374026,0.105496526 +90,0.10466293,0.10310552 +91,-0.042471107,0.0985758 +92,-0.021943454,0.09440977 +93,-0.03158443,0.09156682 +94,0.09120302,0.090746835 +95,0.017823607,0.08728173 +96,0.03341708,0.084431 +97,-0.121995635,0.0857253 +98,0.013786392,0.08396189 +99,-0.06786626,0.0797403 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658927074.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658927074.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..0c8864a Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/tb/events/events.out.tfevents.1658927074.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt new file mode 100644 index 0000000..844e362 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt new file mode 100644 index 0000000..981afe4 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/log.txt @@ -0,0 +1,13 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/ +[BACKUP] 99 : key: input_size, value: 16 +[BACKUP] 99 : key: learning_rate, value: 0.0001 +-------------------------------------------------- +| i | 0 | +| time-step | 0 | +-------------------------------------------------- +[WARN] 0 : sync: start +[WARN] 0 : the parameter remote_log_root will be renamed to remote_data_root in future versions. diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv new file mode 100644 index 0000000..16ef5df --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/progress.csv @@ -0,0 +1,2 @@ +i,time-step +0,0 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658927077.MBP-C02ZL0TNLVCF-2243.local b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658927077.MBP-C02ZL0TNLVCF-2243.local new file mode 100644 index 0000000..0832362 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/tb/events/events.out.tfevents.1658927077.MBP-C02ZL0TNLVCF-2243.local differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt new file mode 100644 index 0000000..77db1a0 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-04-37-020422_172.16.0.33_&input_size=16&input_size=16&input_size=16/warn.txt @@ -0,0 +1,2 @@ +[WARN] 0 : sync: start +[WARN] 0 : the parameter remote_log_root will be renamed to remote_data_root in future versions. diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/backup.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/backup.txt new file mode 100644 index 0000000..b8eb801 --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/backup.txt @@ -0,0 +1,2 @@ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/log.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/log.txt new file mode 100644 index 0000000..806ac3a --- /dev/null +++ b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/log.txt @@ -0,0 +1,7 @@ +Logging to /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/ +log dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/ +pkl_file: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/archive_tester/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16.pkl +checkpoint_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/checkpoint/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/ +results_dir: /Users/xionghuichen/projects/RLAssistant/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/ +[BACKUP] 0 : key: input_size, value: 16 +[BACKUP] 0 : key: learning_rate, value: 0.0001 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/progress.csv b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/progress.csv new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658928580.MBP-C02ZL0TNLVCF-2243.local.56889.0.v2 b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658928580.MBP-C02ZL0TNLVCF-2243.local.56889.0.v2 new file mode 100644 index 0000000..2dee4c2 Binary files /dev/null and b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/tb/events/events.out.tfevents.1658928580.MBP-C02ZL0TNLVCF-2243.local.56889.0.v2 differ diff --git a/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/warn.txt b/test/test_data_root/log/test_manger_demo_task/2022/07/27/21-29-35-100821_172.16.0.33_&input_size=16/warn.txt new file mode 100644 index 0000000..e69de29 diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/0-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/0-react_func.png new file mode 100644 index 0000000..8ad8678 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/0-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/970-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/970-react_func.png new file mode 100644 index 0000000..c60662a Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/970-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/980-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/980-react_func.png new file mode 100644 index 0000000..6a58618 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/980-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/990-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/990-react_func.png new file mode 100644 index 0000000..774e39d Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-13-03-230208 11.0.91.89 &env_id=Test-v1&learning_rate=0.0001/990-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/0-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/0-react_func.png new file mode 100644 index 0000000..c387e44 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/0-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/10-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/10-react_func.png new file mode 100644 index 0000000..eff0a05 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/10-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/20-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/20-react_func.png new file mode 100644 index 0000000..ac6704a Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/20-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/930-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/930-react_func.png new file mode 100644 index 0000000..81f4ff4 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/930-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/940-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/940-react_func.png new file mode 100644 index 0000000..d60f9ee Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/940-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/950-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/950-react_func.png new file mode 100644 index 0000000..0580418 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/950-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/960-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/960-react_func.png new file mode 100644 index 0000000..2cc1ab6 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/960-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/970-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/970-react_func.png new file mode 100644 index 0000000..a95f7ac Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/970-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/980-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/980-react_func.png new file mode 100644 index 0000000..765731b Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/980-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/990-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/990-react_func.png new file mode 100644 index 0000000..fe51f48 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-13-58-909376 11.0.91.89 &env_id=Test-v1&learning_rate=0.01/990-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/0-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/0-react_func.png new file mode 100644 index 0000000..b500f72 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/0-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/10-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/10-react_func.png new file mode 100644 index 0000000..d915d3b Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/10-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/20-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/20-react_func.png new file mode 100644 index 0000000..cb6c1de Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/20-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/30-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/30-react_func.png new file mode 100644 index 0000000..3a747b9 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/30-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/40-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/40-react_func.png new file mode 100644 index 0000000..521a470 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/40-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/970-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/970-react_func.png new file mode 100644 index 0000000..fb6f685 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/970-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/980-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/980-react_func.png new file mode 100644 index 0000000..0bc1706 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/980-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/990-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/990-react_func.png new file mode 100644 index 0000000..95c9c27 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-20-23-748368 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=8888/990-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/0-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/0-react_func.png new file mode 100644 index 0000000..bfb9243 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/0-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/10-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/10-react_func.png new file mode 100644 index 0000000..a45efd8 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/10-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/20-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/20-react_func.png new file mode 100644 index 0000000..6dc64ac Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/20-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/960-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/960-react_func.png new file mode 100644 index 0000000..04024bf Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/960-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/970-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/970-react_func.png new file mode 100644 index 0000000..2952be5 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/970-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/980-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/980-react_func.png new file mode 100644 index 0000000..69cefc7 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/980-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/990-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/990-react_func.png new file mode 100644 index 0000000..2c6ba2e Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-22-58-846147 11.0.91.89 &env_id=Test-v1&learning_rate=0.01&seed=888/990-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/0-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/0-react_func.png new file mode 100644 index 0000000..4884c5c Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/0-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/10-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/10-react_func.png new file mode 100644 index 0000000..0211776 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/10-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/20-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/20-react_func.png new file mode 100644 index 0000000..4f50e95 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/20-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/30-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/30-react_func.png new file mode 100644 index 0000000..7661b4c Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/30-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/40-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/40-react_func.png new file mode 100644 index 0000000..336cd7d Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/40-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/960-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/960-react_func.png new file mode 100644 index 0000000..5c150e3 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/960-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/970-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/970-react_func.png new file mode 100644 index 0000000..ac03555 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/970-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/980-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/980-react_func.png new file mode 100644 index 0000000..1a85dfa Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/980-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/990-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/990-react_func.png new file mode 100644 index 0000000..eb59c5f Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-23-31-383753 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=888/990-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/0-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/0-react_func.png new file mode 100644 index 0000000..6db9e95 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/0-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/10-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/10-react_func.png new file mode 100644 index 0000000..097dd14 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/10-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/20-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/20-react_func.png new file mode 100644 index 0000000..b1d963c Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/20-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/970-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/970-react_func.png new file mode 100644 index 0000000..3615f66 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/970-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/980-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/980-react_func.png new file mode 100644 index 0000000..c204c0e Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/980-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/990-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/990-react_func.png new file mode 100644 index 0000000..f05da5e Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-26-59-653703 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/990-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/0-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/0-react_func.png new file mode 100644 index 0000000..6db9e95 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/0-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/10-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/10-react_func.png new file mode 100644 index 0000000..097dd14 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/10-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/20-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/20-react_func.png new file mode 100644 index 0000000..b1d963c Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/20-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/30-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/30-react_func.png new file mode 100644 index 0000000..79e0a4f Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/30-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/320-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/320-react_func.png new file mode 100644 index 0000000..12e58ad Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/320-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/330-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/330-react_func.png new file mode 100644 index 0000000..c0a51e7 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/330-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/340-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/340-react_func.png new file mode 100644 index 0000000..1e38884 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/340-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/350-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/350-react_func.png new file mode 100644 index 0000000..a3c332a Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/350-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/40-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/40-react_func.png new file mode 100644 index 0000000..f054657 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/40-react_func.png differ diff --git a/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/50-react_func.png b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/50-react_func.png new file mode 100644 index 0000000..1ab2ad9 Binary files /dev/null and b/test/test_data_root/results/demo_task/2022/03/01/21-51-25-574898 11.0.91.89 &env_id=Test-v1&learning_rate=0.001&seed=88/50-react_func.png differ diff --git a/test/test_data_root/results/easy_plot/demo_task/simple_res.pdf b/test/test_data_root/results/easy_plot/demo_task/simple_res.pdf new file mode 100644 index 0000000..4173f7b Binary files /dev/null and b/test/test_data_root/results/easy_plot/demo_task/simple_res.pdf differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/0-react_func.png new file mode 100644 index 0000000..4bdcc03 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/10-react_func.png new file mode 100644 index 0000000..375ab23 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/20-react_func.png new file mode 100644 index 0000000..2047f75 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/840-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/840-react_func.png new file mode 100644 index 0000000..7f788b6 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/840-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/850-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/850-react_func.png new file mode 100644 index 0000000..229ada5 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/850-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/860-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/860-react_func.png new file mode 100644 index 0000000..60e6f89 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-11-26-523232 172.16.0.65 &input_size=16/860-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/0-react_func.png new file mode 100644 index 0000000..89792ba Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/10-react_func.png new file mode 100644 index 0000000..dce9a3b Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/20-react_func.png new file mode 100644 index 0000000..bf8a215 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/30-react_func.png new file mode 100644 index 0000000..2358af7 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/40-react_func.png new file mode 100644 index 0000000..67c038d Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/50-react_func.png new file mode 100644 index 0000000..bc8acf3 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/60-react_func.png new file mode 100644 index 0000000..10aaa92 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/70-react_func.png new file mode 100644 index 0000000..139104e Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/80-react_func.png new file mode 100644 index 0000000..f80067e Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/90-react_func.png new file mode 100644 index 0000000..bfb0829 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/21/14-12-17-152036 172.16.0.65 &input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/0-react_func.png new file mode 100644 index 0000000..9c63447 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/10-react_func.png new file mode 100644 index 0000000..0e20373 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/20-react_func.png new file mode 100644 index 0000000..f9c89d4 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/30-react_func.png new file mode 100644 index 0000000..b9bb563 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/40-react_func.png new file mode 100644 index 0000000..4362746 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/50-react_func.png new file mode 100644 index 0000000..8b9f9b4 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/60-react_func.png new file mode 100644 index 0000000..0107b5d Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/70-react_func.png new file mode 100644 index 0000000..1f4eca1 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/80-react_func.png new file mode 100644 index 0000000..700ee8e Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/90-react_func.png new file mode 100644 index 0000000..6e8e0ff Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/16-59-05-730246 172.16.0.65 &input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/0-react_func.png new file mode 100644 index 0000000..3d1e8ad Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/10-react_func.png new file mode 100644 index 0000000..a9562bb Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/20-react_func.png new file mode 100644 index 0000000..bb87770 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/30-react_func.png new file mode 100644 index 0000000..cec30a2 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/40-react_func.png new file mode 100644 index 0000000..3917316 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/50-react_func.png new file mode 100644 index 0000000..16299c6 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/60-react_func.png new file mode 100644 index 0000000..d0c7fe4 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/70-react_func.png new file mode 100644 index 0000000..c66bea5 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/80-react_func.png new file mode 100644 index 0000000..6dc8cf5 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/90-react_func.png new file mode 100644 index 0000000..f324f80 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-02-32-834758 172.16.0.65 &input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/0-react_func.png new file mode 100644 index 0000000..945b8f6 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/10-react_func.png new file mode 100644 index 0000000..6e995ae Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/20-react_func.png new file mode 100644 index 0000000..b73db54 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/30-react_func.png new file mode 100644 index 0000000..b92ce0c Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/40-react_func.png new file mode 100644 index 0000000..5c98444 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/50-react_func.png new file mode 100644 index 0000000..bee91f2 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/60-react_func.png new file mode 100644 index 0000000..4027681 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/70-react_func.png new file mode 100644 index 0000000..acd96c2 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/80-react_func.png new file mode 100644 index 0000000..d7e7f9c Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/90-react_func.png new file mode 100644 index 0000000..0407a9b Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-01-032600 172.16.0.65 &input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..55e62bc Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..a5223c9 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..970d460 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..d31a012 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..5fa3747 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..55f4f0f Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..7c48939 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..8423c9b Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..abf8c0f Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..55a92aa Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/17-07-08-049304 172.16.0.65 &input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/0-react_func.png new file mode 100644 index 0000000..98dcebc Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/10-react_func.png new file mode 100644 index 0000000..91dfb68 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/20-react_func.png new file mode 100644 index 0000000..9d8033d Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/30-react_func.png new file mode 100644 index 0000000..12de4b3 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/40-react_func.png new file mode 100644 index 0000000..5dc81db Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/50-react_func.png new file mode 100644 index 0000000..9de5734 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/60-react_func.png new file mode 100644 index 0000000..04e9695 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/70-react_func.png new file mode 100644 index 0000000..50be1ad Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/80-react_func.png new file mode 100644 index 0000000..6696df2 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/90-react_func.png new file mode 100644 index 0000000..f2ba87c Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-05-46-724107 172.16.0.65 &input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/0-react_func.png new file mode 100644 index 0000000..af3b8b6 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/10-react_func.png new file mode 100644 index 0000000..21fa55b Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/20-react_func.png new file mode 100644 index 0000000..6071303 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/30-react_func.png new file mode 100644 index 0000000..b71b8ba Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/40-react_func.png new file mode 100644 index 0000000..aea5003 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/50-react_func.png new file mode 100644 index 0000000..f974dc5 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/60-react_func.png new file mode 100644 index 0000000..fea6e1a Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/70-react_func.png new file mode 100644 index 0000000..052a5b1 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/80-react_func.png new file mode 100644 index 0000000..deaace4 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/90-react_func.png new file mode 100644 index 0000000..923cba3 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/18-06-25-002746 172.16.0.65 &input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/0-react_func.png new file mode 100644 index 0000000..e0ec998 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/10-react_func.png new file mode 100644 index 0000000..6b486e2 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/20-react_func.png new file mode 100644 index 0000000..68b56d3 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/30-react_func.png new file mode 100644 index 0000000..f332d50 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/40-react_func.png new file mode 100644 index 0000000..48ee61f Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/50-react_func.png new file mode 100644 index 0000000..25185e6 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/60-react_func.png new file mode 100644 index 0000000..baf339b Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/70-react_func.png new file mode 100644 index 0000000..ba0ebff Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/80-react_func.png new file mode 100644 index 0000000..29c165e Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/90-react_func.png new file mode 100644 index 0000000..6bd0ef3 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-09-55-341226_172.16.0.65_&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/0-react_func.png new file mode 100644 index 0000000..7fe3afc Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/10-react_func.png new file mode 100644 index 0000000..3dc2149 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/20-react_func.png new file mode 100644 index 0000000..810592c Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/30-react_func.png new file mode 100644 index 0000000..38bd118 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/40-react_func.png new file mode 100644 index 0000000..4299ade Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/50-react_func.png new file mode 100644 index 0000000..37a1871 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/60-react_func.png new file mode 100644 index 0000000..e228016 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/70-react_func.png new file mode 100644 index 0000000..891f70e Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/80-react_func.png new file mode 100644 index 0000000..e3be31f Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/90-react_func.png new file mode 100644 index 0000000..d52fd7c Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/22/20-11-25-796643_172.16.0.65_&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/0-react_func.png new file mode 100644 index 0000000..eb32948 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/10-react_func.png new file mode 100644 index 0000000..f1ca51f Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/20-react_func.png new file mode 100644 index 0000000..64c9c72 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/30-react_func.png new file mode 100644 index 0000000..22dc119 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/40-react_func.png new file mode 100644 index 0000000..c3a2e3d Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/50-react_func.png new file mode 100644 index 0000000..fbd6a4a Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/60-react_func.png new file mode 100644 index 0000000..5d793b1 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/70-react_func.png new file mode 100644 index 0000000..f2570ab Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/80-react_func.png new file mode 100644 index 0000000..d00e326 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/90-react_func.png new file mode 100644 index 0000000..e7507ba Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-34-677795_192.168.0.192_&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..af7c241 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..1fd17ad Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..a5fed52 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..2500aed Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..be08086 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..83ad9de Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..21e2f61 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..a6bb97b Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..89ac049 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..c0509dc Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/06/23/00-07-41-475293_192.168.0.192_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..762537d Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..e390695 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..4f38d9a Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..4ea02bc Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..b6c3c87 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..4145c1c Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..0c6dddd Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..ac56cc5 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..3cb9b56 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..79623a0 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-21-03-593883_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..d41b575 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..33e9160 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..f62f630 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..76c5ca8 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..1bff208 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..ba1bfe0 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..10c5c18 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..e234a8d Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..0661741 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..b381f3c Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-25-26-804960_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..87f00c9 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..e8beac2 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..b813f1c Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..f5cc98b Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..52ef8b9 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..ed64fcc Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..119c77f Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..78ae7a2 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..7176241 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..55c96b8 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-27-50-996776_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..21e020a Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..25e72ca Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..b1693b6 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..22a813c Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..ef989ef Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..4273642 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..01902e1 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..df2473f Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..be59fb2 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..b6bb84f Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-30-28-185124_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..50603a8 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..de5acf1 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..59de264 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..d073f08 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..f3eb840 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..f74feb7 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..a8ea9a7 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..cd9eeeb Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..a79918f Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..d07cbab Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-31-04-861007_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..cc8973d Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..0d6a1b2 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..26b5ae0 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..a9ad4af Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..f78f554 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..f7bc743 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..6e5b05e Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..1022f78 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..dd97b99 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..5aaee57 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-36-31-125348_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..d1a3e9e Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..93a5a01 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..77f1bd4 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..8dc315d Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..e913dd5 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..30e7414 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..7ef04e7 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..907816b Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..4dba527 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..4f99138 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-37-01-642717_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..29c7073 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..277681d Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..8222acf Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..4aabb7a Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..65f123c Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..c9c6b43 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..9f3b359 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..de3cd0e Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..c7f7d05 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..a9c0b1b Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-30-288562_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..14aa162 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..bc70fd3 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..d263d10 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..564d528 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..809db30 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..dfe65fb Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..0bde2dc Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..b079820 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..3fc6004 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..0d8f7a1 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-38-55-598593_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..cbf26b1 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..269937c Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..34bd0cd Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..a8c3a09 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..3fcb89d Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..2b4c55f Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..b42ca46 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..f6018b7 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..19b02af Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..66674d2 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-44-46-961910_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..7982ad4 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..44ff0d3 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..4644e54 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..63fe7e0 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..3a1d170 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..10e8ab0 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..be9185b Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..0a2baf3 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..d965f20 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..39b7c61 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-46-01-405349_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..20a9fa5 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..f55626d Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..1a10fa3 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..35c1d18 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..2e329d5 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..43fa97f Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..4b4c8fc Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..1032039 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..f5140b4 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..46ca4fc Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-47-54-184710_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..bfaf7e3 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..c68c8ce Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..486ac6a Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..8997488 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..ab6ac99 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..c8e02fc Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..b968d04 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..0107f95 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..3b0d8c9 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..b65d419 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-49-27-292976_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/0-react_func.png new file mode 100644 index 0000000..a05b6fa Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-50-05-587086_172.16.0.33_&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/0-react_func.png new file mode 100644 index 0000000..97e286e Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-53-56-865123_172.16.0.33_&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/0-react_func.png new file mode 100644 index 0000000..18a4081 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-54-56-398017_172.16.0.33_&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/0-react_func.png new file mode 100644 index 0000000..3594670 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-55-20-143125_172.16.0.33_&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/0-react_func.png new file mode 100644 index 0000000..5b13edc Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/14-58-10-320236_172.16.0.33_&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/0-react_func.png new file mode 100644 index 0000000..4620372 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-23-935694_172.16.0.33_&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..235a03b Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..36550c2 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..5cc6a66 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..0c4abc8 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..d734481 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..7188790 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..f7fcb6a Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..7af2a6d Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..25c04ad Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..c38ecbf Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-02-31-719700_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/0-react_func.png new file mode 100644 index 0000000..cf6487c Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-28-137106_172.16.0.33_&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/0-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/0-react_func.png new file mode 100644 index 0000000..b13b66c Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/0-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/10-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/10-react_func.png new file mode 100644 index 0000000..3387339 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/10-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/20-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/20-react_func.png new file mode 100644 index 0000000..15a7c2f Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/20-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/30-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/30-react_func.png new file mode 100644 index 0000000..7716a11 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/30-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/40-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/40-react_func.png new file mode 100644 index 0000000..dc45bb7 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/40-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/50-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/50-react_func.png new file mode 100644 index 0000000..0cdab49 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/50-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/60-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/60-react_func.png new file mode 100644 index 0000000..89301bb Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/60-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/70-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/70-react_func.png new file mode 100644 index 0000000..f68a18c Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/70-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/80-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/80-react_func.png new file mode 100644 index 0000000..50b64f5 Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/80-react_func.png differ diff --git a/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/90-react_func.png b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/90-react_func.png new file mode 100644 index 0000000..f07593f Binary files /dev/null and b/test/test_data_root/results/test_manger_demo_task/2022/07/27/21-04-34-397714_172.16.0.33_&input_size=16&input_size=16/90-react_func.png differ diff --git a/test/test_plot.py b/test/test_plot.py new file mode 100644 index 0000000..bfc67a7 --- /dev/null +++ b/test/test_plot.py @@ -0,0 +1,26 @@ +# Created by xionghuichen at 2022/8/10 +# Email: chenxh@lamda.nju.edu.cn +from test._base import BaseTest +from RLA.easy_log.log_tools import DeleteLogTool, Filter +from RLA.easy_log.log_tools import ArchiveLogTool, ViewLogTool +from RLA.easy_log.tester import exp_manager + +import os + +class ScriptTest(BaseTest): + def test_plot(self): + from RLA import plot_func + data_root = 'test_data_root' + task = 'demo_task' + regs = [ + '2022/03/01/21-[12]*' + ] + _ = plot_func(data_root=data_root, task_table_name=task, regs=regs, split_keys=['learning_rate'], + metrics=['perf/mse']) + _ = plot_func(data_root=data_root, task_table_name=task, regs=regs, split_keys=['learning_rate'], + metrics=['perf/mse'], ylim=(0, 0.1)) + _ = plot_func(data_root=data_root, task_table_name=task, regs=regs, split_keys=['learning_rate'], + metrics=['perf/mse'], ylim=(0, 0.1), xlabel='epochs', ylabel='reward ratio', ) + _ = plot_func(data_root=data_root, task_table_name=task, regs=regs, split_keys=['learning_rate'], + metrics=['perf/mse'], ylim=(0, 0.1), xlabel='epochs', ylabel='reward ratio', + shaded_range=False, pretty=True)