return fname.split("/")[-1].replace(
("." + fname.split(".")[-1] if "." in fname.split("/")[-1] else ""), "")
def parse_prefeaturized_csv_data(features_file_path):
After Change
Return shortened file name without full path and suffix.
return os.path.splitext(ntpath.basename(fname))[0]
def parse_prefeaturized_csv_data(features_file_path):