Code Monkey home page Code Monkey logo

Comments (5)

karimsr4 avatar karimsr4 commented on April 28, 2024 1

Hi @PowerToThePeople111 ,

I don't think the problem in saving is actually coming from model subclassing. Most probably, it comes from passing df as argument to the call method.

By slightly changing your code to pass a list instead of a Pandas dataframe, the model can be saved.

class DataPrep2(tf.keras.Model):
    def __init__(self):
        super().__init__()
        self.layer1 = tf.keras.layers.StringLookup(output_mode='int', vocabulary=["a", "b"])
        self.layer2 = tf.keras.layers.Discretization(bin_boundaries=[0,1,2,3,4], output_mode='int')


    def call(self, x):
        return {
            "conv1": self.layer1(x[0]),
            "conv2": self.layer2(x[1])
        }
dp2 = DataPrep2()
dp2([df["var1"], df["var2"]])
dp2.save("delteme")

from tensorflow.

sushreebarsa avatar sushreebarsa commented on April 28, 2024

@PowerToThePeople111 Please refer to the TensorFlow documentation for the latest recommendations on saving subclassed models: https://www.tensorflow.org/tutorials/keras/save_and_load and kindly provide the access to your notebook.
Thank you!

from tensorflow.

PowerToThePeople111 avatar PowerToThePeople111 commented on April 28, 2024

Hi sushreebarsa,

thank you for your reply. You should now be able to access the notebook. Also I put the whole code neccessary below the link to it.

I read the documentation again and was lead by the following parts:

You can switch to the SavedModel format by:

Passing save_format='tf' to save()
Passing a filename without an extension

...

*Custom objects (for example, subclassed models or layers) require special attention when saving and loading. Refer to the Saving custom objects section below.

...

So for me it seemed that the above is basically everything i need to do since later on in the "Custom objects"-section you can read at the very top:

If you are using the SavedModel format, you can skip this section.

So actually I should be able to store the model by using save() with save_format 'tf' and providing a filename without ending, which is what I did:
Neither dp2.save("delteme", save_format="tf") nor dp2.save("delteme") did the trick for me and result in the error message i posted in my initial statement.

Did I miss something here?

from tensorflow.

PowerToThePeople111 avatar PowerToThePeople111 commented on April 28, 2024

Thank you @karimsr4,

that solution works. :)

from tensorflow.

google-ml-butler avatar google-ml-butler commented on April 28, 2024

Are you satisfied with the resolution of your issue?
Yes
No

from tensorflow.

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.