-
I'd like to use the TAP dataset to predict antibody developability (https://tdcommons.ai/single_pred_tasks/develop/). I know from the paper that the labels are 'CDR_Length', 'PSH', 'PPC', 'PNC', 'SFvCSP', but in the dataframe it only lists a column called "Y" that has a single number: What does the number mean in terms of the CDR_Length, PSH, PPC, etc.? I followed the instructions which indicated that the labels would be filled in by the labeler function:
But still don't understand what the label "46" or "45" mean. Could someone point me in the right direction? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I figured it out. You just need to change the index in label_list. I suppose you can only get one label at a time??
If you want the PSH values, then you use: For SFvCSP then use: |
Beta Was this translation helpful? Give feedback.
I figured it out. You just need to change the index in label_list. I suppose you can only get one label at a time??
['CDR_Length', 'PSH', 'PPC', 'PNC', 'SFvCSP']
If you want the PSH values, then you use:
data = Develop(name = 'TAP', label_name = label_list[1])
For SFvCSP then use:
data = Develop(name = 'TAP', label_name = label_list[-1])