gjy3035 / C-3-Framework

An open-source PyTorch code for crowd counting

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Errno 20] Not a directory:

sanakousar00 opened this issue · comments

import pandas as pd
frames = []

for i in flower_labels:
data_path = path +'/'+ str(i)
print(data_path)
filenames = [i for i in os.listdir(data_path)
if i.endswith('.csv')]
df = pd.read_csv(data_path+'/'+filenames[0])
frames.append(df)