ppforest2 v0.1.0
Projection Pursuit Decision Trees and Random Forests
Loading...
Searching...
No Matches
Predict.hpp
Go to the documentation of this file.
1
5#pragma once
6
7#include "cli/CLIOptions.hpp"
8
9namespace CLI {
10 class App;
11}
12
13namespace ppforest2::cli {
15 void setup_predict(CLI::App& app, Params& params);
16
21 int run_predict(Params const& params);
22}
CLI argument parsing, validation, and configuration for ppforest2.
Definition Benchmark.hpp:21
Command-line interface: argument parsing, subcommands, and benchmark/evaluation orchestration.
Definition Benchmark.hpp:25
void setup_predict(CLI::App &app, Params &params)
Register predict subcommand options on app.
int run_predict(Params const &params)
Run the predict subcommand.
All CLI options and runtime parameters.
Definition CLIOptions.hpp:33