I am using evidently to detect data drift and for generating classification report comparison and i use streamlit.write method to show report generated by evidently but in dashboard it is showing 'Loading...' . Is there any way to solve this issue?

Summary

I want to monitor model and i am using evidently for this that generate data drift report ,classification report etc. it works fine alone but when i try to configure it with streamlit instead of showing report it is just showing ‘Loading…’ .

Steps to reproduce

# ref_data_sample = reference dataset
#prod_data_sample= production dataset(we are taking it locally)
rating_target_drift_dashboard.calculate(ref_data_sample, prod_data_sample, column_mapping=target_column_mapping)
st.write( rating_target_drift_dashboard.show())