| | import streamlit as st |
| |
|
| | st.sidebar.image("images/logo.png", use_column_width=True) |
| | st.sidebar.write("Bunka Summarizes & Visualizes Information as Maps using LLMs.") |
| |
|
| | st.sidebar.title("Github Page") |
| | st.sidebar.write( |
| | "Have a look at the following package on GitHub: https://github.com/charlesdedampierre/BunkaTopics" |
| | ) |
| | st.sidebar.title("Dataset") |
| | st.sidebar.write("HH-RLHF Dataset: https://huggingface.co/datasets/Anthropic/hh-rlhf") |
| |
|
| | st.title("How to understand large textual datasets?") |
| |
|
| | import pandas as pd |
| |
|
| | df = pd.read_csv("data/rejection-sampling.csv", index_col=[0]) |
| | st.dataframe(df, use_container_width=True) |
| |
|
| | st.title("Bunka Exploration Engine") |
| |
|
| | st.image("images/pipeline.png", use_column_width=True) |
| |
|
| |
|
| | |
| | bunka_map_path = "maps/bunka_map.html" |
| |
|
| | |
| | with open(bunka_map_path, "r") as f: |
| | bunka_map_html = f.read() |
| |
|
| | st.components.v1.html(bunka_map_html, width=800, height=800) |
| |
|
| | st.title("Bourdieu Framing Analysis") |
| |
|
| | |
| | bunka_map_path = ( |
| | "maps/bourdieu_priacy_politics.html" |
| | ) |
| |
|
| | |
| | with open(bunka_map_path, "r") as f: |
| | bunka_map_html = f.read() |
| |
|
| | st.components.v1.html(bunka_map_html, width=800, height=800) |
| |
|
| | |
| | bunka_map_path = "maps/violence_men_women.html" |
| |
|
| | |
| | with open(bunka_map_path, "r") as f: |
| | bunka_map_html = f.read() |
| |
|
| | st.components.v1.html(bunka_map_html, width=800, height=800) |
| |
|