small copy changes and noting which node.js version to use

This commit is contained in:
Yotam Mann 2017-02-13 17:51:01 -05:00
parent 16ee3e84a1
commit d0147fb342

View File

@ -1,5 +1,6 @@
## A.I. Duet
Trade melodies with a neural network.
A piano that responds to you.
## About
@ -15,7 +16,7 @@ Built by [Yotam Mann](https://github.com/tambien) with friends on the Magenta an
## OVERVIEW
A.I. Duet is composed of two parts, the front-end which is in the `static` folder and the back-end which is in the `server` folder. The front-end client creates short MIDI files using the user's input which is sent to a [Flask](http://flask.pocoo.org/) server. The server takes that MIDI input and "continues" it using [Magenta](https://github.com/tensorflow/magenta) and [TensorFlow](https://www.tensorflow.org/) which is then returned back to the client.
A.I. Duet is composed of two parts, the front-end which is in the `static` folder and the back-end which is in the `server` folder. The front-end client creates short MIDI files using the players's input which is sent to a [Flask](http://flask.pocoo.org/) server. The server takes that MIDI input and "continues" it using [Magenta](https://github.com/tensorflow/magenta) and [TensorFlow](https://www.tensorflow.org/) which is then returned back to the client.
## INSTALLATION
@ -36,7 +37,7 @@ If it _did_ install tensorflow and magenta successfully, you can run the server
python server.py
```
Then to build and install the front-end Javascript code, first make sure you have [Node.js](https://nodejs.org) and [webpack](https://webpack.github.io/) installed. And then install of the dependencies of the project and build the code by typing the following in the terminal:
Then to build and install the front-end Javascript code, first make sure you have [Node.js](https://nodejs.org) 6 or above and [webpack](https://webpack.github.io/) installed. And then install of the dependencies of the project and build the code by typing the following in the terminal:
```bash
cd static