Spaces:
Runtime error
Runtime error
import streamlit as st | |
import pandas as pd | |
import bertopic | |
import plotly.express as px | |
st.set_page_config(page_title="Topic Modeling with Bertopic") | |
from datasets import load_dataset | |
st.markdown(""" | |
https://github.com/pinecone-io/examples/tree/master/learn/algos-and-libraries/bertopic | |
""") | |
# data = load_dataset('jamescalam/python-reddit') | |
data = load_dataset("awacke1/LOINC-Panels-and-Forms") | |
from datasets import load_dataset | |
geo = load_dataset('jamescalam/world-cities-geo', split='train') | |
st.write(geo) | |