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

https://github.com/dhruvdcoder/tensorflowexperiments

An aggregation of my experiments in Neural Networks and Deep Learning using TensorFlow.
https://github.com/dhruvdcoder/tensorflowexperiments

computational-graphs deep-learning machine-learning neutralnetworks python python-3 tensorflow

Last synced: about 1 month ago
JSON representation

An aggregation of my experiments in Neural Networks and Deep Learning using TensorFlow.

Awesome Lists containing this project

README

          

# TensorFlowExperiments
An aggregation of my experiments in Neural Networks and Deep Learning using TensorFlow.

# Setup
1. Install python3 on your system following the official instructions given [here](https://docs.python.org/3/using/unix.html#getting-and-installing-the-latest-version-of-python)

2. Install *virtualenv* using pip3.

```
$ pip3 install virtualenv
```
3. Create a folder where you wish to keep the project
a. On Linux
```
$ mkdir TensorFlowExperimentsFolder
$ cd TensorFlowExperimentsFolder
```
4. Clone the repository using git
```
$ git clone https://github.com/dhruvdcoder/TensorFlowExperiments.git
```
5. Create a virtual environment
```
$ cd TensorFlowExperiements
$ source bin/activate
```

6. Install all requirements
```
$ pip3 install -r requirements.txt
```

And you are all set.

## Contribution
Please create a pull request or contact me if you would like to contribute to this repository