amenkim

Results 6 comments of amenkim

In my opinion, according to the original paper, the action and the reward should be a list of items, and they should be sepreated by the '|' in the dataset....

我理解不启用对齐的话,如果特征X0在guest方有“1”、“2”两种取值,在host方有“1”、“2”、“3”三种取值,那最后guest方只会独热生成两列,host方生成三列

看源码应该是两边把所有取值都发给arbiter,arbiter合并去重后再发给两方

我复现了下,可能是没启用need_alignment时, homo_ohe_base.py 里 self.col_maps 里的 TransferPair 漏了调 encode_new_headers() 方法,不知道是不是bug……

我这边跑了几个模型,还踩了几个坑… 1、homo_lr 和 hetero_feature_selection 输出的模型是 train_output_model,README里面写的是 output_model; 2、homo_nn 输出的模型是 train_model_output,输出的预测数据是 predict_data_output,README里面写的是 output_model 和 test_output_data; 3、hetero_secureboost 输出的预测数据是 test_output_data,README里面写的是 test_data_output。