tensorspace-converter
tensorspace-converter copied to clipboard
🔨TensorSpace Standard Preprocess Tool for Pre-trained Models from TensorFlow, Keras, TensorFlow.js
When Installing docker file, it's failing at > [ 7/15] RUN sudo add-apt-repository ppa:jonathonf/python-3.6: #10 4.929 Cannot add PPA: 'ppa:~jonathonf/ubuntu/python-3.6'. #10 4.929 The user named '~jonathonf' has no PPA named...
``` $ pip install tensorspacejs==0.2.0 (...) ERROR: Cannot install tensorspacejs because these package versions have conflicting dependencies. The conflict is caused by: keras 2.2.2 depends on keras-applications==1.0.4 tensorflow 1.12.0 depends...
Hello together, after having produced a .json file of my keras architecture I tried to load and visualize the architecture based on JavaScript code. Unfortuantely I only get a blank...
Compatible with Tensorflow 2.1
**TensorFlow.js version** tensorflow/tfjs: 1.0.0 tensorflow/tfjs-node: 1.2.11 tensorspacejs 0.2.0 **Node version** node 11.11.0 on Centos7 I have used TensorSpace-Converter to preprocess pre-trained TensorFlow.js model: ``` Tensorspacejs_converter \ --input_model_from="tfjs" \ --output_layer_names="myPadding,myConv1,myMaxPooling1,myConv2,myMaxPooling2,myDense1,myDense2,myDense3" \...
I want to use the frozen_model.pb of MNIST model in LabVIEW. To do this I need the Output Node Names of the frozen graph. Could you help me how could...
I have saved a keras model using model.save('xxx.hdf5'), but when I try to convert it using: ``` tensorspacejs_converter \ --input_model_from="keras" \ --input_model_format="topology_weights_combined" \ --output_node_names='conv2D_1,conv2D_2,conv2D_3,conv2D_4,conv2D_5,conv2D_6,conv2D_7,up_sampling2d_1,conv2D_8,up_sampling2d_2,conv2D_9,up_sampling2d_3,conv2D_10,up_sampling2d_4,conv2D_11,up_sampling2d_5,conv2D_12,up_sampling2d_6,conv2D_13,up_sampling2d_7,conv2D_14' \ ../rawModel/combined/model_Encry_keras.hdf5 \ ../convertedModel/ ``` How...
how to convert jpeg image to json format
To support conversion of different type of TensorFlow models: - [x] saved model (directory) - [x] frozen model (.pb) - [ ] check point model (.ckpt)
Just a proposal, TensorSpace-Converter load a YAML configuration file and preprocess the model based on YAML configuration. YAML configuration: ```yaml input_model_from: tensorflow input_model_format: tf_keras output_layer_names: - layer1Name - layer2Name -...