Start the network connection to server.
(self)
| 77 | self.weights = {} |
| 78 | |
| 79 | def __start_connection(self) -> None: |
| 80 | """Start the network connection to server.""" |
| 81 | self.sock.connect((self.host, self.port)) |
| 82 | |
| 83 | def __start_rank_pairing(self) -> None: |
| 84 | """Sending global rank to server""" |