123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- #
- # Copyright 2019 The FATE Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- import numpy as np
- from fate_arch.session import computing_session as session
- from federatedml.model_base import ModelBase, ComponentOutput
- from federatedml.param.secure_add_example_param import SecureAddExampleParam
- from federatedml.transfer_variable.transfer_class.secure_add_example_transfer_variable import \
- SecureAddExampleTransferVariable
- from federatedml.util import LOGGER
- class SecureAddHost(ModelBase):
- def __init__(self):
- super(SecureAddHost, self).__init__()
- self.y = None
- self.y1 = None
- self.y2 = None
- self.x2 = None
- self.x2_plus_y2 = None
- self.transfer_inst = SecureAddExampleTransferVariable()
- self.model_param = SecureAddExampleParam()
- self.data_output = None
- self.model_output = None
- def _init_runtime_parameters(self, cpn_input):
- self.model_param.update(cpn_input.parameters)
- self._init_model()
- def _init_model(self):
- self.data_num = self.model_param.data_num
- self.partition = self.model_param.partition
- self.seed = self.model_param.seed
- def _init_data(self):
- kvs = [(i, 1) for i in range(self.data_num)]
- self.y = session.parallelize(kvs, include_key=True, partition=self.partition)
- def share(self, y):
- first = np.random.uniform(y, -y)
- return first, y - first
- def secure(self):
- y_shares = self.y.mapValues(self.share)
- self.y1 = y_shares.mapValues(lambda shares: shares[0])
- self.y2 = y_shares.mapValues(lambda shares: shares[1])
- def add(self):
- self.x2_plus_y2 = self.y2.join(self.x2, lambda y, x: y + x)
- host_sum = self.x2_plus_y2.reduce(lambda x, y: x + y)
- return host_sum
- def sync_share_to_guest(self):
- self.transfer_inst.host_share.remote(self.y1,
- role="guest",
- idx=0)
- def recv_share_from_guest(self):
- self.x2 = self.transfer_inst.guest_share.get(idx=0)
- def sync_host_sum_to_guest(self, host_sum):
- self.transfer_inst.host_sum.remote(host_sum,
- role="guest",
- idx=0)
- def run(self, cpn_input):
- LOGGER.info("begin to init parameters of secure add example host")
- self._init_runtime_parameters(cpn_input)
- LOGGER.info("begin to make host data")
- self._init_data()
- LOGGER.info("split data into two random parts")
- self.secure()
- LOGGER.info("get share of one random part data from guest")
- self.recv_share_from_guest()
- LOGGER.info("share one random part data to guest")
- self.sync_share_to_guest()
- LOGGER.info("begin to get sum of host and guest")
- host_sum = self.add()
- LOGGER.info("send host sum to guest")
- self.sync_host_sum_to_guest(host_sum)
- return ComponentOutput(self.save_data(), self.export_model(), self.save_cache())
|