Skip to content

Commit

Permalink
update isMultiPartyMlJob
Browse files Browse the repository at this point in the history
  • Loading branch information
cyjseagull committed Oct 30, 2024
1 parent decbe3d commit f3a54eb
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ public static Boolean isMultiPartyMlJob(String jobType) {
return jobType.compareToIgnoreCase(XGB_TRAIN.getType()) == 0
|| jobType.compareToIgnoreCase(XGB_PREDICT.getType()) == 0
|| jobType.compareToIgnoreCase(LR_TRAIN.getType()) == 0
|| jobType.compareToIgnoreCase(LR_PREDICT.getType()) == 0;
|| jobType.compareToIgnoreCase(LR_PREDICT.getType()) == 0
|| jobType.compareToIgnoreCase(MLPreprocessing.getType()) == 0
|| jobType.compareToIgnoreCase(FeatureEngineer.getType()) == 0;
}

public static Boolean isPSIJob(String jobType) {
Expand Down

0 comments on commit f3a54eb

Please sign in to comment.