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

https://github.com/darienmt/intro-to-tensorflow

Tensorflow playground
https://github.com/darienmt/intro-to-tensorflow

jupyter-notebook python tensorflow tensorflow-experiments tensorflow-tutorials

Last synced: 2 months ago
JSON representation

Tensorflow playground

Awesome Lists containing this project

README

          

# Intro to Tensorflow
Here you can read about my first interaction with [TensorFlow](https://www.tensorflow.org/). More or less, it is my playground to learn more about the library.

# Prerequisites

To run this project, you need [Miniconda](https://conda.io/miniconda.html) installed(please visit [this link](https://conda.io/docs/install/quick.html) for quick installation instructions.)

# Installation
To create an environment for this project use the following command:

```
conda create --name=IntroToTensorFlow python=3 anaconda
```

Activate your new environment:

```
source activate IntroToTensorFlow
```

And install TensorFlow:

```
conda install -c conda-forge tensorflow
```

Everything done, you can start Jupyter and start playing with it:

```
jupyter notebook
```

This will opens a browser with Jupyter on the current directory.

# Installation for CarND TensorFlow Lab notebook
(https://github.com/udacity/CarND-TensorFlow-Lab)

To create an environment for this project use the following command:

```
conda env create -f environment.yml
```

After the environment is created, it needs to be activated with the command:

```
source activate CarND-TensorFlow-Lab
```
and open the project's notebook [CarND_TensorFlow_Lab.ipynb](CarND_TensorFlow_Lab.ipynb) inside jupyter notebook:

```
jupyter notebook CarND_TensorFlow_Lab.ipynb
```

# Installation for CarND LeNet Lab
(https://github.com/udacity/CarND-LeNet-Lab)

To create an environment for this project use the following command:

```
conda env create -f cardnd-term1-environment.yml
```

After the environment is created, it needs to be activated with the command:

```
source activate carnd-term1
```

to open the project's notebook [LeNet-Lab.ipynb](LeNet-Lab.ipynb) inside jupyter notebook:

```
jupyter notebook LeNet-Lab.ipynb
```

# Tutorial links

- https://github.com/aymericdamien/TensorFlow-Examples