Hi,
Thanks for making this tool. It will definitely make things easier for NN newcomers.
I just tried running your language model example and got the following exception:
Traceback (most recent call last):
File "test.py", line 84, in <module>
estimator.fit(X, y)
File "/Users/aleksandar/tensorflow/lib/python3.5/site-packages/skflow/estimators/base.py", line 243, in fit
feed_params_fn=self._data_feeder.get_feed_params)
File "/Users/aleksandar/tensorflow/lib/python3.5/site-packages/skflow/trainer.py", line 114, in train
feed_dict = feed_dict_fn()
File "/Users/aleksandar/tensorflow/lib/python3.5/site-packages/skflow/io/data_feeder.py", line 307, in _feed_dict_fn
inp[i, :] = six.next(self.X)
StopIteration
I made sure that my python distribution has the correct version of six
. I tried running it both in a virtual environment and in a normal Python 3 distro. Any ideas what might be causing this?