File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 39
39
Cell_Features = Feat_DF [Feat_DF .NSC .isin (FilteredDF .NSC )]
40
40
TargetDF = FilteredDF [FilteredDF .NSC .isin (Cell_Features .NSC )]
41
41
42
- Y = np .array (TargetDF .NORMLOG50 )
42
+ Y = np .array (TargetDF .NLOGGI50 )
43
43
# Features
44
44
X = Cell_Features .values
45
45
X = X [:,2 :]
63
63
Y_Validation = TargetDF [TargetDF .NSC .isin (Validation_Ind )]; Y_Validation = np .array (Y_Validation ['NORMLOG50' ])
64
64
Y_Test = TargetDF [TargetDF .NSC .isin (Test_Ind )]; Y_Test = np .array (Y_Test ['NORMLOG50' ])
65
65
66
- Threshold = 0.55
66
+ Threshold = 4.25
67
67
# Convert the drug responses into "Resistive" and "Sensitive" classes given the provided threshold
68
68
Y_Train_Class = Reg_to_Class (Y_Train ,Threshold );
69
69
Y_Validation_Class = Reg_to_Class (Y_Validation ,Threshold );
Original file line number Diff line number Diff line change 33
33
Cell_Features = Feat_DF [Feat_DF .NSC .isin (FilteredDF .NSC )]
34
34
TargetDF = FilteredDF [FilteredDF .NSC .isin (Cell_Features .NSC )]
35
35
36
- Y = np .array (TargetDF .NORMLOG50 )
36
+ Y = np .array (TargetDF .NLOGGI50 )
37
37
# Features
38
38
X = Cell_Features .values
39
39
X = X [:,2 :]
You can’t perform that action at this time.
0 commit comments