Towhidul commited on
Commit
fcf6d91
1 Parent(s): a91077d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import wizmap
3
+
4
+ st.set_option('deprecation.showPyplotGlobalUse', False)
5
+
6
+
7
+
8
+ data_url = 'https://huggingface.co/datasets/xiaohk/embeddings/blob/main/imdb/data.ndjson'
9
+ grid_url = 'https://huggingface.co/datasets/xiaohk/embeddings/blob/main/imdb/grid.json'
10
+
11
+
12
+ st.write("# Display wizmap")
13
+ wizmap.visualize(data_url, grid_url, height=700)
14
+