Skip to content

Commit

Permalink
Missed an arg, not sure if I should worry about needing Label Encoder…
Browse files Browse the repository at this point in the history
… to persist?
  • Loading branch information
AndrewQuijano committed Mar 25, 2024
1 parent 0d9587c commit 7304b3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/weka/finito/client.java
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ public void run() {
logger.info("Not contacting server-site. Seems you just want to test on the" +
" same PPDT but different VALUES");
}
feature = read_features(features_file, paillier_public_key, dgk_public_key, precision);
feature = read_features(features_file, paillier_public_key, dgk_public_key, precision, label_encoder);
}
catch (Exception e) {
throw new RuntimeException(e);
Expand Down

0 comments on commit 7304b3d

Please sign in to comment.