Visualizer Integration
How to embed our visualizer in your application.
How to embed the Activeloop visualizer into your own web applications
HTML iframe (Alpha)
<iframe src="https://app.activeloop.ai/visualizer/iframe?url=hub://activeloop/imagenet-train" width="800px" height="600px">Javascript API (Alpha)
<div id='container'></div>
<script src="https://app.activeloop.ai/visualizer/vis.js"></script>
<script>
let container = document.getElementById('container')
window.vis.visualize("hub://activeloop/imagenet-train", null, null, container, null)
</script>Last updated
Was this helpful?