param_feature_selection.json 588 B

12345678910111213141516171819202122
  1. {
  2. "FeatureSelectionParam": {
  3. "method": "fit",
  4. "filter_method": ["unique_value", "iv_value_thres",
  5. "coefficient_of_variation_value_thres", "outlier_cols"],
  6. "select_cols": -1,
  7. "local_only": false,
  8. "iv_value_param" :{
  9. "value_threshold": 1.0
  10. },
  11. "iv_percentile_param": {
  12. "percentile_threshold": 1.0
  13. },
  14. "coe_param": {
  15. "value_threshold": 0.3
  16. },
  17. "outlier_param": {
  18. "percentile": 1.0,
  19. "upper_threshold": 1000.0
  20. }
  21. }
  22. }