returnn.__main__
#
Main entry point#
This is the main entry point, providing main()
.
See init_config()
for some arguments, or just run ./rnn.py --help
.
See Technological Overview for a technical overview.
- returnn.__main__.init_config(config_filename=None, command_line_options=(), default_config=None, extra_updates=None)[source]#
- Parameters:
config_filename (str|None) –
command_line_options (list[str]|tuple[str]) – e.g.
sys.argv[1:]
default_config (dict[str]|None) –
extra_updates (dict[str]|None) –
Initializes the global config. There are multiple sources which are used to init the config:
configFilename
, and maybe first item ofcommandLineOptions
interpret as config filenameother options via
commandLineOptions
extra_updates
Note about the order/priority of these:
extra_updates
options from
commandLineOptions
configFilename
config filename from
commandLineOptions[0]
extra_updates
options from
commandLineOptions
extra_updates
andcommandLineOptions
are used twice so that they are available when the config is loaded, which thus has access to them, and can e.g. use them via Python code. However, the purpose is that they overwrite any option from the config; that is why we apply them again in the end.commandLineOptions
is applied afterextra_updates
so that the user has still the possibility to overwrite anything set byextra_updates
.
- returnn.__main__.get_cache_byte_sizes()[source]#
- Return type:
(int,int,int)
:returns cache size in bytes for (train,dev,eval)
- returnn.__main__.load_data(config, cache_byte_size, files_config_key, **kwargs)[source]#
- Parameters:
config (Config) –
cache_byte_size (int) –
files_config_key (str) – such as “train” or “dev”
kwargs – passed on to init_dataset() or init_dataset_via_str()
- Return type:
(Dataset,int)
:returns the dataset, and the cache byte size left over if we cache the whole dataset.
- returnn.__main__.init_engine()[source]#
Initializes global
engine
, for examplereturnn.tf.engine.Engine
.
- returnn.__main__.returnn_greeting(config_filename=None, command_line_options=None)[source]#
Prints some RETURNN greeting to the log.
- Parameters:
config_filename (str|None) –
command_line_options (list[str]|None) –
- returnn.__main__.init_backend_engine()[source]#
Selects the backend engine (TensorFlow, PyTorch, Theano, or whatever) and does corresponding initialization and preparation.
This does not initialize the global
engine
object yet. Seeinit_engine()
for that.
- returnn.__main__.init(config_filename=None, command_line_options=(), config_updates=None, extra_greeting=None)[source]#
- Parameters:
config_filename (str|None) –
command_line_options (tuple[str]|list[str]|None) – e.g. sys.argv[1:]
config_updates (dict[str]|None) – see
init_config()
extra_greeting (str|None) –
- returnn.__main__.finalize(error_occurred=False)[source]#
Cleanup at the end.
- Parameters:
error_occurred (bool) –
- returnn.__main__.need_data()[source]#
- Returns:
whether we need to init the data (call
init_data()
) for the current task (execute_main_task()
)- Return type:
bool