Skip to content

Commit

Permalink
change readme and typos
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Almeida committed Mar 30, 2022
1 parent 4b90681 commit 3fd81b5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ This toolkit is currently under development and aims to focus on biomedical task
pip install polus
```

For training the models in multiGPU scenario, polus leverage the horovod library for dataparalelism, which means that horovod must be
correctly installed to be able to run the training in multiGPUs.

To easy this process we made available a docker image with all the correct dependencies to perform the multiGPU training in polus.

```
docker pull talmeidawastaken/polus
```

### Documentation

Still in work, but some of it can be already consulted here: https://bioinformatics-ua.github.io/polus/
Expand Down
2 changes: 1 addition & 1 deletion polus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __init__(self):
else:
if hvd.size() <= 1:
print(f"The script found multiple GPUs and a horovod.tensorlfow installation. However,"
f" the only one process was found, please check if you are runing the script with horovodrun.")
f" only one process was initialized, please check if you are runing the script with horovodrun or mpirun.")
else:
if hvd.local_rank() == 0:
print(f"MultiGPU training enabled, using {hvd.size()} processes ")
Expand Down

0 comments on commit 3fd81b5

Please sign in to comment.