File size: 216 Bytes
4fefa96
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12

import joblib
import topicwizard

topic_data = joblib.load("topic_data.joblib")

app = topicwizard.get_dash_app(topic_data)
server = app.server

if __name__ == "__main__":
    app.run_server(debug=False, port=7860)