kardosdrur's picture
Added deployment
4fefa96
raw
history blame contribute delete
216 Bytes
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)