Sergiu IT
Sergiu IT
How to solve it? ```ipywidgets``` can not be saved with```pickle.dump```. I tried to use ```get_state``` and ```send_state```, but it does not work. ``` w_is = widgets.IntSlider( value=7, min=0, max=10, step=1,...
I tried `w_is_new.send_state(w_is_state)` and it does not work either.
Hi, I practiced a bit of Tensorflow with your example Iris data classification.ipynb. I want to print with Tensorflow hierarchically Decision Tree similar to sklearn.tree.export_graphviz. There are working examples with...