Python Forum
LSTM-TensorFlow-Keras models and MAE
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
LSTM-TensorFlow-Keras models and MAE
#1
Hello! I am new to the forum and I need a hand! :)

I have an LSTM model uisng tensorflow and Keras. I have a set of 2 lstm-dropout layers and a dence output layer. I use Loss function=MeanAbsoluteError and optimizer=Adam. No activation function.I feed LSTM with timeseries data from 1970-2021 and the validation set is 2022 and I calculate MAE, MAPE, RMSE of (y_actual,y_predicted).

I want to create many models and chooce the best besed on min MAE. My lists of seed and lstm_units are:
seeds = [12345, 23456, 34567, 45678, 56789] and
lstm_units_list = [10, 20, 30, 40, 50]. I use 2 for-loops (seed is the outer loop).

My issue is this:
When I use a combination of one same seed and each one of lstm_units like: seeds=[12345] and lstm_units=[10], seeds=[12345] and lstm_units=[20], seeds=[12345] and lstm_units=[30] etc. I get for each pair a normal MAE (photo 2) with small variations every time I run it
When I use the 2 for-loops with full lists of seeds (5 seeds) and lstm_units (5 values) I get very abnormal results !!!!(photo 1) even for the previus combinations!!!like something has left in memory(?) and somehow add variation in y_predicted values (where MAE is calculated). I google it and I add inside the second loop (lstm_units loop) the line
tf.keras.backend.clear_session()  # Clear the session before each new model
. But nothing has changed!!

I also added the following to reduce variations in results between runs due to TensorFlow and keras non-deterministic operations.
# Set deterministic operations and disable optimizations
os.environ["TF_ENABLE_ONEDNN_OPTS"] = "0"  # Disable oneDNN optimizations
os.environ["TF_DETERMINISTIC_OPS"] = "1"   # Force deterministic ops
os.environ['TF_CUDNN_DETERMINISTIC'] = '1'  # Ensure cuDNN operations are deterministic
os.environ["CUDA_VISIBLE_DEVICES"] = "-1"  # Disable GPU usage (optional, if needed)
os.environ["OMP_NUM_THREADS"] = "1"  # Control the number of CPU threads

tf.config.experimental.enable_op_determinism() #forces TensorFlow to use deterministic implementations
# Set the float32 precision
tf.keras.backend.set_floatx('float32')  # Ensure that all tensors use float32 precision
Nothing helped me!. I wonder what to do!! I am new to python. I use Visual Studio Code and Jupyter to write. I also have an environment set up for my files. Does pyhton need to clear up memory? does the tensorflow and keras need another handling to be used correctly?
Could anyone help me to deal with this issue?

Attached Files

Thumbnail(s)
       
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Using SHAP Library for my LSTM model - "Attribute Error" vatsalmtailor 0 3,207 Jul-13-2022, 04:34 PM
Last Post: vatsalmtailor
  1st layer tf.keras output shape set at multiple - need help! Afrodizzyjack 0 2,859 Jun-07-2022, 04:53 PM
Last Post: Afrodizzyjack
  issue displaying summary of whole keras CNN model on TensorFlow with python Afrodizzyjack 0 2,250 Oct-27-2021, 04:07 PM
Last Post: Afrodizzyjack
  DSGE Models Scott 1 2,807 Aug-31-2021, 08:27 PM
Last Post: Larz60+
  Understanding Keras and TensorFlow and how to use them bytecrunch 1 2,644 Mar-11-2021, 02:40 PM
Last Post: jefsummers
  Big Data predictive models (R, SAS or Python) nikki 2 2,910 Feb-14-2021, 12:41 AM
Last Post: Larz60+
  LSTM Model accuracy caps and I can't improve it celinafregoso99 1 2,603 Dec-19-2020, 01:29 PM
Last Post: jefsummers
  Keras.Predict into Dataframe Finpyth 13 14,297 Aug-31-2020, 07:22 AM
Last Post: hussainmujtaba
  Making a Basic Keras Model - Input Shape and Parameters MattKahn13 0 2,689 Aug-16-2020, 04:36 PM
Last Post: MattKahn13
  Error when import Keras Azadfalah 1 3,406 Apr-29-2020, 04:45 AM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020