|
import streamlit as st |
|
|
|
|
|
|
|
st.sidebar.title('Description') |
|
st.sidebar.write("Bunka Summarize & Visualize Information as a Cartography. The current Dataset is the following one: https://huggingface.co/datasets/yitingxie/rlhf-reward-datasets.") |
|
st.sidebar.write("Have a look at the following package on GitHub: https://github.com/charlesdedampierre/BunkaTopics") |
|
st.title('Bunka Map') |
|
|
|
|
|
html_file_path = "test.html" |
|
|
|
|
|
with open(html_file_path, 'r') as f: |
|
html = f.read() |
|
st.components.v1.html(html, width=800, height=800) |