Installation
Neural Studio requires Tensorflow>=2.2.0 to work. Tensorflow was removed as dependencies from PyPi distribution in version 0.1.1 to prevent version conflicts. So you need to install Tensorflow manually. Other dependencies are as following.
OpenCV
Numpy
Pandas
Matplotlib
Pyrex
Scikit-learn
Psutil
GPUtil
Check for dependency version conflicts before installing neural studio.
Install From PyPi
pip install neural-studio
Build from source
NodeJS
Python >= 3.6
CUDA >= 10.2 ( Optional for GPU support )
Tensorflow >= 2.2.0
git clone https://github.com/monjoybme/Neural-Studio
cd Neural-Studio
pip install -r requirements.txt
cd html
npm install
cd ..
./build.sh
This will create wheel(.whl) file for current release which you can install by running following commands.
cd dist
pip installl neural_studio-x.y.z-py3-none-any.whl
Last updated