Visualizing data with Expo (react native)

We are gathering data from images, videos and camera feed with tfjs-react-native library. So far we haven’t found a good candidate to visualize the data. A scatter-3d plot would be especially useful.

Are there any activities in the native area similar to these?

Hi @ovirta ,

I apologize for the delay in my response.

TFJS doesn’t directly provide any APIs to visualize the collected data itself. However, you can use the tensorboard.js library to visualize your TensorFlow.js models, including their training progress and other metrics.

For visualizing the collected image and video data, you can use react-native libraries like react-native-chart-kit or react-native-svg-charts. But, to use these libraries, you’ll need to extract data points from the images or videos (eg. by generating embeddings from a trained model).

Please let me know if I’ve missed anything.

Thank You!!