def load()

in src/similarity/index.py [0:0]


    def load(self, filename) :
            
        try :
            with gzip.open(filename,'rb') as idxfile:
                return pickle.load(idxfile)
              
        finally :
            idxfile.close()