Skip to content

Commit

Permalink
Updated test resources
Browse files Browse the repository at this point in the history
  • Loading branch information
vruusmann committed Sep 21, 2023
1 parent aba4190 commit a05cf9b
Show file tree
Hide file tree
Showing 8 changed files with 19,553 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,14 @@ public void evaluateExpressionVersicolor() throws Exception {
public void evaluateGBDTLRVersicolor() throws Exception {
evaluate("GBDTLR", VERSICOLOR);
}

@Test
public void evaluateEstimatorChainWine() throws Exception {
evaluate("EstimatorChain", "Wine");
}

@Test
public void evaluateSelectFirstWine() throws Exception {
evaluate("SelectFirst", "Wine");
}
}
5 changes: 5 additions & 0 deletions pmml-sklearn/src/test/resources/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,8 @@ def load_wheat(name):
df = load_csv(name)
print(df.dtypes)
return df

def load_wine(name):
df = load_csv(name)
print(df.dtypes)
return df
Loading

0 comments on commit a05cf9b

Please sign in to comment.