A collection of python based projects specific to deep learning domain using TensorFlow as the framework.
The applications are live here
For running the source code on your local machine, the following dependencies are required.
- Python
- Numpy
- TensorFlow
For local installation, follow these steps:
- Download source code from this repository or click here.
- Extract files to desired directory.
- Download and install Python3 if not done already.
- Create a new python virtual environment.
python3 -m venv tutorial-env
- Once you’ve created a virtual environment, you may activate it.
On Windows, run:
tutorial-env\Scripts\activate.bat
On Unix or MacOS, run:
source tutorial-env/bin/activate
Refer to python documentation for more information on virtual environments.
- Install the required dependecies.
pip install numpy pandas tensorflow
- Launch the Jupyter Notebooks or run the python files now.