Code Monkey home page Code Monkey logo

Comments (3)

srivatsan88 avatar srivatsan88 commented on July 18, 2024

I see you are using fit method rather fit_generator. One is you can go back to 2.2 TF version and use fit_generator. I will try to change the code against latest version and update

from end-to-end-time-series.

srivatsan88 avatar srivatsan88 commented on July 18, 2024

Hi, I was able to make the same code work on TF 2.5 as well. instead of fit_generated which is deprecated fit works as well. I am hardening the code and will upload in upcoming week

This is what I used in TF 2.5

early_stopping = tf.keras.callbacks.EarlyStopping(monitor='val_loss',
patience=2,
mode='min')

model.compile(loss=tf.losses.MeanSquaredError(),
optimizer=tf.optimizers.Adam(),
metrics=[tf.metrics.MeanAbsoluteError()])

history = model.fit(train_generator, epochs=20,
validation_data=val_generator,
shuffle=False,
callbacks=[early_stopping])

from end-to-end-time-series.

MihirBha avatar MihirBha commented on July 18, 2024

from end-to-end-time-series.

Related Issues (7)

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.