<p>In <a href="https://github.com/mlpack/mlpack/pull/650#discussion_r64743312">src/mlpack/methods/preprocess/preprocess_split_main.cpp</a>:</p>
<pre style='color:#555'>&gt; +#include &lt;mlpack/core.hpp&gt;
&gt; +#include &lt;mlpack/core/data/split_data.hpp&gt;
&gt; +
&gt; +PROGRAM_INFO(&quot;Split into Train and Test Data&quot;, &quot;This &quot;
&gt; +    &quot;utility takes data and labels and split into a training &quot;
&gt; +    &quot;set and a test set.&quot;);
&gt; +
&gt; +// Define parameters for data
&gt; +PARAM_STRING_REQ(&quot;input_file&quot;, &quot;File containing data,&quot;, &quot;i&quot;);
&gt; +PARAM_STRING_REQ(&quot;output_train_data&quot;, &quot;File name to save train data&quot;, &quot;d&quot;);
&gt; +PARAM_STRING_REQ(&quot;output_test_data&quot;, &quot;File name to save test data&quot;, &quot;D&quot;);
&gt; +
&gt; +// Define parameters for labels
&gt; +PARAM_STRING_REQ(&quot;input_label&quot;, &quot;File containing labels&quot;, &quot;I&quot;);
&gt; +PARAM_STRING_REQ(&quot;output_train_label&quot;, &quot;File name to save train label&quot;, &quot;l&quot;);
&gt; +PARAM_STRING_REQ(&quot;output_test_label&quot;, &quot;File name to save test label&quot;, &quot;L&quot;);
</pre>
<p>I think for consistency with other programs in mlpack I would go with parameters --training_file (-t), --training_labels_file (-l), --test_file (-T), and --test_labels_file (-L) for the output parameters.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">&mdash;<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly or <a href="https://github.com/mlpack/mlpack/pull/650/files/a35c39061245b0ccb757f65dfe6626b8a3c04d9c#r64743312">view it on GitHub</a><img alt="" height="1" src="https://github.com/notifications/beacon/AJ4bFBgkf7p9oUuhnp_0JpLcJBJ3-EDnks5qFZ5ygaJpZM4IneDD.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/mlpack/mlpack/pull/650/files/a35c39061245b0ccb757f65dfe6626b8a3c04d9c#r64743312"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>