loadModel == loadModelCopy ???

I’ve built a model cache in python but I’ve read a post saying that loadModel and loadModelCopy are equivalent.

Still the doc says otherwise and underline the difference.

So who is right ? Can I have dump my model cache ?

For the info the model cache is basically a dict with the getitem method overloaded: if the modelname is in the dict return it, else load the model put it in the dict and return it.

The manual had outdated information. I have removed this incorrect information. You have no need to maintain your own model cache; Panda does this for you automatically.

David

thanks, less code means less bugs !