To save the modeling data, execute the commands as shown in the following paragraph:
%python
aif.save( key = 'osit_data_final', value = Stage_2_OSIT_pdf ) aif.save( key = 'osit_label_final', value = y_osit )
#aif.save( key = 'osot_data', value = Stage_2_OSOT_pdf ) #aif.save( key = 'osot_label', value = y_osot ) |
To load the modeling data, execute the commands as shown in the following paragraph:
%python
Stage_2_OSIT_pdf = aif.load( key = 'osit_data' ) y_osit = pd.Series( aif.load( key = 'osit_label' ) )
Stage_2_OSOT_pdf = aif.load( key = 'osot_data' ) y_osot = pd.Series( aif.load( key = 'osot_label' ) ) |