mlpack 3.4.2
print_defn.hpp
Go to the documentation of this file.
1
12#ifndef MLPACK_BINDINGS_PYTHON_PRINT_DEFN_HPP
13#define MLPACK_BINDINGS_PYTHON_PRINT_DEFN_HPP
14
15#include <mlpack/prereqs.hpp>
16
17namespace mlpack {
18namespace bindings {
19namespace python {
20
25template<typename T>
27 const void* /* input */,
28 void* /* output */)
29{
30 // Make sure that we don't use names that are Python keywords.
31 std::string name = (d.name == "lambda") ? "lambda_" : d.name;
32
33 std::cout << name;
34 if (std::is_same<T, bool>::value)
35 std::cout << "=False";
36 else if (!d.required)
37 std::cout << "=None";
38}
39
40} // namespace python
41} // namespace bindings
42} // namespace mlpack
43
44#endif
if(NOT BUILD_GO_SHLIB) macro(add_go_binding name) endmacro() return() endif() endmacro() macro(post_go_setup) if(BUILD_GO_BINDINGS) file(APPEND "$
Definition: CMakeLists.txt:3
python
Definition: CMakeLists.txt:6
void PrintDefn(util::ParamData &d, const void *, void *)
Print the definition for a Python binding parameter to stdout.
Definition: print_defn.hpp:26
Linear algebra utility functions, generally performed on matrices or vectors.
Definition: cv.hpp:1
The core includes that mlpack expects; standard C++ includes and Armadillo.
This structure holds all of the information about a single parameter, including its value (which is s...
Definition: param_data.hpp:53
bool required
True if this option is required.
Definition: param_data.hpp:71
std::string name
Name of this parameter.
Definition: param_data.hpp:56