saving work before adding uq stuff

This commit is contained in:
Tanushree Tunstall 2022-05-16 08:05:41 +01:00
parent 5fe2dc47cd
commit 66ebb1a30a
6 changed files with 4 additions and 3 deletions

View file

@ -8,6 +8,7 @@ Created on Tue Mar 15 11:09:50 2022
#%% Data
X = all_df_wtgt[numerical_FN+categorical_FN]
y = all_df_wtgt['mutation_class']
#y = all_df_wtgt['dst_mode']
#%% variables
#%% MultClassPipeSKFCV: function call()
@ -21,3 +22,4 @@ mm_skf_scores_df_all = pd.DataFrame(mm_skf_scoresD)
mm_skf_scores_df_all
mm_skf_scores_df_test = mm_skf_scores_df_all.filter(like='test_', axis=0)
mm_skf_scores_df_train = mm_skf_scores_df_all.filter(like='train_', axis=0) # helps to see if you trust the results
]