1

I am working on character recognition. I used to work previously in matlab and my segmentation code is created in matlab installed in Windows. Rightnow, I am experimenting CNN using Tensorflow in Ubuntu. Is there anyway to load and test the created Tensorflow CNN models inside Windows?

Manjusha K
  • 15
  • 4

1 Answers1

0

The only way to run TensorFlow on Windows now is using a VM/Docker, steps outlined here.

However, if you are just interested in running inferences (without training/updating your model), you could take a look at tfdeploy which exports your TensorFlow code to Numpy code, so that you only depend on Numpy.

Fematich
  • 1,588
  • 14
  • 26
  • 1
    Thank you Fematich .... I think tfdeploy is what I needed for now.. Will see in detail and update the status. – Manjusha K Oct 20 '16 at 05:31