Spaces:
Sleeping
Sleeping
Create topic_modelling.py
Browse files
modules/topic_modelling.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def render():
|
| 4 |
+
return gr.Column([
|
| 5 |
+
gr.Markdown("# 🧠 Topic Modeling"),
|
| 6 |
+
gr.Markdown("BERTopic, UMAP, clustering, etc."),
|
| 7 |
+
gr.Button("Generate topics")
|
| 8 |
+
])
|