psi-model-param.proto 447 B

123456789101112131415161718
  1. syntax = "proto3";
  2. package com.webank.ai.fate.core.mlmodel.buffer;
  3. option java_outer_classname = "BoostTreeModelParamProto";
  4. message FeaturePsi{
  5. string feature_name = 1;
  6. repeated double psi = 2;
  7. repeated string interval = 3;
  8. repeated double expect_perc = 4;
  9. repeated double actual_perc = 5;
  10. }
  11. message PsiSummary{
  12. map<string, double> total_score = 1;
  13. repeated FeaturePsi feature_psi = 2;
  14. string model_name = 3;
  15. }