Spaces:
Sleeping
Sleeping
File size: 1,840 Bytes
4d0da28 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | import os, sys
from argparse import ArgumentParser
from pricePrediction.config import TEST_SIZE
from pricePrediction.selectFromRawData.selectFromRawDataNonVirtualAll_base import RawDataSelector
from pricePrediction import config
class SelectFromRawDataNonVirtualAll(RawDataSelector):
DESIRED_PARAMS_TO_ASK= ['full_dataset_fname', 'computed_datadir', 'test_size', 'nrows']
def __init__(self, full_dataset_fname: str =
os.path.join(config.RAW_DATA_DIRNAME, "mcule_purchasable_full_prices_210616_O9Jw1D_only_READILY.csv.gz"),
computed_datadir: str = config.DATASET_DIRNAME,
test_size:int=TEST_SIZE, nrows:int=None):
'''
:param str full_dataset_fname: The fname for the whole Mcule csv file (csv.gz)
:param str bb_fname: The fname for the building blocks csv file (csv.gz)
:param str computed_datadir: The directory where the selected records will be saved
:param int test_size: The number of entries to include in the test set
:param int nrows: The number of rows to process in the full_dataset_fname. If None, process all rows
'''
super().__init__(full_dataset_fname, None, computed_datadir, test_size=test_size, nrows=nrows)
def operate_data(self, data):
# data = data[ ~ data.iloc[:,-1].isna() ]
data = data[self.COLNAMES[:3]]
data = data.rename(columns={self.COLNAMES[2]: "price"})
del data["Mcule ID"]
return data
if __name__ == "__main__":
parser = ArgumentParser(description="extract from raw data train/test/val partitions")
SelectFromRawDataNonVirtualAll.addParamsToArgParse(parser)
args = parser.parse_args()
SelectFromRawDataNonVirtualAll(**vars(args)).compute()
'''
python -m pricePrediction.selectFromRawData.selectFromRawDataNonVirtualAll
''' |