TODO
Warning: TensorFlow does not support Windows yet.
-
Install Python 3.x * Linux: Use your package manager to install Python 3.5 (or newer) * Mac: Either via the Homebrew package manager using
brew install python3
or via Anaconda * Windows: Use Anaconda -
Clone the repository * ssh:
```bash
git clone [email protected]:dperdios/learn_cs_param.git
cd learn_cs_param
```
* https:
```bash
git clone https://github.com/dperdios/learn_cs_param.git
cd learn_cs_param
```
- (optional) Create a dedicated environment. The code have been developed on Python 3.5 * Using Anaconda:
```bash
conda create -n learn_cs_param python=3.5
```
* Using `pyenv`:
```bash
pyvenv /path/to/new/virtual/env . /path/to/new/virtual/env/bin/activate
```
- Install the dependencies from
requirements.txt
. Please edit the TensorFlow version (CPU/GPU, Linux/OSX) you want to install. The code has been developed with TensorFlow 0.11. * Depending on your installation,pip
may refer to Python 2 (you can verify withpip -V
). In that case, usepip3
instead ofpip
.
pip install --upgrapde pip
pip install -r requirements.txt
-
TODO Check you have a working installation
-
Launch Jupyter notebook.
jupyter notebook
TODO