├── .gitignore ├── readme.md ├── requirement.txt ├── setup.py ├── smart_logger ├── __init__.py ├── common │ ├── __init__.py │ ├── common_config.py │ ├── experiment_config.py │ ├── page_config.py │ ├── plot_config.py │ ├── serialize_config.py │ └── set_config.py ├── front_page │ ├── __init__.py │ ├── experiment_data_loader.py │ ├── page.py │ ├── static │ │ ├── css │ │ │ └── style.css │ │ └── imgs │ │ │ ├── icon.ico │ │ │ └── sunset_linear.jpg │ └── template │ │ ├── 404.html │ │ ├── t_experiment.html │ │ ├── t_hello.html │ │ ├── t_param_adapt.html │ │ ├── t_parameter_display.html │ │ ├── t_plot.html │ │ └── t_table.html ├── htmlpage.py ├── parameter │ ├── ParameterTemplate.py │ ├── ParameterTemplate2.py │ └── __init__.py ├── report │ ├── __init__.py │ ├── auto_plot.py │ └── plotting.py ├── scripts │ ├── __init__.py │ ├── generate_tmuxp_base.py │ ├── logger_from_param.py │ ├── modify_config.py │ ├── modify_csv.py │ └── timer.py ├── util_logger │ ├── __init__.py │ ├── logger.py │ └── logger_base.py └── version.py ├── sml_tutorial ├── basic_log_demo.py ├── common_config │ ├── common_config.yaml │ ├── experiment_config.yaml │ └── load_config.py ├── demo_parameter │ └── Parameter.py ├── generate_data.py ├── generate_parallel_tasks.py ├── html_demo.py ├── htmlpage.py ├── img_asset │ └── full_merge_image.jpg ├── load_config_file.py ├── main_logger_and_parameter.py ├── main_logger_only.py ├── main_parameter_only.py ├── multiprocess_test.py ├── parameter │ └── Parameter.py └── plotting_demo.py └── tutorial.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/.gitignore -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/readme.md -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/requirement.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/setup.py -------------------------------------------------------------------------------- /smart_logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/__init__.py -------------------------------------------------------------------------------- /smart_logger/common/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /smart_logger/common/common_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/common/common_config.py -------------------------------------------------------------------------------- /smart_logger/common/experiment_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/common/experiment_config.py -------------------------------------------------------------------------------- /smart_logger/common/page_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/common/page_config.py -------------------------------------------------------------------------------- /smart_logger/common/plot_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/common/plot_config.py -------------------------------------------------------------------------------- /smart_logger/common/serialize_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/common/serialize_config.py -------------------------------------------------------------------------------- /smart_logger/common/set_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/common/set_config.py -------------------------------------------------------------------------------- /smart_logger/front_page/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smart_logger/front_page/experiment_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/front_page/experiment_data_loader.py -------------------------------------------------------------------------------- /smart_logger/front_page/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/front_page/page.py -------------------------------------------------------------------------------- /smart_logger/front_page/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/front_page/static/css/style.css -------------------------------------------------------------------------------- /smart_logger/front_page/static/imgs/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/front_page/static/imgs/icon.ico -------------------------------------------------------------------------------- /smart_logger/front_page/static/imgs/sunset_linear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/front_page/static/imgs/sunset_linear.jpg -------------------------------------------------------------------------------- /smart_logger/front_page/template/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/front_page/template/404.html -------------------------------------------------------------------------------- /smart_logger/front_page/template/t_experiment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/front_page/template/t_experiment.html -------------------------------------------------------------------------------- /smart_logger/front_page/template/t_hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/front_page/template/t_hello.html -------------------------------------------------------------------------------- /smart_logger/front_page/template/t_param_adapt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/front_page/template/t_param_adapt.html -------------------------------------------------------------------------------- /smart_logger/front_page/template/t_parameter_display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/front_page/template/t_parameter_display.html -------------------------------------------------------------------------------- /smart_logger/front_page/template/t_plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/front_page/template/t_plot.html -------------------------------------------------------------------------------- /smart_logger/front_page/template/t_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/front_page/template/t_table.html -------------------------------------------------------------------------------- /smart_logger/htmlpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/htmlpage.py -------------------------------------------------------------------------------- /smart_logger/parameter/ParameterTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/parameter/ParameterTemplate.py -------------------------------------------------------------------------------- /smart_logger/parameter/ParameterTemplate2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/parameter/ParameterTemplate2.py -------------------------------------------------------------------------------- /smart_logger/parameter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smart_logger/report/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smart_logger/report/auto_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/report/auto_plot.py -------------------------------------------------------------------------------- /smart_logger/report/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/report/plotting.py -------------------------------------------------------------------------------- /smart_logger/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smart_logger/scripts/generate_tmuxp_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/scripts/generate_tmuxp_base.py -------------------------------------------------------------------------------- /smart_logger/scripts/logger_from_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/scripts/logger_from_param.py -------------------------------------------------------------------------------- /smart_logger/scripts/modify_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/scripts/modify_config.py -------------------------------------------------------------------------------- /smart_logger/scripts/modify_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/scripts/modify_csv.py -------------------------------------------------------------------------------- /smart_logger/scripts/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/scripts/timer.py -------------------------------------------------------------------------------- /smart_logger/util_logger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smart_logger/util_logger/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/util_logger/logger.py -------------------------------------------------------------------------------- /smart_logger/util_logger/logger_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/smart_logger/util_logger/logger_base.py -------------------------------------------------------------------------------- /smart_logger/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.0" 2 | -------------------------------------------------------------------------------- /sml_tutorial/basic_log_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/basic_log_demo.py -------------------------------------------------------------------------------- /sml_tutorial/common_config/common_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/common_config/common_config.yaml -------------------------------------------------------------------------------- /sml_tutorial/common_config/experiment_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/common_config/experiment_config.yaml -------------------------------------------------------------------------------- /sml_tutorial/common_config/load_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/common_config/load_config.py -------------------------------------------------------------------------------- /sml_tutorial/demo_parameter/Parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/demo_parameter/Parameter.py -------------------------------------------------------------------------------- /sml_tutorial/generate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/generate_data.py -------------------------------------------------------------------------------- /sml_tutorial/generate_parallel_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/generate_parallel_tasks.py -------------------------------------------------------------------------------- /sml_tutorial/html_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/html_demo.py -------------------------------------------------------------------------------- /sml_tutorial/htmlpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/htmlpage.py -------------------------------------------------------------------------------- /sml_tutorial/img_asset/full_merge_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/img_asset/full_merge_image.jpg -------------------------------------------------------------------------------- /sml_tutorial/load_config_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/load_config_file.py -------------------------------------------------------------------------------- /sml_tutorial/main_logger_and_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/main_logger_and_parameter.py -------------------------------------------------------------------------------- /sml_tutorial/main_logger_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/main_logger_only.py -------------------------------------------------------------------------------- /sml_tutorial/main_parameter_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/main_parameter_only.py -------------------------------------------------------------------------------- /sml_tutorial/multiprocess_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/multiprocess_test.py -------------------------------------------------------------------------------- /sml_tutorial/parameter/Parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/parameter/Parameter.py -------------------------------------------------------------------------------- /sml_tutorial/plotting_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/sml_tutorial/plotting_demo.py -------------------------------------------------------------------------------- /tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FanmingL/SmartLogger/HEAD/tutorial.md --------------------------------------------------------------------------------