123456789101112131415161718192021222324252627282930313233 |
- syntax = "proto3";
- package com.webank.ai.fate.core.mlmodel.buffer;
- option java_outer_classname = "LinRModelParamProto";
- import "sshe-cipher-param.proto";
- message LinRModelParam {
- int32 iters = 1;
- repeated double loss_history = 2;
- bool is_converged = 3;
- map<string, double> weight = 4;
- double intercept = 5;
- repeated string header = 6;
- int32 best_iteration=7;
- map<string, CipherText> encrypted_weight = 8;
- Cipher cipher = 9;
- }
|