5 Reasons Why Data Science Engineers Would love TensorWatch

Recently researchers at Microsoft open sourced debugging and visualization tool TensorWatch,In this post,lets look at key features,how does it work.

Image – TensorWatch

#1.Key Features

  1. Runs on Jupyter Notebook : TensorWatch works in Jupyter Notebook to show real-time visualizations of your machine learning training and perform several other key analysis tasks for your models and data.
  2. Flexible & Extensible : TensorWatch is designed to be flexible and extensible so you can also build your own custom visualizations, UIs, and dashboards. Besides traditional approach, it also has a unique capability to execute arbitrary queries against your live ML training process, return a stream as a result of the query and view this stream using your choice of a visualizer.
  3.  Support for various diagram types : TensorWatch supports many other diagram types including histograms, pie charts, scatter charts, bar charts and 3D versions of many of these plots. You can log your data, specify the chart type you want and let TensorWatch take care of the rest.
  4. Create Custom Visualizations : TensorWatch can combine, compose, and create custom visualizations effortlessly. For example, you would be able to visualize an arbitrary number of streams in the same plot. Or you can visualize the same stream in many different plots simultaneously Or you can place an arbitrary set of visualizations side-by-side. You can even create your own custom visualization widget simply by creating a new Python class, implementing a few methods.
  5. New way of debugging and visualization Lazy Logging Mode :  TensorWatch has the ability to query the live running process, retrieve the result of this query as a stream and direct it to your preferred visualization(s) i.e., you don’t need to log any data beforehand.

#2.How Does TensorWatch Work

In TensorWatch, everything is a stream.Files, sockets, consoles and even visualizers are streams themselves. With a common interface the streams can listen to any other streams which in return helps in creating custom data flow graphs.

  1. When you (your programs) write the log data to a TensorWatch stream, the values get serialized and sent to a TCP/IP socket as well as the file you specified.
  2. From Jupyter Notebook, we can load the previously logged values from the file and then listen to that TCP/IP socket for any future values.
  3. The visualizer then listens to the stream and renders the values as they arrive.Visualizer can listen to many streams simultaneously, each of which could be a file, a socket or some other stream.AI For Everyone: AI Training For Business Professionals

#3.How to Get It

TensorWatch supports Python 3.x and can be installed with pip install tensorwatch

Like this post? Don’t forget to share it!

#4.Additional Resources

Summary
5 Reasons Why Data Science Engineers Would love TensorWatch
Article Name
5 Reasons Why Data Science Engineers Would love TensorWatch
Description
In this post check out TensorWatch's key features,how does it work.
Author
Publisher Name
Upnxtblog
Publisher Logo

Average Rating

5 Star
0%
4 Star
0%
3 Star
0%
2 Star
0%
1 Star
0%

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

bitcoin Previous post Your guide to Libra Coin – A New Digital Currency
Java 8 Next post Do you want to access native library methods without requiring any additional JNI or native code ?