-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: cwj <talkingwallace@sohu.com> Signed-off-by: weiwee <wbwmat@gmail.com>
- Loading branch information
1 parent
4a32f58
commit e364e82
Showing
3 changed files
with
113 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
import sys | ||
import torch as t | ||
|
||
|
||
arbiter = ("arbiter", 10000) | ||
guest = ("guest", 10000) | ||
host = ("host", 9999) | ||
name = "fed" | ||
|
||
|
||
def create_ctx(local): | ||
from fate.arch import Context | ||
from fate.arch.computing.standalone import CSession | ||
from fate.arch.federation.standalone import StandaloneFederation | ||
import logging | ||
logger = logging.getLogger() | ||
logger.setLevel(logging.DEBUG) | ||
|
||
console_handler = logging.StreamHandler() | ||
console_handler.setLevel(logging.DEBUG) | ||
|
||
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') | ||
console_handler.setFormatter(formatter) | ||
|
||
logger.addHandler(console_handler) | ||
computing = CSession() | ||
return Context(computing=computing, | ||
federation=StandaloneFederation(computing, name, local, [guest, host, arbiter])) | ||
|
||
|
||
if __name__ == "__main__": | ||
|
||
epoch = 10 | ||
|
||
if sys.argv[1] == "guest": | ||
from fate.ml.aggregator.plaintext_aggregator import PlainTextAggregatorClient | ||
|
||
ctx = create_ctx(guest) | ||
client = PlainTextAggregatorClient(ctx, sample_num=100, aggregate_type='weighted_mean') | ||
model = t.nn.Sequential( | ||
t.nn.Linear(10, 10), | ||
t.nn.ReLU(), | ||
t.nn.Linear(10, 1), | ||
t.nn.Sigmoid() | ||
) | ||
|
||
for i in range(epoch): | ||
client.model_aggregation(model) | ||
elif sys.argv[1] == "host": | ||
from fate.ml.aggregator.plaintext_aggregator import PlainTextAggregatorClient | ||
|
||
ctx = create_ctx(host) | ||
client = PlainTextAggregatorClient(ctx, sample_num=100, aggregate_type='weighted_mean') | ||
model = t.nn.Sequential( | ||
t.nn.Linear(10, 10), | ||
t.nn.ReLU(), | ||
t.nn.Linear(10, 1), | ||
t.nn.Sigmoid() | ||
) | ||
|
||
for i in range(epoch): | ||
client.model_aggregation(model) | ||
|
||
else: | ||
|
||
from fate.ml.aggregator.plaintext_aggregator import PlainTextAggregatorServer | ||
ctx = create_ctx(arbiter) | ||
server = PlainTextAggregatorServer(ctx) | ||
|
||
for i in range(epoch): | ||
server.model_aggregation() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters