NEAT using DL4J?

I was recently toying around with the idea to use a NEAT neural network. I’d like to implement this in Java using DL4J, but I can’t find anything about NEATs in DL4J. Can someone point me in the right direction?

@Smurfy98 NEAT would only partially work. It looks like there’s a requirement for an eager mode. We don’t currently have a full eager mode in our graph library but you are welcome to import from tensorflow or pytorch via our model import feature and try it if you’d like.

You can enable that with:

SameDiff sd = ...importedGraph...;
sd.enableEagerMode();

Again though this feature was mainly built for internal purposes initially for our model import but I’d be at least happy to take a look at the use case.