tutorials icon indicating copy to clipboard operation
tutorials copied to clipboard

Results 16 tutorials issues
Sort by recently updated
recently updated
newest added

I copy pasted this to https://colab.research.google.com (google's jupyter notebook implementation) and added some of my own notes. https://drive.google.com/file/d/1KFFdyYaU1rbM9G6Vx4rMEL9fIXAx4A84/view?usp=sharing Hope it helps someone get their hands dirty with decision trees! BIG...

Hi, Josh Gordon Thanks for your great sharing, it helped me get a much better understanding of decision tree. I have a suggestion on the function ''is_numeric'' In your example,...

In the latest version of tensorflow (1.3.0) the LinearClassifier object does not have a weights_ member. Instead, the weights have to be retrieved as follows: `weights = classifier.get_variable_value("linear//weight")`

Hi, There is a mistake in the calculation of the # of columns in the ipython book. '''n_features = len(rows[0]) - 1 # number of columns''' does define the number...

Full disclosure: I'm not using the Docker image, but working in my own environment on a Mac (10.12.2) with Python 2.7 (via Homebrew) and Tensorflow 0.12.1. I'm going through the...

This would be great for tinkering with some of the lower level code examples you have shown in your episodes. Namely the ScrappyKNN example.