Describe the bug
During the Loading of the negative samples of miRTarBase an AttributeError: 'DataFrame' object has no attribute 'append' occurs. I believe this is due to the fact that df.append is deprecated after pandas > 2.0.0 (I might be wrong)
To Reproduce
Steps to reproduce the behavior:
from tdc.multi_pred import MTI
data = MTI(name = 'miRTarBase')
data = data.neg_sample(frac = 1)
split = data.get_split()
Expected behavior
Get a dictionary of dataframes with splits
Screenshots
Environment:
OS: Windows 11
Python version: 3.11.9
Pandas version: 2.2.2
TDC version: 0.3.8
Any other relevant information:
Additional context
Add any other context about the problem here.
Describe the bug During the Loading of the negative samples of miRTarBase an AttributeError: 'DataFrame' object has no attribute 'append' occurs. I believe this is due to the fact that df.append is deprecated after pandas > 2.0.0 (I might be wrong)
To Reproduce Steps to reproduce the behavior:
from tdc.multi_pred import MTI data = MTI(name = 'miRTarBase') data = data.neg_sample(frac = 1) split = data.get_split()
Expected behavior Get a dictionary of dataframes with splits
Screenshots
Environment:
Additional context Add any other context about the problem here.