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

[scikit-learn] tensorflow and scikit-learn

2020-03-02 Thread Nils Wagner via scikit-learn
Hi All, I am newbie to scikit-learn. Is it possible to use scikit-learn instead of tensorflow and keras in the attached script? Best regards, Nils import matplotlib import matplotlib.pyplot as plt import pandas as pd import random import math import numpy as np np.ran