I have a list of "pickle" files (see Image1). I want to use the name of the file as an index in Pandas. But so far I have all the path (which is long) + the file's name.
I have found this link: How to get the filename without the extension from a path in Python?
The answer is using ".stem" somewhere in my code. But I just do not know where. and my files do not have an extension.
import pandas as pd
import glob
from pathlib import Path
# This is the path to the folder which contains all the "pickle" files
dir_path = Path(r'C:\Users\OneDrive\Projects\II\Coral\Classification\inference_time')
files = dir_path.glob('**/file_inference_time*')
df_list = list() #This is an empty list
for file in files:
df = pd.DataFrame(pd.read_pickle(file)) #storing the "pickle" files in a dataframe
df_list['file'] = file #creating a column 'file' which has the path + file
df_list.append(df) #sending all dataframes into a list
df_list_all = pd.concat(df_list).reset_index(drop=True) #merging all dataframes into a single one
df_list_all
THIS IS WHAT I GET:
Inference_Time file
0 2.86 C:\Users\OneDrive\Projects\Classification\inference_time\inference_time_InceptionV1
1 30.96 C:\Users\OneDrive\Projects\Classification\inference_time\inference_time_mobileNetV2
2 11.04 C:\Users\OneDrive\Projects\Classification\inference_time\inference_time_efficientNet
I WANT THIS:
Inference_Time file
InceptionV1 2.86 C:\Users\OneDrive\Projects\Classification\inference_time\inference_time_InceptionV1
mobilenetV2 30.96 C:\Users\OneDrive\Projects\Classification\inference_time\inference_time_mobileNetV2
efficientNet 11.04 C:\Users\OneDrive\Projects\Classification\inference_time\inference_time_efficientNet
IMAGE 1