javac GenerateSVMSubsetRenormalize.java
java GenerateSVMSubsetRenormalize subsetFile svmFormattedInputFile svmFormattedOutputFile numberOfEntriesInSubsetFile numberOfSVMFeatures
As an example, if the subsetFile is the list of important triples called importantTriples.500 and contains 500 indices of interest, the SVM file with all features is randomClassificationTestGroup (one of the outputs from the bootstrapping processes) and has 8000 features, and one desires the newly formatted SVM file to be called randomClassificationTestGroup.decimated500, the command line would be:
java GenerateSVMSubsetRenormalize importantTriples.500 randomClassificationTestGroup randomClassificationTestGroup.decimated500 500 8000