Marie Weiel
Marie Weiel
I am encountering the very same problem in our [repo](https://github.com/Helmholtz-AI-Energy/propulate/tree/maintenance/tests) when using this action in our [test workflow](https://github.com/Helmholtz-AI-Energy/propulate/blob/maintenance/tests/.github/workflows/python-test.yml) like this: ``` - name: Coverage Badge uses: tj-actions/coverage-badge-py@v2 ``` I see...
Thanks for your comment! I think this is only the case for the linked ReadTheDocs page which is not yet updated (this will hopefully happen very soon). The actual [script](https://github.com/Helmholtz-AI-Energy/propulate/blob/master/tutorials/propulator_example.py)...
Introduce `ind.migration_steps` attribute equality check into `__eq__`?
In principle, an individual should be uniquely determined by its global rank and generation; alternatively, by its island-local rank (worker index), island index, and generation. Consider this when cleaning up...
**Migration** - For real migration (cf. `Migrator` class), copies of individuals are not allowed. Whenever a worker on an island performs migration, we can thus choose all emigrants from the...
Update: "Parameters", "Returns", "Raises" sections included in current master, "Examples" sections still missing. Current docstring format works with sphinx auto-generated API reference documentation.
Next steps: - Add docstring "Examples" section for functions and classes the user interacts with directly. - Make clickable references to parent modules / classes in docstrings. See https://pytorch.org/docs/stable/_modules/torch/nn/functional.html#cross_entropy for...
A probable reason for this is that with pollination and a high migration probability, the best individual(s) migrate back and forth between the islands. This results in the populations being...
Alex Strube pointed out that multiple `mpi4py` imports in nested `Python` scripts / imports will not work with SLURM's `srun` on HPC machines.
Each individual has an evaluation time stamp `ind.evaltime = time.time()`, providing the time of its evaluation since the epoch. The epoch is the point where the time starts, the return...