Re: [scikit-learn] tensorflow and scikit-learn

2020-03-03 Thread Adrin
skorch is another nice library to do DL in sklearn based environments/workflows. On Tue., Mar. 3, 2020, 13:37 Nicolas Hug, wrote: > Hi Nils, > > From a quick glance it looks like you're building a fully connected > multi-layer perceptron so yes, this is possible in scikit-learn with the > neural

Re: [scikit-learn] tensorflow and scikit-learn

2020-03-03 Thread Nicolas Hug
Hi Nils, From a quick glance it looks like you're building a fully connected multi-layer perceptron so yes, this is possible in scikit-learn with the neural_network module (check out the docs). The script would be quite different though, it's not just plug and play. Also, for anything more co