def __init__()

in GraphAutoEncoder/graphVAE_train.py [0:0]


    def __init__(self, param, framelist, faceidx):        

        self.trackpath = param.mesh_train
        self.framelist = []
        countpose = 0
        for i, x in enumerate(framelist):        
            f = (x,countpose,)  
            frid = (int)(x)
            if frid>= renderfrrange_st and frid<=renderfrrange_end:
                self.framelist.append(f)
                countpose = countpose + 1
        print(len(self.framelist))
        
        self.faceidx = faceidx.long()