Вот мой код:
html = ""
if y_pred[0]>0.5:
pred = 'light'
else:
pred = 'dark'
html += "<span><h3>Based on the description, the model believes that this is a {} coffee roast.
".format(pred)
html += "<small><br>Confidence: {:.0f}%<br><br></small></h3></span>".format(abs(((y_pred[0]
[0]*100)-50)*2))
for j,i in enumerate(tokenizer.sequences_to_texts(Xtst)[0].split()):
html += "<span style='background-color:rgba({},0,150,{})'>{}
</span>".format(heatmap[math.floor(j/norm_len)]*255,heatmap[math.floor(j/norm_len)]-0.3,i)
HTML(html)
plt.show()
Это не дает никаких результатов. Как мне просмотреть это в моей среде разработки Pycharm?