Neural Studio
  • Overview
  • Installation
  • Usage
    • Running Studio
    • Creating A Workspace
    • Add Dataset
    • Add Model
    • Train
    • Inference
  • Github
  • UI Overview
    • Overview
    • Workspace Manager
    • Dataset Builder
    • Network Graph Editor
    • Traning Framework
    • In Browser Inference Engine
Powered by GitBook
On this page

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

To build from source you need to install following list of dependencies.

  1. NodeJS

  2. Python >= 3.6

  3. CUDA >= 10.2 ( Optional for GPU support )

  4. 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
PreviousOverviewNextRunning Studio

Last updated 3 years ago