File size: 1,517 Bytes
3500733
14a4fe8
5af62b0
 
 
 
 
 
 
3500733
d590b32
84d7079
d735dda
84d7079
a1dd328
 
2bba6d2
a1dd328
d590b32
a1dd328
13f23f2
89ae7aa
5af62b0
 
 
8abb476
89ae7aa
92fb03a
89ae7aa
a1dd328
 
 
5af62b0
 
 
 
 
a1dd328
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import gradio as gr
from bertopic import BERTopic
import numpy as np
import pickle

with open('C1_msg.pkl', 'rb') as f:
  C1_msg = pickle.load(f)
    
reduced_embeddings = np.load('C1_reduced_embeddings.npy')

model = BERTopic.load("AlexanderHolmes0/C1-Topic-Model-100")

#model.set_topic_labels({8: "8_shimmer_religion"})

model2 = BERTopic.load("AlexanderHolmes0/C2-Topic-Model-100")

with gr.Blocks(theme=gr.themes.Soft()) as demo:
   with gr.Tab("C1 Topic Model"):
        gr.load("models/AlexanderHolmes0/C1-Topic-Model-100")
        with gr.Row():
            gr.Plot(model.visualize_topics(width=550),
                    min_width=500)
            gr.Plot(model.visualize_documents(C1_msg, 
                                              reduced_embeddings=reduced_embeddings,
                                              hide_annotations = True,
                                              #topics = range(0,7), 
                                              width = 900,
                                              custom_labels=False),
                    min_width=900)
   with gr.Tab("C2 Topic Model"): 
            gr.load("models/AlexanderHolmes0/C2-Topic-Model-100",alias = "C2 Topic Model")
            with gr.Row():
                gr.Plot(model2.visualize_topics(width=650),
                        min_width=650)
                gr.Plot(model2.visualize_hierarchy(width=650,
                                                   height=650),
                        min_width=650)

demo.launch()