# TensorSpace **Repository Path**: wliverpool/TensorSpace ## Basic Information - **Project Name**: TensorSpace - **Description**: TensorSpace是一套用于构建神经网络3D可视化应用的框架 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 5 - **Created**: 2023-07-26 - **Last Updated**: 2023-07-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

TensorSpace.js

Present Tensor in Space

English | 中文

npm version license badge dependencies badge dependencies badge dependencies badge build gitter

TensorSpace is a neural network 3D visualization framework built using TensorFlow.js, Three.js and Tween.js. TensorSpace provides Keras-like APIs to build deep learning layers, load pre-trained models, and generate a 3D visualization in the browser. From TensorSpace, it is intuitive to learn what the model structure is, how the model is trained and how the model predicts the results based on the intermediate information. After preprocessing the model, TensorSpace supports to visualize pre-trained model from TensorFlow, Keras and TensorFlow.js.

Fig. 1 - Interactive LeNet created by TensorSpace

## Table of Content * [Motivation](#motivation) * [Getting Started](#getting-start) * [Awesome TensorSpace](https://github.com/tensorspace-team/tensorspace/blob/master/awesome-tensorspace.md) * [Example](#example) * [Documentation](#documentation) * [Changelog](https://github.com/tensorspace-team/tensorspace/blob/master/CHANGELOG.md) * [Contributors](#contributors) * [Contact](#contact) * [License](#license) * [Next Episode](#next) ## Motivation TensorSpace is a neural network 3D visualization framework designed for not only showing the basic model structure, but also presenting the processes of internal feature abstractions, intermediate data manipulations and final inference generations. By applying TensorSpace API, it is more intuitive to visualize and understand any pre-trained models built by TensorFlow, Keras, TensorFlow.js, etc. TensorSpace introduces a way for front end developers to be involved in the deep learning ecosystem. As an open source library, TensorSpace team welcomes any further development on visualization applications. * **Interactive** -- Use Layer API to build interactive model in browsers. * **Intuitive** -- Visualize the information from intermediate inferences. * **Integrative** -- Support pre-trained models from TensorFlow, Keras, TensorFlow.js. ## Getting Started

Fig. 2 - TensorSpace Workflow

### 1. Install TensorSpace #### Install in the Basic Case - Step 1: Download Dependencies Download dependencies build files TensorFlow.js ([tf.min.js](https://cdnjs.com/libraries/tensorflow)), Three.js ([three.min.js](https://cdnjs.com/libraries/three.js)), Tween.js ([tween.min.js](https://cdnjs.com/libraries/tween.js)), TrackballControls ([TrackballControls.js](https://github.com/mrdoob/three.js/blob/master/examples/js/controls/TrackballControls.js)). - Step 2: Download TensorSpace Download TensorSpace build file `tensorspace.min.js` from [Github](https://github.com/tensorspace-team/tensorspace/tree/master/dist), [NPM](https://www.npmjs.com/package/tensorspace), [TensorSpace official website](https://tensorspace.org/#download) or CDN: ```html ``` - Step 3: Include Build Files Include all build files in web page. ```html ``` #### Install in the Progressive Framework - Step 1: Install TensorSpace - Option 1: NPM ```bash npm install tensorspace ``` - Option 2: Yarn ```bash yarn add tensorspace ``` - Step 2: Use TensorSpace ```javascript import * as TSP from 'tensorspace'; ``` Checkout this [Angular example](https://github.com/tensorspace-team/tensorspace/tree/master/examples/helloworld-angular) for more information. ### 2. Preprocess the Pre-trained Model Before applying TensorSpace to visualize the pre-trained model, there is an important pipeline - TensorSpace model preprocessing ( Checkout [this article](https://tensorspace.org/html/docs/preIntro.html) for more information about TensorSpace preprocessing ). We can use [TensorSpace Converter](https://github.com/tensorspace-team/tensorspace-converter) to quickly complete the TensorSpace Preprocessing. For example, if we have a [tf.keras model](https://github.com/tensorspace-team/tensorspace/blob/master/examples/helloworld/rawModel) in hand, we can use the following TensorSpace-Converter conversion script to convert a tf.keras model to the TensorSpace compatible format: ```shell $ tensorspacejs_converter \ --input_model_from="tensorflow" \ --input_model_format="tf_keras" \ --output_layer_names="padding_1,conv_1,maxpool_1,conv_2,maxpool_2,dense_1,dense_2,softmax" \ ./PATH/TO/MODEL/tf_keras_model.h5 \ ./PATH/TO/SAVE/DIR ``` **Note:** * Make sure to install `tensorspacejs` pip package, and setup a TensorSpace-Converter runtime environment before using TensorSpace-Converter to preprocess the pre-trained model. * Based on different training libraries, we provide different preprocessing tutorials: [TensorFlow Tutorial](https://tensorspace.org/html/docs/preTf.html), [Keras Tutorial](https://tensorspace.org/html/docs/preKeras.html), [TensorFlow.js Tutorial](https://tensorspace.org/html/docs/preTfjs.html). * Checkout [TensorSpace-Converter Repo](https://github.com/tensorspace-team/tensorspace-converter) for more information about TensorSpace-Converter.

Fig. 3 - TensorSpace-Converter Usage

### 3. Using TensorSpace to Visualize the Model If TensorSpace is installed successfully and the pre-trained deep learning model is preprocessed, let's create an interactive 3D TensorSpace model. For convenience, we will use the the resources from this repository's [HelloWorld](https://github.com/tensorspace-team/tensorspace/tree/master/examples/helloworld) directory, which includes [preprocessed TensorSpace compatible LeNet model](https://github.com/tensorspace-team/tensorspace/blob/master/examples/helloworld/convertedModel) and [sample input data ("5")](https://github.com/tensorspace-team/tensorspace/blob/master/examples/helloworld/data/5.json) as an example to illustrate this step. All source code can be found in [helloworld.html](https://github.com/tensorspace-team/tensorspace/blob/master/examples/helloworld/helloworld.html). First, we need to new a TensorSpace model instance: ```JavaScript let container = document.getElementById( "container" ); let model = new TSP.models.Sequential( container ); ``` Next, based on the LeNet structure: Input + Padding2D + 2 X (Conv2D & Maxpooling) + 3 X (Dense), build the Topology of the TensorSpace model: ```JavaScript model.add( new TSP.layers.GreyscaleInput() ); model.add( new TSP.layers.Padding2d() ); model.add( new TSP.layers.Conv2d() ); model.add( new TSP.layers.Pooling2d() ); model.add( new TSP.layers.Conv2d() ); model.add( new TSP.layers.Pooling2d() ); model.add( new TSP.layers.Dense() ); model.add( new TSP.layers.Dense() ); model.add( new TSP.layers.Output1d({ outputs: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] }) ); ``` Last, we should load our [preprocessed TensorSpace compatible model](https://github.com/tensorspace-team/tensorspace/blob/master/examples/helloworld/convertedModel) and use `init()` method to create the TensorSpace model: ```JavaScript model.load({ type: "tensorflow", url: './PATH/TO/MODEL/model.json' }); model.init(function(){ console.log("Hello World from TensorSpace!"); }); ``` We can get the following Fig. 3 model in the browser if everything looks good.

Fig. 4 - LeNet model without any input data

We provide a [extracted file](https://github.com/tensorspace-team/tensorspace/blob/master/examples/helloworld/data/5.json) which is a handwritten "5" as the input of our model: ([online demo](https://tensorspace.org/html/helloworld.html)) ``` model.init(function() { model.predict( image_5 ); }); ``` We put the `predict( image_5 )` method in the callback function of `init()` to ensure the prediction is after the initialization complete. Click the CodePen logo to try it in CodePen:   

Fig. 5 - LeNet model with input data "5"

## Example * **LeNet** [ TensorFlow.js model ] [➡ Live Demo](https://tensorspace.org/html/playground/lenet.html)

Fig. 6 - Interactive LeNet created by TensorSpace

* **AlexNet** [ TensorFlow model ] [➡ Live Demo](https://tensorspace.org/html/playground/alexnet.html)

Fig. 7 - Interactive AlexNet created by TensorSpace

* **Yolov2-tiny** [ TensorFlow model ] [➡ Live Demo](https://tensorspace.org/html/playground/yolov2-tiny.html)

Fig. 8 - Interactive Yolov2-tiny created by TensorSpace

* **ResNet-50** [ Keras model ] [➡ Live Demo](https://tensorspace.org/html/playground/resnet50.html)

Fig. 9 - Interactive ResNet-50 created by TensorSpace

* **Vgg16** [ Keras model ] [➡ Live Demo](https://tensorspace.org/html/playground/vgg16.html)

Fig. 10 - Interactive Vgg16 created by TensorSpace

* **ACGAN** [ Keras model ] [➡ Live Demo](https://tensorspace.org/html/playground/acgan.html)

Fig. 11 - Interactive ACGAN created by TensorSpace

* **MobileNetv1** [ Keras model ] [➡ Live Demo](https://tensorspace.org/html/playground/mobilenetv1.html)

Fig. 12 - Interactive MobileNetv1 created by TensorSpace

* **Inceptionv3** [ Keras model ] [➡ Live Demo](https://tensorspace.org/html/playground/inceptionv3.html)

Fig. 13 - Interactive Inceptionv3 created by TensorSpace

* **LeNet Training Visualization** [ TensorFlow.js dynamic model ] Visualize the LeNet Training Process with TensorSpace.js and TensorFlow.js. [➡ Live Demo](https://tensorspace.org/html/playground/trainingLeNet.html)

Fig. 14 - LeNet Training 3D Visualization

### View models locally As some models above are extremely large, view them locally may be a good choice. - Step 1: `clone` TensorSpace Repo ```bash git clone https://github.com/tensorspace-team/tensorspace.git ``` - Step 2: Open "html" file in examples folder in local web server. ## Documentation * For a quick start, checkout [Getting Start](https://tensorspace.org/html/docs/startHello.html) * To learn more about the [Basic Concepts](https://tensorspace.org/html/docs/basicIntro.html) * To process a deep learning model, checkout [Model Preprocessing](https://tensorspace.org/html/docs/preIntro.html), [TensorSpace-Converter](https://github.com/tensorspace-team/tensorspace-converter) * To learn core components: [Models](https://tensorspace.org/html/docs/modelIntro.html), [Layers](https://tensorspace.org/html/docs/layerIntro.html) and [Merge Function](https://tensorspace.org/html/docs/mergeIntro.html) * Checkout the official website [TensorSpace.org](https://tensorspace.org) for more about TensorSpace. ## Contributors Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)): | [
syt123450](https://github.com/syt123450)
[💻](https://github.com/tensorspace-team/tensorspace/commits?author=syt123450 "Code") [🎨](#design-syt123450 "Design") [📖](https://github.com/tensorspace-team/tensorspace/commits?author=syt123450 "Documentation") [💡](#example-syt123450 "Examples") | [
Chenhua Zhu](https://github.com/zchholmes)
[💻](https://github.com/tensorspace-team/tensorspace/commits?author=zchholmes "Code") [🎨](#design-zchholmes "Design") [✅](#tutorial-zchholmes "Tutorials") [💡](#example-zchholmes "Examples") | [
YaoXing Liu](https://charlesliuyx.github.io/)
[💻](https://github.com/tensorspace-team/tensorspace/commits?author=CharlesLiuyx "Code") [🎨](#design-CharlesLiuyx "Design") [✅](#tutorial-CharlesLiuyx "Tutorials") [💡](#example-CharlesLiuyx "Examples") | [
Qi(Nora)](https://github.com/lq3297401)
[💻](https://github.com/tensorspace-team/tensorspace/commits?author=lq3297401 "Code") [🎨](#design-lq3297401 "Design") | [
Dylan Schiemann](https://github.com/dylans)
[📝](#blog-dylans "Blogposts") | [
BoTime](https://github.com/BoTime)
[💻](https://github.com/tensorspace-team/tensorspace/commits?author=BoTime "Code") [📖](https://github.com/tensorspace-team/tensorspace/commits?author=BoTime "Documentation") [💡](#example-BoTime "Examples") | [
Kamidi Preetham](https://github.com/kamidipreetham)
[📖](https://github.com/tensorspace-team/tensorspace/commits?author=kamidipreetham "Documentation") | | :---: | :---: | :---: | :---: | :---: | :---: | :---: | | [
Wade Penistone](https://github.com/Truemedia)
[📖](https://github.com/tensorspace-team/tensorspace/commits?author=Truemedia "Documentation") | ## Contact If you have any issue or doubt, feel free to contact us by: * Email: tensorspaceteam@gmail.com * GitHub Issues: [create issue](https://github.com/tensorspace-team/tensorspace/issues/new) * Slack: [#questions](https://tensorspace.slack.com/messages/CDSB58A5P) * Gitter: [#Lobby](https://gitter.im/tensorspacejs/Lobby#) ## License [Apache License 2.0](https://github.com/tensorspace-team/tensorspace/blob/master/LICENSE) ##

TensorSpace-VR

Present Neural Network in VR

Fig. 15 - TensorSpace VR Demo