You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exportclassWebClient{/** *REST API Wrapper to interact with the federated model aggregation service. **/private_url: string;private_uuid: any;private_federated_model_id: number;is_registered: boolean;last_model_aggregate: number|null;constructor(federated_model_id:number,uuid:any=null,url:any=null){
...
}private_get_auth_header(uuid=null){...}asyncregister(){...}asyncsend_update(data:any,base_aggregate=null){...}asynccheck_for_new_model_aggregate(update_after=null){...}asyncget_current_artifact(){...}asynccheck_for_latest_model(update_after=null){...}asyncsend_val_results ...
...
}
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently, there's only a python client.
Describe the outcome you'd like:
Similar to the python client here:
https://github.com/capitalone/federated-model-aggregation/tree/main/clients
We need a typescript client that similarly interacts with the API.
Additional context:
Mimic the API schema from the python client. Folder structure, etc.
Contributor is able to take liberties from the below.
These are suggested solutions.
Each function can be broken into a separate PR and unit tests created for each.
In a file called
settings.ts
:In a file called
clients.ts
:The text was updated successfully, but these errors were encountered: