Giter Site home page Giter Site logo

Comments (6)

LantaoYu avatar LantaoYu commented on July 30, 2024 2

This should work:

import pickle
target_params = pickle.load(open('save/target_params.pkl', 'rb'), encoding='latin1')

from seqgan.

LantaoYu avatar LantaoYu commented on July 30, 2024 1

I have added a new pickle file in python 3: https://github.com/LantaoYu/SeqGAN/blob/master/save/target_params_py3.pkl

Now you can read it with

import pickle
target_params = pickle.load(open('target_params_py3.pkl', 'rb'))

from seqgan.

LantaoYu avatar LantaoYu commented on July 30, 2024

I think you can use pickle in python 3 instead of cPickle:

try:
    import cPickle as pickle
except:
    import pickle

from seqgan.

rahulptel avatar rahulptel commented on July 30, 2024

I tried the same but it's not working.

Improved the code to
target_params = pickle.load(open('save/target_params.pkl','rb')) .

Gives the following error:
ImportError: No module named 'numpy.core.multiarray\r'

Tried to resolve the \r issue using this answer.

Yet the issue remains. Get this message.
TypeError: a bytes-like object is required, not 'str'

Can we create a new pickle for python 3 to resolve them?

from seqgan.

lucasjinreal avatar lucasjinreal commented on July 30, 2024

I think original author save the data using python2.7 cPickle which may not can be properly opened by Python3 pickle, would original author resave this file using python3 for compatiable?

from seqgan.

rahulptel avatar rahulptel commented on July 30, 2024

Still not working.

from seqgan.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.