This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Isn't DensePose Python3 compatible? #142
Comments
I couldn't get this example to work in Python3 as well. I think you have to use Python2 to load data that was pickeled in Python2. |
import pickleimport gzipimport numpy
with open('mnist.pkl', 'rb') as f:
u = pickle._Unpickler(f)
u.encoding = 'latin1'
p = u.load()
print(p)
use this to pickle in python 3.x
…On Sat, Nov 3, 2018 at 6:00 PM GianKiMoon ***@***.***> wrote:
I couldn't get this example to work in Python3 as well. I think you have
to use Python2 to load data that was pickeled in Python2.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#142 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/Al5HtDLAmJXy-5qKFS2nboni4usGZdR5ks5urYxagaJpZM4YMWsa>
.
|
Do you have the SMPL .pkl data,I couldn't sign up for SMPL website now |
This was referenced Oct 10, 2020
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Got the following ERROR messages....
That pickle is always problematic...
The text was updated successfully, but these errors were encountered: