We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I successfully run the GUI, change the joint rotation, and saved the parameters. However, I cannot load the .pkl file.
Tried using
import pickle file_name = '../subject2_Tpose.pkl' with open(file_name, 'rb') as f: subject2_Tpose = pickle.load(f)
and
import torch subject2_Tpose = torch.load(file_name)
Both return the same error:
UnpicklingError: A load persistent id instruction was encountered, but no persistent_load function was specified.
The torch version is the same as where I ran the main.py. Any solution for this?
The text was updated successfully, but these errors were encountered:
作者用了joblib.dump(output_dict, filename)来保存模型参数。
from sklearn.externals import joblib data= joblib.load('smpl.pkl')
Sorry, something went wrong.
No branches or pull requests
Hi,
I successfully run the GUI, change the joint rotation, and saved the parameters. However, I cannot load the .pkl file.
Tried using
and
Both return the same error:
The torch version is the same as where I ran the main.py. Any solution for this?
The text was updated successfully, but these errors were encountered: