friendshipkim commited on
Commit
277c9f8
1 Parent(s): 56ae08e

print type of embedding dataset

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -58,6 +58,7 @@ def get_embedding_dataset(model):
58
  # data = load_from_disk(f"{ASSETS_PATH}/{model}/embedding")
59
  st.write(model)
60
  data = load_dataset(f"{ORG_ID}/{model}_embedding", use_auth_token=TOKEN)
 
61
  return data
62
 
63
  @st.cache
 
58
  # data = load_from_disk(f"{ASSETS_PATH}/{model}/embedding")
59
  st.write(model)
60
  data = load_dataset(f"{ORG_ID}/{model}_embedding", use_auth_token=TOKEN)
61
+ st.write(type(data))
62
  return data
63
 
64
  @st.cache