Open abirbenaissa opened 1 year ago
Hi. This error usually occurs when it cannot find the data. Please make sure you have copied the dataset to the correct location.
Thank u for ur fast reply, but i did exactly like this " Download the KIT Motion-Language dataset and unzip the files in the $BASE/dataset/kit-mocap folder." and my repository looks like this Complextext2animation dataset kit-mocap src src dataProcessing
am i doing somthing wrong ?
Complextext2animation ----------dataset --------------kit-mocap ----------src --------------src -------------------dataProcessing
There should be one src folder. Complextext2animation ----------dataset --------------kit-mocap ----------src --------------dataProcessing
Thank u for ur fast reply, but i did exactly like this " Download the KIT Motion-Language dataset and unzip the files in the $BASE/dataset/kit-mocap folder." and my repository looks like this Complextext2animation dataset kit-mocap src src dataProcessing
am i doing somthing wrong ?
I encounter the same problem with you. i guess the reason is the "import package" of python is messed up, the program cannot find the existed file. did you fix the problem? i try many different ways, but all of them do not work!
i figure out. at the root dir (which is $bas3/Complextext2motion), run "python src/dataProcessing/meanVariance.py -mask '[0]' -feats_kind rifke -dataset KITMocap -path2data dataset/kit-mocap -f_new 8"
just give it a try
Hello, i just cloned the repo to use it for the pre processing of the KIT dataset but i faced this issue that i didn't know how to solve, if any one knows how please help ? Traceback (most recent call last): File "C:\Users\TRETEC\Downloads\Internship documents\Complextext2animation\src\data.py", line 622, in
eval(args.dataset)(args.path2data, preProcess_flag=True)
File "C:\Users\TRETEC\Downloads\Internship documents\Complextext2animation\src\data.py", line 317, in init
for filename in tup[0][2]:
IndexError: list index out of range
and the code : class KITMocap(RawData): def init(self, path2data, preProcess_flag=False): super(KITMocap, self).init()
load skeleton
if name == 'main': """PreProcessing""" import argparse parser = argparse.ArgumentParser() parser.add_argument('-dataset', default='KITMocap', type=str, help='dataset kind') parser.addargument('-path2data', default='./dataset/kit-mocap', type=str, help='dataset kind') args, = parser.parse_known_args() eval(args.dataset)(args.path2data, preProcess_flag=True)(-----------------LINE622----------------) print('Succesfully Preprocessed {} data'.format(args.dataset))