Hemant Rakesh

Results 24 comments of Hemant Rakesh

I use python 3.7 and yet it didn't work

Hi @busyML, It works for me, and I am running 5000 epochs. Could you please share the version of tflearn you're using along with a snapshot of the output/error you're...

Hi @rustyboy0908, I think this is an issue with keras not tflearn. You can create an issue [here](https://github.com/keras-team/keras/issues)

> I had the same issue. The easiest solution I found if you're just trying to view the output is to just switch to write to an OBJ file. >...

@ksaur I'm solving the same in issue #293 as discussed in issue #164

@ksaur Sure. Will finish the previously assigned issue first and get back to this

@ksaur working on the same.

@ksaur `from sklearn.preprocessing import PolynomialFeatures` `from hummingbird.ml import convert` `X = np.arange(6).reshape(1,6)` `y = np.random.randint(2, size=6)` `poly = PolynomialFeatures(1)` `poly_x = poly.fit_transform(X)` `poly.fit(X, y)` `poly_convert = convert(poly, 'pytorch')` This is...

@ksaur, I have the updated version of hummingbird, was able to reproduce the error you got. As you mentioned, the input was incorrect.