Asked — Edited

Tensor Flow Is Googles Open Source Machine Learning Api

Hey, I am not a Japanese cucumber farmer...only a German robot enthusiast, but I though maybe some of you might find this interesting! :)

https://www.tensorflow.org/


ARC Pro

Upgrade to ARC Pro

Experience the transformation – subscribe to Synthiam ARC Pro and watch your robot evolve into a marvel of innovation and intelligence.

#1  

Great software! Did you see this video?

https://youtu.be/_zZe27JYi8Y

#2  

Hey, I just realized they are building custom classifiers already here in the forum...I am in Japan at the moment, but I will dig in deeper once I am back!

YOLO is also very interesting...

#3  

Yes, YOLO is amazing. I'm attempting to get it to work on my PC.

PRO
USA
#4  

YOLO, crazy amazing.

PRO
USA
#5  

Some Yolo results:

  • Windows x64 Intel iCore 7 no GPU: detection time: 5.5 to 7.2 seconds.

User-inserted image Res: 320x240 (EZ Camera)

User-inserted image Res:4032x3024 (Iphone)

User-inserted image Res:4032x3024 (Iphone)

User-inserted image Res:1024x768

User-inserted image Res:1024x362

all the detections used the same YOLO model (236 MB COCO Yolo v3) i believe the source for image and categories: http://cocodataset.org

PRO
USA
#7  

Some Tensorflow results:

  • Windows x64 Intel iCore 7 no GPU, AVX2 enabled detection time: 3.5 seconds (ssd_mobilenet_v1_coco_11_06_2017) 45 seconds (faster_rcnn_inception_resnet_v2_atrous_coco_11_06_2017)

User-inserted image

User-inserted image

User-inserted image

User-inserted image

I presume the models have different training parameters.

PRO
USA
#8  

Detection success depends on trained model.

So far you have:

  1. Custom Classifier Training (Watson API), you upload images positive and/or negative images, Watson runs the black magic, and later you call Watson API to check for one or more custom classifiers. So far the API does not provide object location.

  2. Watson Machine Learning / Azure Machine Learning: A more advanced solution, you train the models in the cloud, and the deployment is in cloud, the model can't be downloaded and used offline. I believe this solution requires more expertise, more data (images) and provides more details e.g. object locations. Can be used as building block for an application, you train the models you deploy to a watson application server and then you can develop a web API to be interfaced by third party clients.

  3. Tensorflow / Caffe

3.1) Training you build/setup a machine to train your model, you will need a lot (i mean a lot) of images, and you will need special hardware: CUDA Video Board. IF you have plans to train images you will need something like a GTX 1080 TI https://www.amazon.com/EVGA-Optimized-Interlaced-Graphics-11G-P4-6393-KR/dp/B06Y11DFZ3 starting at $1000, plus you will need a decent ICore 7 CPU, plus refrigeration, memory and SSD everything easily available if you have a Credit Card.

Or you look for an online solution (Virtual Machine with NVidia board) available at amazon: https://aws.amazon.com/about-aws/whats-new/2016/09/introducing-amazon-ec2-p2-instances-the-largest-gpu-powered-virtual-machine-in-the-cloud/

you pay time used to train the model it can be a few hours or days.

If you use the Tensorflow or Caffe solutions you can download the model and use it offline.

3.2) Using the model You don't need a GPU to use a trained model, depending on the model complexity you will need CPU/Memory

There are some interesting solutions to accelerate the recognition (not the training):

3.2) Movidius chip My Google Tango Tablet has the chip, it was a great thing when was released, unfortunately Google killed the Tango Project. So now is part of the History Channel.

Intel bought the Movidius company, and they released the Intel Movidius Stick https://developer.movidius.com ($80). So far only Linux is supported.The information is limited, but it's a great addition for a Raspberry PI 3 and can boost the detection time. Supports both Tensorflow and Caffe models.

Google released the AIY vision project https://aiyprojects.withgoogle.com/vision and create a PCB with movidius chip as a backpack add-on to Raspberry PI Zero $5 (ArmV6) or Raspberry PI 2/3 (ArmV7). I got one ($45) before they went out of stock. It's a nice add-on for a Raspberry PI Zero low cost board, google PCB uses SPI connection, they also connect directly to the PI camera BUS to allow video recognition otherwise you need to capture frame after frame and send to the VPU chip.

Robotic Embedded Hardware: Nvidia Jetson TK1 (old history) basically the CPU power is similar to a Raspberry PI but they have a CUDA VPU, so it can make a difference when you use vision algorithms compiled for CUDA. Nvidia Jetson TX1 more powerful plus $$ Both boards support Linux and ROS, once again if you are using vision / machine learning (recognition) these boards can make the difference.

So to summarize Machine Learning is here, it's easy to play with the existent models, can be a frustration if you try to detect objects not previously available in the trained models.

Training is a different story, you will need to develop the expertise and have the right hardware (CUDA board GTX 1060 6GB, GTX 1070/1080) OR you stick with Watson and/or similar Azure, Google cloud apis.

#9  

@ptp Thank you so much for this overview, you covered all the options. And I totally agree that we should have fun with the pre-trained models available, since custom classifiers need huge data sets and it is a science on its own!

Although the path you are taking here at the forum, over at the othere threat us very interesting!

I had some Google searches, which made me think that there are some good options on YOLO live detection with about 1.5sec frame rate on a Rasberry Pi. I will try to find the links and share them!

Also Googles AIY Vision Project should be available again pretty soon, and like the AIY Voice kit there should be a good community emerging around it!

Its so cool that Machine Learning is finally available for hobby robotics, lets keep it hot! :D

PRO
Canada
#11  

Very cool. Seeing lots more support for tensorflow with Watson as well. I also noticed they now Support apples core ML so once your model is created and trained you can download it and run on IOS device. Perhaps the ez-robot iPad app could be updated to run trained models.

https://developer.apple.com/ibm/

#12  

Feels like science fiction that we're starting to get our hands on things like this! Haha. @ptp Thanks for all the testing and your overview!