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
- Host: GitHub
- URL: https://github.com/darienmt/intro-to-tensorflow
- Owner: darienmt
- License: mit
- Created: 2017-04-04T02:26:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-17T09:41:27.000Z (over 8 years ago)
- Last Synced: 2025-10-06T10:09:03.261Z (2 months ago)
- Topics: jupyter-notebook, python, tensorflow, tensorflow-experiments, tensorflow-tutorials
- Language: Jupyter Notebook
- Size: 13.9 MB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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