You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the cMDA function in ch6_feature_importance_analysis.py, should the following code be outside of train test for loop? The mean score is for cross vaildation calcualted on cluster level.
imp=(-1*scr1).add(scr0,axis=0)
imp = imp/(-1*scr1)
imp = pd.concat({'mean':imp.mean(), 'std':imp.std()*imp.shape[0]**-.5}, axis=1)
imp.index=['C_'+str(i) for i in imp.index]
The text was updated successfully, but these errors were encountered:
For the cMDA function in ch6_feature_importance_analysis.py, should the following code be outside of train test for loop? The mean score is for cross vaildation calcualted on cluster level.
The text was updated successfully, but these errors were encountered: