mirror of
https://github.com/gryf/coach.git
synced 2025-12-17 11:10:20 +01:00
64 lines
2.2 KiB
Python
64 lines
2.2 KiB
Python
#
|
|
# Copyright (c) 2017 Intel Corporation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
"""
|
|
To run Coach Dashboard, run the following command:
|
|
python3 dashboard.py
|
|
"""
|
|
import os
|
|
|
|
from dashboard_components.experiment_board import display_directory_group, display_files, averaging_slider_dummy_source
|
|
from dashboard_components.globals import doc
|
|
import dashboard_components.boards # needed for setting the layouts global variable
|
|
from dashboard_components.landing_page import landing_page
|
|
|
|
doc.add_root(landing_page)
|
|
|
|
import argparse
|
|
import glob
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('-d', '--experiment_dir',
|
|
help="(string) The path of an experiment dir to open",
|
|
default=None,
|
|
type=str)
|
|
parser.add_argument('-f', '--experiment_files',
|
|
help="(string) The path of an experiment file to open",
|
|
default=None,
|
|
type=str)
|
|
args = parser.parse_args()
|
|
|
|
if args.experiment_dir:
|
|
doc.add_timeout_callback(lambda: display_directory_group(args.experiment_dir), 1000)
|
|
elif args.experiment_files:
|
|
files = []
|
|
for file_pattern in args.experiment_files:
|
|
files.extend(glob.glob(args.experiment_files))
|
|
doc.add_timeout_callback(lambda: display_files(files), 1000)
|
|
|
|
if __name__ == "__main__":
|
|
from utils import get_open_port
|
|
|
|
command = 'bokeh serve --show dashboard.py --port {}'.format(get_open_port())
|
|
if args.experiment_dir or args.experiment_files:
|
|
command += ' --args'
|
|
if args.experiment_dir:
|
|
command += ' --experiment_dir {}'.format(args.experiment_dir)
|
|
if args.experiment_files:
|
|
command += ' --experiment_files {}'.format(args.experiment_files)
|
|
|
|
os.system(command)
|