This project is a simplified version of TensorFlow, which uses a neural network to predict the price of homes in the Boston area.
Understand differentiable graphs and backpropagation, implementing a neural network from scratch.
The dataset was obtained from the scikit-learn library.
- Download and install Anaconda
- Update Anaconda
$ conda upgrade conda $ conda upgrade --all
- Clone and enter into the project's root directory by command line
$ git clone https://github.com/machine-learning-experiments/mini-tensor-flow.git
- Create and activate enviroment
$ conda env create -f enviroment.yaml $ conda activate mini-tensor-flow
or
conda create --name mini-tensor-flow python=3 source activate mini-tensor-flow conda install numpy scikit-learn
- Execute neural network for see the loss value tend to zero
$ python neural_network.py
This project was developed during the deep-learning nanodegree from Udacity