Command Line Tools

dlt-plot

dlt.viz.plot_csv(use_args=None)

Plots data from csv files using pandas.

Also usable as a command line program dlt-plot.

Parameters:use_args (dict, optional) – Arguments to use instead of (command line) args.

Example

Use with command line:

$ dlt-plot -f training.csv --sub_avg 500

From inside a script:

>>> dlt.viz.plot_csv(['--file', 'training.csv', '--sub_avg', '500'])

Note

For information on available functionality use:

$ dlt-plot --help

dlt-dispatch

dlt.util.dispatch()

Creates a self contained experiment in a directory

Also usable as a command line program dlt-dispatch.

Example

Use with command line:

$ dlt-dispatch test_low_lr -d ~/experiments -m main.py -e models.py data.py -c settings_low_lr.cfg

Note

For information on available functionality use:

$ dlt-dispatch --help