Parses the command line for parameters and holds user-specified parameters. More...

Public Types

typedef std::map< std::string, std::map< std::string, void(*)(util::ParamData &, const void *, void *)> > FunctionMapType
 Map for functions and types. More...

 

Static Public Member Functions

static void Add (util::ParamData &&d)
 Adds a parameter to the hierarchy; use the PARAM_*() macros instead of this (i.e. More...

 
static std::map< char, std::string > & Aliases ()
 Return a modifiable list of aliases that IO knows about. More...

 
static void ClearSettings ()
 Clear all of the settings, removing all parameters and function mappings. More...

 
template
static T & GetParam (const std::string &identifier)
 Get the value of type T found while parsing. More...

 
template
static std::string GetPrintableParam (const std::string &identifier)
 Cast the given parameter of the given type to a short, printable std::string, for use in status messages. More...

 
template
static T & GetRawParam (const std::string &identifier)
 Get the raw value of the parameter before any processing that GetParam() might normally do. More...

 
static IOGetSingleton ()
 Retrieve the singleton. More...

 
static bool HasParam (const std::string &identifier)
 See if the specified flag was found while parsing. More...

 
static void MakeInPlaceCopy (const std::string &outputParamName, const std::string &inputParamName)
 Given two (matrix) parameters, ensure that the first is an in-place copy of the second. More...

 
static std::map< std::string, util::ParamData > & Parameters ()
 Return a modifiable list of parameters that IO knows about. More...

 
static std::string ProgramName ()
 Get the program name as set by the BINDING_NAME() macro. More...

 
static void RestoreSettings (const std::string &name, const bool fatal=true)
 Restore all of the parameters and function mappings of the given name, if they exist. More...

 
static void SetPassed (const std::string &name)
 Mark a particular parameter as passed. More...

 
static void StoreSettings (const std::string &name)
 Take all parameters and function mappings and store them, under the given name. More...

 

Public Attributes

bool didParse
 True, if IO was used to parse command line options. More...

 
util::BindingDetails doc
 Holds the bindingDetails objects. More...

 
FunctionMapType functionMap
 
std::string programName
 Holds the name of the program for –version. More...

 
Timers timer
 Holds the timer objects. More...

 

Detailed Description

Parses the command line for parameters and holds user-specified parameters.

The IO class is a subsystem by which parameters for machine learning methods can be specified and accessed. In conjunction with the macros PARAM_DOUBLE, PARAM_INT, PARAM_STRING, PARAM_FLAG, and others, this class aims to make user configurability of mlpack methods very easy. There are only three methods in IO that a user should need: IO::ParseCommandLine(), IO::GetParam(), and IO::HasParam() (in addition to the PARAM_*() macros).

Adding parameters to a program

$ ./executable --bar=5
Note
The = is optional; a space can also be used.

A parameter is specified by using one of the following macros (this is not a complete list; see core/io/io.hpp):

Parameters
IDName of the parameter.
DESCShort description of the parameter (one/two sentences).
ALIASAn alias for the parameter.
DEFDefault value of the parameter.

The flag (boolean) type automatically defaults to false; it is specified merely as a flag on the command line (no '=true' is required).

Here is an example of a few parameters being defined; this is for the KNN binding (methods/neighbor_search/knn_main.cpp):

PARAM_STRING_REQ("reference_file", "File containing the reference dataset.",
"r");
PARAM_STRING_REQ("distances_file", "File to output distances into.", "d");
PARAM_STRING_REQ("neighbors_file", "File to output neighbors into.", "n");
PARAM_INT_REQ("k", "Number of furthest neighbors to find.", "k");
PARAM_STRING("query_file", "File containing query points (optional).", "q",
"");
PARAM_INT("leaf_size", "Leaf size for tree building.", "l", 20);
PARAM_FLAG("naive", "If true, O(n^2) naive mode is used for computation.",
"N");
PARAM_FLAG("single_mode", "If true, single-tree search is used (as opposed "
"to dual-tree search.", "s");

More documentation is available on the PARAM_*() macros in the documentation for core/io/io.hpp.

Documenting the program itself

In addition to allowing documentation for each individual parameter and module, the BINDING_NAME() macro provides support for documenting the programName, BINDING_SHORT_DESC() macro provides support for documenting the shortDescription, BINDING_LONG_DESC() macro provides support for documenting the longDescription, the BINDING_EXAMPLE() macro provides support for documenting the example and the BINDING_SEE_ALSO() macro provides support for documenting the seeAlso. There should only be one instance of the BINDING_NAME(), BINDING_SHORT_DESC() and BINDING_LONG_DESC() macros and there can be multiple instance of BINDING_EXAMPLE() and BINDING_SEE_ALSO() macro. Below is an example:

BINDING_NAME("Maximum Variance Unfolding");
BINDING_SHORT_DESC("An implementation of Maximum Variance Unfolding");
BINDING_LONG_DESC( "This program performs maximum "
"variance unfolding on the given dataset, writing a lower-dimensional "
"unfolded dataset to the given output file.");
BINDING_EXAMPLE("mvu", "input", "dataset", "new_dim", 5, "output", "output");
BINDING_SEE_ALSO("Perceptron", "#perceptron");

This description should be verbose, and explain to a non-expert user what the program does and how to use it. If relevant, paper citations should be included.

Parsing the command line with IO

To have IO parse the command line at the beginning of code execution, only a call to ParseCommandLine() is necessary:

int main(int argc, char** argv)
{
IO::ParseCommandLine(argc, argv);
...
}

IO provides –help and –info options which give nicely formatted documentation of each option; the documentation is generated from the DESC arguments in the PARAM_*() macros.

Getting parameters with IO

When the parameters have been defined, the next important thing is how to access them. For this, the HasParam() and GetParam() methods are used. For instance, to see if the user passed the flag (boolean) "naive":

if (IO::HasParam("naive"))
{
Log::Info << "Naive has been passed!" << std::endl;
}

To get the value of a parameter, such as a string, use GetParam:

const std::string filename = IO::GetParam("filename");
Note
Options should only be defined in files which define main() (that is, main bindings). If options are defined elsewhere, they may be spuriously included into other bindings and confuse users. Similarly, if your binding has options which you did not define, it is probably because the option is defined somewhere else and included in your binding.
Bug:
The COUNTER variable is used in most cases to guarantee a unique global identifier for options declared using the PARAM_*() macros. However, not all compilers have this support–most notably, gcc < 4.3. In that case, the LINE macro is used as an attempt to get a unique global identifier, but collisions are still possible, and they produce bizarre error messages. See https://github.com/mlpack/mlpack/issues/100 for more information.

Definition at line 172 of file io.hpp.

Member Typedef Documentation

◆ FunctionMapType

typedef std::maputil::ParamData&, const void*, void*)> > FunctionMapType

Map for functions and types.

Use as functionMap["typename"]["functionName"].

Definition at line 298 of file io.hpp.

Member Function Documentation

◆ Add()

static void Add ( util::ParamData &&  d)
static

Adds a parameter to the hierarchy; use the PARAM_*() macros instead of this (i.e.

PARAM_INT()).

Parameters
dUtility structure holding parameter data.

Referenced by CLIOption< N >::CLIOption(), GoOption< T >::GoOption(), JuliaOption< T >::JuliaOption(), MDOption< T >::MDOption(), PyOption< T >::PyOption(), ROption< T >::ROption(), and TestOption< N >::TestOption().

◆ Aliases()

static std::map& Aliases ( )
static

Return a modifiable list of aliases that IO knows about.

◆ ClearSettings()

static void ClearSettings ( )
static

◆ GetParam()

static T& GetParam ( const std::string &  identifier)
static

Get the value of type T found while parsing.

You can set the value using this reference safely.

Parameters
identifierThe name of the parameter in question.

◆ GetPrintableParam()

static std::string GetPrintableParam ( const std::string &  identifier)
static

Cast the given parameter of the given type to a short, printable std::string, for use in status messages.

Ideally the message returned here should be only a handful of characters, and certainly no longer than one line.

Parameters
identifierThe name of the parameter in question.

◆ GetRawParam()

static T& GetRawParam ( const std::string &  identifier)
static

Get the raw value of the parameter before any processing that GetParam() might normally do.

So, e.g., for command-line programs, this does not perform any data loading or manipulation like GetParam() does. So if you want to access a matrix or model (or similar) parameter before it is loaded, this is the method to use.

Parameters
identifierThe name of the parameter in question.

◆ GetSingleton()

static IO& GetSingleton ( )
static

Retrieve the singleton.

As an end user, if you are just using the IO object, you should not need to use this function—the other static functions should be sufficient.

In this case, the singleton is used to store data for the static methods, as there is no point in defining static methods only to have users call private instance methods.

Returns
The singleton instance for use in the static methods.

Referenced by CLIOption< N >::CLIOption(), mlpack::bindings::cli::EndProgram(), mlpack::util::GetParamWithInfo(), GoOption< T >::GoOption(), JuliaOption< T >::JuliaOption(), MDOption< T >::MDOption(), mlpack::bindings::cli::ParseCommandLine(), PyOption< T >::PyOption(), mlpack::util::ResetTimers(), ROption< T >::ROption(), and TestOption< N >::TestOption().

◆ HasParam()

static bool HasParam ( const std::string &  identifier)
static

See if the specified flag was found while parsing.

Parameters
identifierThe name of the parameter in question.

Referenced by mlpack::bindings::cli::EndProgram(), and mlpack::bindings::cli::ParseCommandLine().

◆ MakeInPlaceCopy()

static void MakeInPlaceCopy ( const std::string &  outputParamName,
const std::string &  inputParamName 
)
static

Given two (matrix) parameters, ensure that the first is an in-place copy of the second.

This will generally do nothing (as the bindings already do this automatically), except for command-line bindings, where we need to ensure that the output filename is the same as the input filename.

Parameters
outputParamNameName of output (matrix) parameter.
inputParamNameName of input (matrix) parameter.

◆ Parameters()

static std::maputil::ParamData>& Parameters ( )
static

◆ ProgramName()

static std::string ProgramName ( )
static

Get the program name as set by the BINDING_NAME() macro.

Referenced by mlpack::bindings::cli::ParseCommandLine(), and ROption< T >::ROption().

◆ RestoreSettings()

static void RestoreSettings ( const std::string &  name,
const bool  fatal = true 
)
static

Restore all of the parameters and function mappings of the given name, if they exist.

A std::invalid_argument exception will be thrown if fatal is true and no settings with the given name have been stored (with StoreSettings()).

Parameters
nameName of settings to restore.
fatalWhether to throw an exception on an unknown name.

Referenced by GoOption< T >::GoOption(), JuliaOption< T >::JuliaOption(), MDOption< T >::MDOption(), PyOption< T >::PyOption(), ROption< T >::ROption(), and TestOption< N >::TestOption().

◆ SetPassed()

static void SetPassed ( const std::string &  name)
static

Mark a particular parameter as passed.

Parameters
nameName of the parameter.

Referenced by mlpack::util::SetInputParam(), and TestOption< N >::TestOption().

◆ StoreSettings()

static void StoreSettings ( const std::string &  name)
static

Take all parameters and function mappings and store them, under the given name.

This can later be restored with RestoreSettings(). If settings have already been saved under the given name, they will be overwritten. This also clears the current parameters and function map.

Parameters
nameName of settings to save.

Referenced by GoOption< T >::GoOption(), JuliaOption< T >::JuliaOption(), MDOption< T >::MDOption(), PyOption< T >::PyOption(), ROption< T >::ROption(), and TestOption< N >::TestOption().

Member Data Documentation

◆ didParse

bool didParse

True, if IO was used to parse command line options.

Definition at line 308 of file io.hpp.

Referenced by mlpack::bindings::cli::ParseCommandLine().

◆ doc

Holds the bindingDetails objects.

Definition at line 321 of file io.hpp.

◆ functionMap

◆ programName

std::string programName

Holds the name of the program for –version.

This is the true program name (argv[0]) not what is given in BindingDetails.

Definition at line 312 of file io.hpp.

◆ timer

Timers timer

Holds the timer objects.

Definition at line 315 of file io.hpp.

Referenced by mlpack::bindings::cli::EndProgram(), mlpack::util::GetParamWithInfo(), and mlpack::util::ResetTimers().


The documentation for this class was generated from the following file:
  • /home/jenkins-mlpack/mlpack.org/_src/mlpack-3.4.2/src/mlpack/core/util/io.hpp