View Ongoing Performance

To view the ongoing model performance, execute the code in the following notebook paragraph:

 

 

%python

 

def show_ongoing_performance( result_dict = None ) :

   

    if isinstance(result_dict, bool) :

        return

   

    z.show(pd.DataFrame({'':['']}))

    print('> AUC Change' )

    z.show(result_dict['AUC Change'])

   

    z.show(pd.DataFrame({'':['']}))

    print('> Total PSI' )

    z.show(result_dict['Total PSI'])

   

    z.show(pd.DataFrame({'':['']}))

    print('> Population Stability Index (PSI) Deciles' )

   

    for key in result_dict['Population Stability Index (PSI) Deciles'] :

        print('> PSI for : ',key)

        z.show(result_dict['Population Stability Index (PSI) Deciles'][key])

        z.show(pd.DataFrame({'':['']}))