OryxProject / oryx

@@ -46,7 +46,7 @@
Loading
46 46
 */
47 47
public final class PMMLUtils {
48 48
49 -
  public static final String VERSION = "4.3";
49 +
  public static final String VERSION = "4.4";
50 50
51 51
  private PMMLUtils() {}
52 52

@@ -142,7 +142,7 @@
Loading
142 142
   */
143 143
  public static MiningSchema buildMiningSchema(InputSchema schema, double[] importances) {
144 144
    Preconditions.checkArgument(
145 -
        importances == null || (importances.length == schema.getNumPredictors()));
145 +
        importances == null || importances.length == schema.getNumPredictors());
146 146
    List<String> featureNames = schema.getFeatureNames();
147 147
    List<MiningField> miningFields = new ArrayList<>();
148 148
    for (int featureIndex = 0; featureIndex < featureNames.size(); featureIndex++) {
Files Complexity Coverage
app 75.93% 85.67%
framework 70.80% 80.22%
Project Totals (157 files) 74.28% 83.75%
1384.1
TRAVIS_OS_NAME=linux
openjdk8=

No yaml found.

Create your codecov.yml to customize your Codecov experience

Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file. The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files. The size and color of each slice is representing the number of statements and the coverage, respectively.
Grid
Each block represents a single file in the project. The size and color of each block is represented by the number of statements and the coverage, respectively.
Loading