Hi @Prelon, welcome to the forum 
You have to pass raw html to streamlit in this case.
from streamlit import components
html_object = show_weights(clf, vec=vec)
raw_html = html_object._repr_html_()
components.v1.html(raw_html)
Hi @Prelon, welcome to the forum 
You have to pass raw html to streamlit in this case.
from streamlit import components
html_object = show_weights(clf, vec=vec)
raw_html = html_object._repr_html_()
components.v1.html(raw_html)