Your solution space is small (brute force is fine) or you need a mathematically provable optimum (use linear programming instead).
: When running large populations on a GPU, monitor your VRAM usage. Large neural networks combined with thousands of agents can lead to "Out of Memory" (OOM) errors. evojav
Here are some questions to consider:
: To get the most out of EvoJAX, your environment must be written in JAX. If you use a non-JAX environment, you lose the massive speed benefits of XLA. Your solution space is small (brute force is
// 1. Define the individual (a simple integer gene) public class MySolution implements Individual<Integer> private int value; public MySolution(int val) this.value = val; private int value
If you have a specific topic in mind, I can also help you with: