Dmitry Agapov
Dmitry Agapov
1. Is it possible to calculate only one hash for all files. 2. Looks like md5 hash is not ecure and better to use sha256 https://en.wikipedia.org/wiki/MD5#Security _Originally posted by @dmitryagapov...
nvidia-container-runtime should be installed https://docs.docker.com/config/containers/resource_constraints/#gpu 1. Add gpgkey for `nvidia-container-runtime` ```bash curl -s -L https://nvidia.github.io/nvidia-container-runtime/gpgkey | \ sudo apt-key add - distribution=$(. /etc/os-release;echo $ID$VERSION_ID) curl -s -L https://nvidia.github.io/nvidia-container-runtime/$distribution/nvidia-container-runtime.list | \...
- [ ] flake8 plugin to check that all function parameters have annotation - [ ] components: #377 - [x] cryptography #388 - [x] databases #380 - [ ] federated...
We should use protobuf message only in transport.grpc modules. Other modules shouldn't operate with grpc specific objects. Looks like we can unify our methods' input params and result using `google.protobuf.json_format`.
**Steps to reproduce** 1. Add inexist gpu index to envoy_config.yaml ```yaml params: cuda_devices: [0,99]
Add functional tests for all tutorials. Jupyter Notebooks could be tested using `pytest` and [`nbmake`](https://github.com/treebeardtech/nbmake). If director and envoys would be started from Jupyter Notebook test process has been automated...
Director and envoy configs have different structures. For example: ```yaml # director_config.yaml settings: listen_host: localhost listen_port: 50050 sample_shape: [ '300', '400', '3' ] target_shape: [ '300', '400' ] envoy_health_check_period: 5...
For more information check this link https://pre-commit.com/
There are no tests for openfl-tutorials/interactive_api. Its have core scenarious for openfl and if some change broke this functionality it sould be fixed as soon as possible. Becouse it is...