Intel® Movidius™ Neural Compute SDK

View the Project on GitHub

class GlobalOption(enum.Enum)

Info Value
Package mvnc
Module mvncapi
Version 2.0
See also global_set_option(), global_get_option()

GlobalOption is an enumeration that defines application-level options that can be read with global_get_option() or set with global_set_option().

Option Option Type Possible Values Description
RW_LOG_LEVEL int 0, 1, 2, 3, 4 The logging level for the application:
0 = MVLOG_DEBUG, debug and above (full verbosity)
1 = MVLOG_INFO, info and above
2 = MVLOG_WARN, warnings and above (default)
3 = MVLOG_ERROR, errors and above
4 = MVLOG_FATAL, fatal only
RO_API_VERSION numpy.ndarray of 4 unsigned ints [major, minor, hotfix, release] The API version.

Notes