Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zackakil/tensor-fun

Just some experimenting with tensor flow from Campus workshop along with how I got tensorflow working in Jupyter managed by Anaconda.
https://github.com/zackakil/tensor-fun

anaconda jupyter-notebook tensorflow tensorflow-tutorials

Last synced: about 1 month ago
JSON representation

Just some experimenting with tensor flow from Campus workshop along with how I got tensorflow working in Jupyter managed by Anaconda.

Awesome Lists containing this project

README

        

# Tensor Fun
Just some experimenting with tensor flow from Campus workshop.

# Getting Tensor Flow to work in Anconda Jupyter Notebook
I've found the only way to install tensorflow to work within a jupyter notebook (managed by anaconda) is to do an inline pip install within the notebook.

```python
import pip
pip.main(['install', 'tensorflow'])
```

This only needs to be done once, and can be done in a separate notebook.
Once it is done, 'tensorflow' will finally show inside Anaconda as an installed package and will work inside of Jupyter Notebooks managed by Anaconda.

![Image of installed tensorflow in Anaconda](tensor_in_anaconda.png)

# Resource
https://codelabs.developers.google.com/codelabs/cloud-tensorflow-mnist/#0