Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable metrics if epss-{percentile,probability} is set
Enable metrics if epss-percentile or epss-probability is set by the user (i.e. is above 0). This commit also fix this following broken logic which allowed negative epss values: if float(args["epss_percentile"]) > 0 or float(args["epss_percentile"]) < 100: replaced by: if float(args["epss_percentile"]) > 0 and float(args["epss_percentile"]) <= 100: Tentative fix for intel#3625 Signed-off-by: Fabrice Fontaine <[email protected]>
- Loading branch information