Skip to content

Commit 99d3696

Browse files
committed
Removed changes made for testing with subset
1 parent 5c48e4d commit 99d3696

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

chebai/preprocessing/datasets/chebi.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1372,10 +1372,10 @@ def augment_data(self, path: str, batch_size) -> None:
13721372
path, self.raw_file_names_dict["data"]))
13731373

13741374
total_rows = data.shape[0]
1375-
#For testing
1376-
subset1 = data.iloc[:10000] # First 10,000 of the datapoints for testing only
1377-
data=subset1
1378-
total_rows=subset1.shape[0]
1375+
# #For testing
1376+
# subset1 = data.iloc[:10000] # First 10,000 of the datapoints for testing only
1377+
# data=subset1
1378+
# total_rows=subset1.shape[0]
13791379
# Calculate the total number of batches
13801380
total_batches = (total_rows + batch_size - 1) // batch_size
13811381

0 commit comments

Comments
 (0)