UNPKG

federer

Version:

Experiments in asynchronous federated learning and decentralized learning

14 lines 651 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LeafGridSearch = void 0; const coordinator_1 = require("../../../coordinator"); const LeafCoordinator_1 = require("./LeafCoordinator"); class LeafGridSearch extends coordinator_1.GridSearch { async runExperiment(options, ipc, logger, stopCondition) { const coordinator = new LeafCoordinator_1.LeafCoordinator(options, ipc, logger, stopCondition); const results = await coordinator.run(); return new coordinator_1.ExperimentResults(options, results); } } exports.LeafGridSearch = LeafGridSearch; //# sourceMappingURL=grid-search.js.map