federer
Version:
Experiments in asynchronous federated learning and decentralized learning
13 lines • 443 B
TypeScript
export declare type Environment = "aws" | "local";
export interface CoordinatorCLIOptions {
"number-clients": number;
"clients-port": number;
"server-port": number;
"fileserver-host"?: string;
environment: Environment;
}
export declare const CoordinatorCLIOptions: {
get<K extends keyof CoordinatorCLIOptions>(name: K): CoordinatorCLIOptions[K];
getAll(): CoordinatorCLIOptions;
};
//# sourceMappingURL=cli.d.ts.map