| 114 | |
| 115 | |
| 116 | void SaveSummaryToFile(const TFeaturesSelectionSummary& summary, const TString& resultPath) { |
| 117 | auto summaryJson = ToJson(summary); |
| 118 | TOFStream out(resultPath); |
| 119 | NJson::TJsonWriterConfig config; |
| 120 | config.FormatOutput = true; |
| 121 | config.SortKeys = true; |
| 122 | WriteJson(&out, &summaryJson, config); |
| 123 | } |
| 124 | |
| 125 | |
| 126 | int mode_select_features(int argc, const char* argv[]) { |
no test coverage detected